Spaces:
Running
Running
Upload 60 files
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +2 -0
- app.py +102 -0
- data/COVID-19_Radiography_Dataset/COVID.metadata.xlsx +0 -0
- data/COVID-19_Radiography_Dataset/COVID/images/COVID-1.png +0 -0
- data/COVID-19_Radiography_Dataset/COVID/images/COVID-2.png +0 -0
- data/COVID-19_Radiography_Dataset/COVID/images/COVID-3.png +0 -0
- data/COVID-19_Radiography_Dataset/COVID/images/COVID-4.png +0 -0
- data/COVID-19_Radiography_Dataset/COVID/images/COVID-5.png +0 -0
- data/COVID-19_Radiography_Dataset/COVID/images/COVID-6.png +0 -0
- data/COVID-19_Radiography_Dataset/COVID/masks/COVID-1.png +0 -0
- data/COVID-19_Radiography_Dataset/COVID/masks/COVID-2.png +0 -0
- data/COVID-19_Radiography_Dataset/COVID/masks/COVID-3.png +0 -0
- data/COVID-19_Radiography_Dataset/COVID/masks/COVID-4.png +0 -0
- data/COVID-19_Radiography_Dataset/COVID/masks/COVID-5.png +0 -0
- data/COVID-19_Radiography_Dataset/COVID/masks/COVID-6.png +0 -0
- data/COVID-19_Radiography_Dataset/Lung_Opacity.metadata.xlsx +0 -0
- data/COVID-19_Radiography_Dataset/Normal.metadata.xlsx +0 -0
- data/COVID-19_Radiography_Dataset/README.md.txt +55 -0
- data/COVID-19_Radiography_Dataset/Viral Pneumonia.metadata.xlsx +0 -0
- data/Mednist/AbdomenCT/000000.jpeg +0 -0
- data/Mednist/AbdomenCT/000001.jpeg +0 -0
- data/Mednist/AbdomenCT/000002.jpeg +0 -0
- data/Mednist/AbdomenCT/000003.jpeg +0 -0
- data/Mednist/AbdomenCT/000004.jpeg +0 -0
- data/mimic-iv-clinical-database-demo/LICENSE.txt +540 -0
- data/mimic-iv-clinical-database-demo/README.txt +21 -0
- data/mimic-iv-clinical-database-demo/SHA256SUMS.txt +34 -0
- data/mimic-iv-clinical-database-demo/demo_subject_id.csv +101 -0
- data/mimic-iv-clinical-database-demo/hosp/admissions.csv +276 -0
- data/mimic-iv-clinical-database-demo/hosp/d_hcpcs.csv +0 -0
- data/mimic-iv-clinical-database-demo/hosp/d_icd_diagnoses.csv +0 -0
- data/mimic-iv-clinical-database-demo/hosp/d_icd_procedures.csv +0 -0
- data/mimic-iv-clinical-database-demo/hosp/d_labitems.csv +1623 -0
- data/mimic-iv-clinical-database-demo/hosp/diagnoses_icd.csv +0 -0
- data/mimic-iv-clinical-database-demo/hosp/drgcodes.csv +455 -0
- data/mimic-iv-clinical-database-demo/hosp/emar.csv +0 -0
- data/mimic-iv-clinical-database-demo/hosp/emar_detail.csv +0 -0
- data/mimic-iv-clinical-database-demo/hosp/hcpcsevents.csv +62 -0
- data/mimic-iv-clinical-database-demo/hosp/labevents.csv +3 -0
- data/mimic-iv-clinical-database-demo/hosp/microbiologyevents.csv +0 -0
- data/mimic-iv-clinical-database-demo/hosp/omr.csv +0 -0
- data/mimic-iv-clinical-database-demo/hosp/patients.csv +101 -0
- data/mimic-iv-clinical-database-demo/hosp/pharmacy.csv +0 -0
- data/mimic-iv-clinical-database-demo/hosp/poe.csv +0 -0
- data/mimic-iv-clinical-database-demo/hosp/poe_detail.csv +0 -0
- data/mimic-iv-clinical-database-demo/hosp/prescriptions.csv +0 -0
- data/mimic-iv-clinical-database-demo/hosp/procedures_icd.csv +723 -0
- data/mimic-iv-clinical-database-demo/hosp/provider.csv +0 -0
- data/mimic-iv-clinical-database-demo/hosp/services.csv +320 -0
- data/mimic-iv-clinical-database-demo/hosp/transfers.csv +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
data/mimic-iv-clinical-database-demo/hosp/labevents.csv filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
data/mimic-iv-clinical-database-demo/icu/chartevents.csv filter=lfs diff=lfs merge=lfs -text
|
app.py
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
import matplotlib.pyplot as plt
|
| 3 |
+
import pandas as pd
|
| 4 |
+
from utils import (
|
| 5 |
+
load_mimic_data, train_predictive_model, load_mednist_image,
|
| 6 |
+
create_mock_segmentation, apply_threshold,
|
| 7 |
+
extract_entities, visualize_model_performance, get_clinical_text_examples
|
| 8 |
+
)
|
| 9 |
+
|
| 10 |
+
# show mimic data function
|
| 11 |
+
def display_mimic_data():
|
| 12 |
+
diagnoses, procedures, prescriptions = load_mimic_data()
|
| 13 |
+
return diagnoses.head(5), procedures.head(5), prescriptions.head(5)
|
| 14 |
+
|
| 15 |
+
# predictive model function
|
| 16 |
+
def train_model():
|
| 17 |
+
model, mse, r2, X_test, y_test = train_predictive_model()
|
| 18 |
+
model_performance_fig = visualize_model_performance(model, X_test, y_test)
|
| 19 |
+
return f"Model Performance (trained on a medium-sized sample):\nMean Squared Error: {mse:.2f}\nR² Score: {r2:.2f}", model_performance_fig
|
| 20 |
+
|
| 21 |
+
# show image segmentation function
|
| 22 |
+
def process_image(image_index, threshold):
|
| 23 |
+
image_path = f'data/Mednist/AbdomenCT/{image_index:06d}.jpeg'
|
| 24 |
+
image = load_mednist_image(image_path)
|
| 25 |
+
segmented_output = create_mock_segmentation(image)
|
| 26 |
+
thresholded_output = apply_threshold(segmented_output, threshold)
|
| 27 |
+
|
| 28 |
+
fig, axes = plt.subplots(1, 3, figsize=(18, 6))
|
| 29 |
+
fig.subplots_adjust(hspace=0.3, wspace=0.3)
|
| 30 |
+
|
| 31 |
+
axes[0].imshow(image, cmap='gray')
|
| 32 |
+
axes[0].set_title("Original MedNIST Image", fontsize=16, pad=20)
|
| 33 |
+
axes[0].axis('off')
|
| 34 |
+
|
| 35 |
+
axes[1].imshow(segmented_output, cmap='jet')
|
| 36 |
+
axes[1].set_title("Segmentation Heatmap", fontsize=16, pad=20)
|
| 37 |
+
axes[1].axis('off')
|
| 38 |
+
|
| 39 |
+
axes[2].imshow(thresholded_output, cmap='gray')
|
| 40 |
+
axes[2].set_title(f"Thresholded Segmentation\n(Threshold: {threshold:.2f})", fontsize=16, pad=20)
|
| 41 |
+
axes[2].axis('off')
|
| 42 |
+
|
| 43 |
+
plt.tight_layout()
|
| 44 |
+
return fig
|
| 45 |
+
|
| 46 |
+
# clinical text analysis functions
|
| 47 |
+
def analyze_clinical_text(text):
|
| 48 |
+
entities = extract_entities(text)
|
| 49 |
+
df = pd.DataFrame(entities, columns=['Entity', 'Clinical Category', 'Original Category'])
|
| 50 |
+
return df.to_html(index=False)
|
| 51 |
+
|
| 52 |
+
def update_text_input(example):
|
| 53 |
+
return example
|
| 54 |
+
|
| 55 |
+
# gradio
|
| 56 |
+
with gr.Blocks() as demo:
|
| 57 |
+
gr.Markdown("# Multi-Modal Clinical Data Analysis")
|
| 58 |
+
|
| 59 |
+
with gr.Tab("1. MIMIC-IV Data Analysis"):
|
| 60 |
+
gr.Markdown("displaying a sample of mimic-iv data (1000 rows) for demonstration purposes.")
|
| 61 |
+
diagnoses_output = gr.DataFrame(label="Diagnoses")
|
| 62 |
+
procedures_output = gr.DataFrame(label="Procedures")
|
| 63 |
+
prescriptions_output = gr.DataFrame(label="Prescriptions")
|
| 64 |
+
|
| 65 |
+
mimic_button = gr.Button("Load MIMIC Data")
|
| 66 |
+
mimic_button.click(display_mimic_data, inputs=None, outputs=[diagnoses_output, procedures_output, prescriptions_output])
|
| 67 |
+
|
| 68 |
+
with gr.Tab("2. Predictive Model for Length of Stay"):
|
| 69 |
+
gr.Markdown("training a model on a medium-sized sample (2000 rows) for a balance of performance and speed.")
|
| 70 |
+
model_output = gr.Textbox(label="Model Performance")
|
| 71 |
+
model_plot = gr.Plot()
|
| 72 |
+
model_button = gr.Button("Train Model")
|
| 73 |
+
model_button.click(train_model, inputs=None, outputs=[model_output, model_plot])
|
| 74 |
+
|
| 75 |
+
with gr.Tab("3. Image Segmentation"):
|
| 76 |
+
gr.Markdown("explore mock segmentation on mednist abdomenct images. this demo uses image processing techniques to create a visually appealing segmentation effect.")
|
| 77 |
+
image_index = gr.Slider(minimum=0, maximum=4, step=1, value=0, label="Image Index")
|
| 78 |
+
threshold_slider = gr.Slider(minimum=0, maximum=1, step=0.01, value=0.5, label="Segmentation Threshold")
|
| 79 |
+
image_output = gr.Plot()
|
| 80 |
+
image_button = gr.Button("Process Image")
|
| 81 |
+
image_button.click(process_image, inputs=[image_index, threshold_slider], outputs=image_output)
|
| 82 |
+
|
| 83 |
+
with gr.Tab("4. Clinical Text Analysis"):
|
| 84 |
+
gr.Markdown("extract named entities from clinical text using an improved clinical ner model.")
|
| 85 |
+
|
| 86 |
+
with gr.Row():
|
| 87 |
+
text_input = gr.Textbox(
|
| 88 |
+
label="Enter clinical text",
|
| 89 |
+
value="Patient shows symptoms of COVID-19, including mild respiratory distress and fever. The X-ray indicates possible lung opacities."
|
| 90 |
+
)
|
| 91 |
+
example_dropdown = gr.Dropdown(
|
| 92 |
+
choices=get_clinical_text_examples(),
|
| 93 |
+
label="Select an example"
|
| 94 |
+
)
|
| 95 |
+
|
| 96 |
+
text_output = gr.HTML()
|
| 97 |
+
text_button = gr.Button("Extract Entities")
|
| 98 |
+
|
| 99 |
+
text_button.click(analyze_clinical_text, inputs=text_input, outputs=text_output)
|
| 100 |
+
example_dropdown.change(update_text_input, inputs=example_dropdown, outputs=text_input)
|
| 101 |
+
|
| 102 |
+
demo.launch(share=True)
|
data/COVID-19_Radiography_Dataset/COVID.metadata.xlsx
ADDED
|
Binary file (87 kB). View file
|
|
|
data/COVID-19_Radiography_Dataset/COVID/images/COVID-1.png
ADDED
|
data/COVID-19_Radiography_Dataset/COVID/images/COVID-2.png
ADDED
|
data/COVID-19_Radiography_Dataset/COVID/images/COVID-3.png
ADDED
|
data/COVID-19_Radiography_Dataset/COVID/images/COVID-4.png
ADDED
|
data/COVID-19_Radiography_Dataset/COVID/images/COVID-5.png
ADDED
|
data/COVID-19_Radiography_Dataset/COVID/images/COVID-6.png
ADDED
|
data/COVID-19_Radiography_Dataset/COVID/masks/COVID-1.png
ADDED
|
data/COVID-19_Radiography_Dataset/COVID/masks/COVID-2.png
ADDED
|
data/COVID-19_Radiography_Dataset/COVID/masks/COVID-3.png
ADDED
|
data/COVID-19_Radiography_Dataset/COVID/masks/COVID-4.png
ADDED
|
data/COVID-19_Radiography_Dataset/COVID/masks/COVID-5.png
ADDED
|
data/COVID-19_Radiography_Dataset/COVID/masks/COVID-6.png
ADDED
|
data/COVID-19_Radiography_Dataset/Lung_Opacity.metadata.xlsx
ADDED
|
Binary file (141 kB). View file
|
|
|
data/COVID-19_Radiography_Dataset/Normal.metadata.xlsx
ADDED
|
Binary file (234 kB). View file
|
|
|
data/COVID-19_Radiography_Dataset/README.md.txt
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*****COVID-19 CHEST X-RAY DATABASE
|
| 2 |
+
|
| 3 |
+
A team of researchers from Qatar University, Doha, Qatar, and the University of Dhaka, Bangladesh along with their collaborators from Pakistan and Malaysia in collaboration with medical doctors have created a database of chest X-ray images for COVID-19 positive cases along with Normal and Viral Pneumonia images. This COVID-19, normal and other lung infection dataset is released in stages. In the first release we have released 219 COVID-19, 1341 normal and 1345 viral pneumonia chest X-ray (CXR) images. In the first update, we have increased the COVID-19 class to 1200 CXR images. In the 2nd update, we have increased the database to 3616 COVID-19 positive cases along with 10,192 Normal, 6012 Lung Opacity (Non-COVID lung infection) and 1345 Viral Pneumonia images and corresponding lung masks. We will continue to update this database as soon as we have new x-ray images for COVID-19 pneumonia patients.
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
**COVID-19 data:
|
| 7 |
+
-----------------------
|
| 8 |
+
COVID data are collected from different publicly accessible dataset, online sources and published papers.
|
| 9 |
+
-2473 CXR images are collected from padchest dataset[1].
|
| 10 |
+
-183 CXR images from a Germany medical school[2].
|
| 11 |
+
-559 CXR image from SIRM, Github, Kaggle & Tweeter[3,4,5,6]
|
| 12 |
+
-400 CXR images from another Github source[7].
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
***Normal images:
|
| 16 |
+
----------------------------------------
|
| 17 |
+
10192 Normal data are collected from from three different dataset.
|
| 18 |
+
-8851 RSNA [8]
|
| 19 |
+
-1341 Kaggle [9]
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
***Lung opacity images:
|
| 23 |
+
----------------------------------------
|
| 24 |
+
6012 Lung opacity CXR images are collected from Radiological Society of North America (RSNA) CXR dataset [8]
|
| 25 |
+
|
| 26 |
+
***Viral Pneumonia images:
|
| 27 |
+
----------------------------------------
|
| 28 |
+
1345 Viral Pneumonia data are collected from the Chest X-Ray Images (pneumonia) database [9]
|
| 29 |
+
|
| 30 |
+
Please cite the follwoing two articles if you are using this dataset:
|
| 31 |
+
-M.E.H. Chowdhury, T. Rahman, A. Khandakar, R. Mazhar, M.A. Kadir, Z.B. Mahbub, K.R. Islam, M.S. Khan, A. Iqbal, N. Al-Emadi, M.B.I. Reaz, M. T. Islam, “Can AI help in screening Viral and COVID-19 pneumonia?” IEEE Access, Vol. 8, 2020, pp. 132665 - 132676.
|
| 32 |
+
-Rahman, T., Khandakar, A., Qiblawey, Y., Tahir, A., Kiranyaz, S., Kashem, S.B.A., Islam, M.T., Maadeed, S.A., Zughaier, S.M., Khan, M.S. and Chowdhury, M.E., 2020. Exploring the Effect of Image Enhancement Techniques on COVID-19 Detection using Chest X-ray Images. arXiv preprint arXiv:2012.02238.
|
| 33 |
+
|
| 34 |
+
**Reference:
|
| 35 |
+
[1]https://bimcv.cipf.es/bimcv-projects/bimcv-covid19/#1590858128006-9e640421-6711
|
| 36 |
+
[2]https://github.com/ml-workgroup/covid-19-image-repository/tree/master/png
|
| 37 |
+
[3]https://sirm.org/category/senza-categoria/covid-19/
|
| 38 |
+
[4]https://eurorad.org
|
| 39 |
+
[5]https://github.com/ieee8023/covid-chestxray-dataset
|
| 40 |
+
[6]https://figshare.com/articles/COVID-19_Chest_X-Ray_Image_Repository/12580328
|
| 41 |
+
[7]https://github.com/armiro/COVID-CXNet
|
| 42 |
+
[8]https://www.kaggle.com/c/rsna-pneumonia-detection-challenge/data
|
| 43 |
+
[9] https://www.kaggle.com/paultimothymooney/chest-xray-pneumonia
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
***Formats
|
| 47 |
+
- All the images are in Portable Network Graphics (PNG) file format and resolution are 299*299 pixels.
|
| 48 |
+
|
| 49 |
+
****Objective
|
| 50 |
+
- Researchers can use this database to produce useful and impactful scholarly work on COVID-19, which can help in tackling this pandemic.
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
|
| 54 |
+
|
| 55 |
+
|
data/COVID-19_Radiography_Dataset/Viral Pneumonia.metadata.xlsx
ADDED
|
Binary file (38.2 kB). View file
|
|
|
data/Mednist/AbdomenCT/000000.jpeg
ADDED
|
data/Mednist/AbdomenCT/000001.jpeg
ADDED
|
data/Mednist/AbdomenCT/000002.jpeg
ADDED
|
data/Mednist/AbdomenCT/000003.jpeg
ADDED
|
data/Mednist/AbdomenCT/000004.jpeg
ADDED
|
data/mimic-iv-clinical-database-demo/LICENSE.txt
ADDED
|
@@ -0,0 +1,540 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## ODC Open Database License (ODbL)
|
| 2 |
+
|
| 3 |
+
### Preamble
|
| 4 |
+
|
| 5 |
+
The Open Database License (ODbL) is a license agreement intended to
|
| 6 |
+
allow users to freely share, modify, and use this Database while
|
| 7 |
+
maintaining this same freedom for others. Many databases are covered by
|
| 8 |
+
copyright, and therefore this document licenses these rights. Some
|
| 9 |
+
jurisdictions, mainly in the European Union, have specific rights that
|
| 10 |
+
cover databases, and so the ODbL addresses these rights, too. Finally,
|
| 11 |
+
the ODbL is also an agreement in contract for users of this Database to
|
| 12 |
+
act in certain ways in return for accessing this Database.
|
| 13 |
+
|
| 14 |
+
Databases can contain a wide variety of types of content (images,
|
| 15 |
+
audiovisual material, and sounds all in the same database, for example),
|
| 16 |
+
and so the ODbL only governs the rights over the Database, and not the
|
| 17 |
+
contents of the Database individually. Licensors should use the ODbL
|
| 18 |
+
together with another license for the contents, if the contents have a
|
| 19 |
+
single set of rights that uniformly covers all of the contents. If the
|
| 20 |
+
contents have multiple sets of different rights, Licensors should
|
| 21 |
+
describe what rights govern what contents together in the individual
|
| 22 |
+
record or in some other way that clarifies what rights apply.
|
| 23 |
+
|
| 24 |
+
Sometimes the contents of a database, or the database itself, can be
|
| 25 |
+
covered by other rights not addressed here (such as private contracts,
|
| 26 |
+
trade mark over the name, or privacy rights / data protection rights
|
| 27 |
+
over information in the contents), and so you are advised that you may
|
| 28 |
+
have to consult other documents or clear other rights before doing
|
| 29 |
+
activities not covered by this License.
|
| 30 |
+
|
| 31 |
+
------
|
| 32 |
+
|
| 33 |
+
The Licensor (as defined below)
|
| 34 |
+
|
| 35 |
+
and
|
| 36 |
+
|
| 37 |
+
You (as defined below)
|
| 38 |
+
|
| 39 |
+
agree as follows:
|
| 40 |
+
|
| 41 |
+
### 1.0 Definitions of Capitalised Words
|
| 42 |
+
|
| 43 |
+
"Collective Database" - Means this Database in unmodified form as part
|
| 44 |
+
of a collection of independent databases in themselves that together are
|
| 45 |
+
assembled into a collective whole. A work that constitutes a Collective
|
| 46 |
+
Database will not be considered a Derivative Database.
|
| 47 |
+
|
| 48 |
+
"Convey" - As a verb, means Using the Database, a Derivative Database,
|
| 49 |
+
or the Database as part of a Collective Database in any way that enables
|
| 50 |
+
a Person to make or receive copies of the Database or a Derivative
|
| 51 |
+
Database. Conveying does not include interaction with a user through a
|
| 52 |
+
computer network, or creating and Using a Produced Work, where no
|
| 53 |
+
transfer of a copy of the Database or a Derivative Database occurs.
|
| 54 |
+
"Contents" - The contents of this Database, which includes the
|
| 55 |
+
information, independent works, or other material collected into the
|
| 56 |
+
Database. For example, the contents of the Database could be factual
|
| 57 |
+
data or works such as images, audiovisual material, text, or sounds.
|
| 58 |
+
|
| 59 |
+
"Database" - A collection of material (the Contents) arranged in a
|
| 60 |
+
systematic or methodical way and individually accessible by electronic
|
| 61 |
+
or other means offered under the terms of this License.
|
| 62 |
+
|
| 63 |
+
"Database Directive" - Means Directive 96/9/EC of the European
|
| 64 |
+
Parliament and of the Council of 11 March 1996 on the legal protection
|
| 65 |
+
of databases, as amended or succeeded.
|
| 66 |
+
|
| 67 |
+
"Database Right" - Means rights resulting from the Chapter III ("sui
|
| 68 |
+
generis") rights in the Database Directive (as amended and as transposed
|
| 69 |
+
by member states), which includes the Extraction and Re-utilisation of
|
| 70 |
+
the whole or a Substantial part of the Contents, as well as any similar
|
| 71 |
+
rights available in the relevant jurisdiction under Section 10.4.
|
| 72 |
+
|
| 73 |
+
"Derivative Database" - Means a database based upon the Database, and
|
| 74 |
+
includes any translation, adaptation, arrangement, modification, or any
|
| 75 |
+
other alteration of the Database or of a Substantial part of the
|
| 76 |
+
Contents. This includes, but is not limited to, Extracting or
|
| 77 |
+
Re-utilising the whole or a Substantial part of the Contents in a new
|
| 78 |
+
Database.
|
| 79 |
+
|
| 80 |
+
"Extraction" - Means the permanent or temporary transfer of all or a
|
| 81 |
+
Substantial part of the Contents to another medium by any means or in
|
| 82 |
+
any form.
|
| 83 |
+
|
| 84 |
+
"License" - Means this license agreement and is both a license of rights
|
| 85 |
+
such as copyright and Database Rights and an agreement in contract.
|
| 86 |
+
|
| 87 |
+
"Licensor" -Means the Person that offers the Database under the terms
|
| 88 |
+
of this License.
|
| 89 |
+
|
| 90 |
+
"Person" -Means a natural or legal person or a body of persons
|
| 91 |
+
corporate or incorporate.
|
| 92 |
+
|
| 93 |
+
"Produced Work" - a work (such as an image, audiovisual material, text,
|
| 94 |
+
or sounds) resulting from using the whole or a Substantial part of the
|
| 95 |
+
Contents (via a search or other query) from this Database, a Derivative
|
| 96 |
+
Database, or this Database as part of a Collective Database.
|
| 97 |
+
|
| 98 |
+
"Publicly" - means to Persons other than You or under Your control by
|
| 99 |
+
either more than 50% ownership or by the power to direct their
|
| 100 |
+
activities (such as contracting with an independent consultant).
|
| 101 |
+
|
| 102 |
+
"Re-utilisation" - means any form of making available to the public all
|
| 103 |
+
or a Substantial part of the Contents by the distribution of copies, by
|
| 104 |
+
renting, by online or other forms of transmission.
|
| 105 |
+
|
| 106 |
+
"Substantial" - Means substantial in terms of quantity or quality or a
|
| 107 |
+
combination of both. The repeated and systematic Extraction or
|
| 108 |
+
Re-utilisation of insubstantial parts of the Contents may amount to the
|
| 109 |
+
Extraction or Re-utilisation of a Substantial part of the Contents.
|
| 110 |
+
|
| 111 |
+
"Use" - As a verb, means doing any act that is restricted by copyright
|
| 112 |
+
or Database Rights whether in the original medium or any other; and
|
| 113 |
+
includes without limitation distributing, copying, publicly performing,
|
| 114 |
+
publicly displaying, and preparing derivative works of the Database, as
|
| 115 |
+
well as modifying the Database as may be technically necessary to use it
|
| 116 |
+
in a different mode or format.
|
| 117 |
+
|
| 118 |
+
"You" - Means a Person exercising rights under this License who has not
|
| 119 |
+
previously violated the terms of this License with respect to the
|
| 120 |
+
Database, or who has received express permission from the Licensor to
|
| 121 |
+
exercise rights under this License despite a previous violation.
|
| 122 |
+
|
| 123 |
+
Words in the singular include the plural and vice versa.
|
| 124 |
+
|
| 125 |
+
### 2.0 What this License covers
|
| 126 |
+
|
| 127 |
+
2.1. Legal effect of this document. This License is:
|
| 128 |
+
|
| 129 |
+
a. A license of applicable copyright and neighbouring rights;
|
| 130 |
+
|
| 131 |
+
b. A license of the Database Right; and
|
| 132 |
+
|
| 133 |
+
c. An agreement in contract between You and the Licensor.
|
| 134 |
+
|
| 135 |
+
2.2 Legal rights covered. This License covers the legal rights in the
|
| 136 |
+
Database, including:
|
| 137 |
+
|
| 138 |
+
a. Copyright. Any copyright or neighbouring rights in the Database.
|
| 139 |
+
The copyright licensed includes any individual elements of the
|
| 140 |
+
Database, but does not cover the copyright over the Contents
|
| 141 |
+
independent of this Database. See Section 2.4 for details. Copyright
|
| 142 |
+
law varies between jurisdictions, but is likely to cover: the Database
|
| 143 |
+
model or schema, which is the structure, arrangement, and organisation
|
| 144 |
+
of the Database, and can also include the Database tables and table
|
| 145 |
+
indexes; the data entry and output sheets; and the Field names of
|
| 146 |
+
Contents stored in the Database;
|
| 147 |
+
|
| 148 |
+
b. Database Rights. Database Rights only extend to the Extraction and
|
| 149 |
+
Re-utilisation of the whole or a Substantial part of the Contents.
|
| 150 |
+
Database Rights can apply even when there is no copyright over the
|
| 151 |
+
Database. Database Rights can also apply when the Contents are removed
|
| 152 |
+
from the Database and are selected and arranged in a way that would
|
| 153 |
+
not infringe any applicable copyright; and
|
| 154 |
+
|
| 155 |
+
c. Contract. This is an agreement between You and the Licensor for
|
| 156 |
+
access to the Database. In return you agree to certain conditions of
|
| 157 |
+
use on this access as outlined in this License.
|
| 158 |
+
|
| 159 |
+
2.3 Rights not covered.
|
| 160 |
+
|
| 161 |
+
a. This License does not apply to computer programs used in the making
|
| 162 |
+
or operation of the Database;
|
| 163 |
+
|
| 164 |
+
b. This License does not cover any patents over the Contents or the
|
| 165 |
+
Database; and
|
| 166 |
+
|
| 167 |
+
c. This License does not cover any trademarks associated with the
|
| 168 |
+
Database.
|
| 169 |
+
|
| 170 |
+
2.4 Relationship to Contents in the Database. The individual items of
|
| 171 |
+
the Contents contained in this Database may be covered by other rights,
|
| 172 |
+
including copyright, patent, data protection, privacy, or personality
|
| 173 |
+
rights, and this License does not cover any rights (other than Database
|
| 174 |
+
Rights or in contract) in individual Contents contained in the Database.
|
| 175 |
+
For example, if used on a Database of images (the Contents), this
|
| 176 |
+
License would not apply to copyright over individual images, which could
|
| 177 |
+
have their own separate licenses, or one single license covering all of
|
| 178 |
+
the rights over the images.
|
| 179 |
+
|
| 180 |
+
### 3.0 Rights granted
|
| 181 |
+
|
| 182 |
+
3.1 Subject to the terms and conditions of this License, the Licensor
|
| 183 |
+
grants to You a worldwide, royalty-free, non-exclusive, terminable (but
|
| 184 |
+
only under Section 9) license to Use the Database for the duration of
|
| 185 |
+
any applicable copyright and Database Rights. These rights explicitly
|
| 186 |
+
include commercial use, and do not exclude any field of endeavour. To
|
| 187 |
+
the extent possible in the relevant jurisdiction, these rights may be
|
| 188 |
+
exercised in all media and formats whether now known or created in the
|
| 189 |
+
future.
|
| 190 |
+
|
| 191 |
+
The rights granted cover, for example:
|
| 192 |
+
|
| 193 |
+
a. Extraction and Re-utilisation of the whole or a Substantial part of
|
| 194 |
+
the Contents;
|
| 195 |
+
|
| 196 |
+
b. Creation of Derivative Databases;
|
| 197 |
+
|
| 198 |
+
c. Creation of Collective Databases;
|
| 199 |
+
|
| 200 |
+
d. Creation of temporary or permanent reproductions by any means and
|
| 201 |
+
in any form, in whole or in part, including of any Derivative
|
| 202 |
+
Databases or as a part of Collective Databases; and
|
| 203 |
+
|
| 204 |
+
e. Distribution, communication, display, lending, making available, or
|
| 205 |
+
performance to the public by any means and in any form, in whole or in
|
| 206 |
+
part, including of any Derivative Database or as a part of Collective
|
| 207 |
+
Databases.
|
| 208 |
+
|
| 209 |
+
3.2 Compulsory license schemes. For the avoidance of doubt:
|
| 210 |
+
|
| 211 |
+
a. Non-waivable compulsory license schemes. In those jurisdictions in
|
| 212 |
+
which the right to collect royalties through any statutory or
|
| 213 |
+
compulsory licensing scheme cannot be waived, the Licensor reserves
|
| 214 |
+
the exclusive right to collect such royalties for any exercise by You
|
| 215 |
+
of the rights granted under this License;
|
| 216 |
+
|
| 217 |
+
b. Waivable compulsory license schemes. In those jurisdictions in
|
| 218 |
+
which the right to collect royalties through any statutory or
|
| 219 |
+
compulsory licensing scheme can be waived, the Licensor waives the
|
| 220 |
+
exclusive right to collect such royalties for any exercise by You of
|
| 221 |
+
the rights granted under this License; and,
|
| 222 |
+
|
| 223 |
+
c. Voluntary license schemes. The Licensor waives the right to collect
|
| 224 |
+
royalties, whether individually or, in the event that the Licensor is
|
| 225 |
+
a member of a collecting society that administers voluntary licensing
|
| 226 |
+
schemes, via that society, from any exercise by You of the rights
|
| 227 |
+
granted under this License.
|
| 228 |
+
|
| 229 |
+
3.3 The right to release the Database under different terms, or to stop
|
| 230 |
+
distributing or making available the Database, is reserved. Note that
|
| 231 |
+
this Database may be multiple-licensed, and so You may have the choice
|
| 232 |
+
of using alternative licenses for this Database. Subject to Section
|
| 233 |
+
10.4, all other rights not expressly granted by Licensor are reserved.
|
| 234 |
+
|
| 235 |
+
### 4.0 Conditions of Use
|
| 236 |
+
|
| 237 |
+
4.1 The rights granted in Section 3 above are expressly made subject to
|
| 238 |
+
Your complying with the following conditions of use. These are important
|
| 239 |
+
conditions of this License, and if You fail to follow them, You will be
|
| 240 |
+
in material breach of its terms.
|
| 241 |
+
|
| 242 |
+
4.2 Notices. If You Publicly Convey this Database, any Derivative
|
| 243 |
+
Database, or the Database as part of a Collective Database, then You
|
| 244 |
+
must:
|
| 245 |
+
|
| 246 |
+
a. Do so only under the terms of this License or another license
|
| 247 |
+
permitted under Section 4.4;
|
| 248 |
+
|
| 249 |
+
b. Include a copy of this License (or, as applicable, a license
|
| 250 |
+
permitted under Section 4.4) or its Uniform Resource Identifier (URI)
|
| 251 |
+
with the Database or Derivative Database, including both in the
|
| 252 |
+
Database or Derivative Database and in any relevant documentation; and
|
| 253 |
+
|
| 254 |
+
c. Keep intact any copyright or Database Right notices and notices
|
| 255 |
+
that refer to this License.
|
| 256 |
+
|
| 257 |
+
d. If it is not possible to put the required notices in a particular
|
| 258 |
+
file due to its structure, then You must include the notices in a
|
| 259 |
+
location (such as a relevant directory) where users would be likely to
|
| 260 |
+
look for it.
|
| 261 |
+
|
| 262 |
+
4.3 Notice for using output (Contents). Creating and Using a Produced
|
| 263 |
+
Work does not require the notice in Section 4.2. However, if you
|
| 264 |
+
Publicly Use a Produced Work, You must include a notice associated with
|
| 265 |
+
the Produced Work reasonably calculated to make any Person that uses,
|
| 266 |
+
views, accesses, interacts with, or is otherwise exposed to the Produced
|
| 267 |
+
Work aware that Content was obtained from the Database, Derivative
|
| 268 |
+
Database, or the Database as part of a Collective Database, and that it
|
| 269 |
+
is available under this License.
|
| 270 |
+
|
| 271 |
+
a. Example notice. The following text will satisfy notice under
|
| 272 |
+
Section 4.3:
|
| 273 |
+
|
| 274 |
+
Contains information from DATABASE NAME, which is made available
|
| 275 |
+
here under the Open Database License (ODbL).
|
| 276 |
+
|
| 277 |
+
DATABASE NAME should be replaced with the name of the Database and a
|
| 278 |
+
hyperlink to the URI of the Database. "Open Database License" should
|
| 279 |
+
contain a hyperlink to the URI of the text of this License. If
|
| 280 |
+
hyperlinks are not possible, You should include the plain text of the
|
| 281 |
+
required URI's with the above notice.
|
| 282 |
+
|
| 283 |
+
4.4 Share alike.
|
| 284 |
+
|
| 285 |
+
a. Any Derivative Database that You Publicly Use must be only under
|
| 286 |
+
the terms of:
|
| 287 |
+
|
| 288 |
+
i. This License;
|
| 289 |
+
|
| 290 |
+
ii. A later version of this License similar in spirit to this
|
| 291 |
+
License; or
|
| 292 |
+
|
| 293 |
+
iii. A compatible license.
|
| 294 |
+
|
| 295 |
+
If You license the Derivative Database under one of the licenses
|
| 296 |
+
mentioned in (iii), You must comply with the terms of that license.
|
| 297 |
+
|
| 298 |
+
b. For the avoidance of doubt, Extraction or Re-utilisation of the
|
| 299 |
+
whole or a Substantial part of the Contents into a new database is a
|
| 300 |
+
Derivative Database and must comply with Section 4.4.
|
| 301 |
+
|
| 302 |
+
c. Derivative Databases and Produced Works. A Derivative Database is
|
| 303 |
+
Publicly Used and so must comply with Section 4.4. if a Produced Work
|
| 304 |
+
created from the Derivative Database is Publicly Used.
|
| 305 |
+
|
| 306 |
+
d. Share Alike and additional Contents. For the avoidance of doubt,
|
| 307 |
+
You must not add Contents to Derivative Databases under Section 4.4 a
|
| 308 |
+
that are incompatible with the rights granted under this License.
|
| 309 |
+
|
| 310 |
+
e. Compatible licenses. Licensors may authorise a proxy to determine
|
| 311 |
+
compatible licenses under Section 4.4 a iii. If they do so, the
|
| 312 |
+
authorised proxy's public statement of acceptance of a compatible
|
| 313 |
+
license grants You permission to use the compatible license.
|
| 314 |
+
|
| 315 |
+
|
| 316 |
+
4.5 Limits of Share Alike. The requirements of Section 4.4 do not apply
|
| 317 |
+
in the following:
|
| 318 |
+
|
| 319 |
+
a. For the avoidance of doubt, You are not required to license
|
| 320 |
+
Collective Databases under this License if You incorporate this
|
| 321 |
+
Database or a Derivative Database in the collection, but this License
|
| 322 |
+
still applies to this Database or a Derivative Database as a part of
|
| 323 |
+
the Collective Database;
|
| 324 |
+
|
| 325 |
+
b. Using this Database, a Derivative Database, or this Database as
|
| 326 |
+
part of a Collective Database to create a Produced Work does not
|
| 327 |
+
create a Derivative Database for purposes of Section 4.4; and
|
| 328 |
+
|
| 329 |
+
c. Use of a Derivative Database internally within an organisation is
|
| 330 |
+
not to the public and therefore does not fall under the requirements
|
| 331 |
+
of Section 4.4.
|
| 332 |
+
|
| 333 |
+
4.6 Access to Derivative Databases. If You Publicly Use a Derivative
|
| 334 |
+
Database or a Produced Work from a Derivative Database, You must also
|
| 335 |
+
offer to recipients of the Derivative Database or Produced Work a copy
|
| 336 |
+
in a machine readable form of:
|
| 337 |
+
|
| 338 |
+
a. The entire Derivative Database; or
|
| 339 |
+
|
| 340 |
+
b. A file containing all of the alterations made to the Database or
|
| 341 |
+
the method of making the alterations to the Database (such as an
|
| 342 |
+
algorithm), including any additional Contents, that make up all the
|
| 343 |
+
differences between the Database and the Derivative Database.
|
| 344 |
+
|
| 345 |
+
The Derivative Database (under a.) or alteration file (under b.) must be
|
| 346 |
+
available at no more than a reasonable production cost for physical
|
| 347 |
+
distributions and free of charge if distributed over the internet.
|
| 348 |
+
|
| 349 |
+
4.7 Technological measures and additional terms
|
| 350 |
+
|
| 351 |
+
a. This License does not allow You to impose (except subject to
|
| 352 |
+
Section 4.7 b.) any terms or any technological measures on the
|
| 353 |
+
Database, a Derivative Database, or the whole or a Substantial part of
|
| 354 |
+
the Contents that alter or restrict the terms of this License, or any
|
| 355 |
+
rights granted under it, or have the effect or intent of restricting
|
| 356 |
+
the ability of any person to exercise those rights.
|
| 357 |
+
|
| 358 |
+
b. Parallel distribution. You may impose terms or technological
|
| 359 |
+
measures on the Database, a Derivative Database, or the whole or a
|
| 360 |
+
Substantial part of the Contents (a "Restricted Database") in
|
| 361 |
+
contravention of Section 4.74 a. only if You also make a copy of the
|
| 362 |
+
Database or a Derivative Database available to the recipient of the
|
| 363 |
+
Restricted Database:
|
| 364 |
+
|
| 365 |
+
i. That is available without additional fee;
|
| 366 |
+
|
| 367 |
+
ii. That is available in a medium that does not alter or restrict
|
| 368 |
+
the terms of this License, or any rights granted under it, or have
|
| 369 |
+
the effect or intent of restricting the ability of any person to
|
| 370 |
+
exercise those rights (an "Unrestricted Database"); and
|
| 371 |
+
|
| 372 |
+
iii. The Unrestricted Database is at least as accessible to the
|
| 373 |
+
recipient as a practical matter as the Restricted Database.
|
| 374 |
+
|
| 375 |
+
c. For the avoidance of doubt, You may place this Database or a
|
| 376 |
+
Derivative Database in an authenticated environment, behind a
|
| 377 |
+
password, or within a similar access control scheme provided that You
|
| 378 |
+
do not alter or restrict the terms of this License or any rights
|
| 379 |
+
granted under it or have the effect or intent of restricting the
|
| 380 |
+
ability of any person to exercise those rights.
|
| 381 |
+
|
| 382 |
+
4.8 Licensing of others. You may not sublicense the Database. Each time
|
| 383 |
+
You communicate the Database, the whole or Substantial part of the
|
| 384 |
+
Contents, or any Derivative Database to anyone else in any way, the
|
| 385 |
+
Licensor offers to the recipient a license to the Database on the same
|
| 386 |
+
terms and conditions as this License. You are not responsible for
|
| 387 |
+
enforcing compliance by third parties with this License, but You may
|
| 388 |
+
enforce any rights that You have over a Derivative Database. You are
|
| 389 |
+
solely responsible for any modifications of a Derivative Database made
|
| 390 |
+
by You or another Person at Your direction. You may not impose any
|
| 391 |
+
further restrictions on the exercise of the rights granted or affirmed
|
| 392 |
+
under this License.
|
| 393 |
+
|
| 394 |
+
### 5.0 Moral rights
|
| 395 |
+
|
| 396 |
+
5.1 Moral rights. This section covers moral rights, including any rights
|
| 397 |
+
to be identified as the author of the Database or to object to treatment
|
| 398 |
+
that would otherwise prejudice the author's honour and reputation, or
|
| 399 |
+
any other derogatory treatment:
|
| 400 |
+
|
| 401 |
+
a. For jurisdictions allowing waiver of moral rights, Licensor waives
|
| 402 |
+
all moral rights that Licensor may have in the Database to the fullest
|
| 403 |
+
extent possible by the law of the relevant jurisdiction under Section
|
| 404 |
+
10.4;
|
| 405 |
+
|
| 406 |
+
b. If waiver of moral rights under Section 5.1 a in the relevant
|
| 407 |
+
jurisdiction is not possible, Licensor agrees not to assert any moral
|
| 408 |
+
rights over the Database and waives all claims in moral rights to the
|
| 409 |
+
fullest extent possible by the law of the relevant jurisdiction under
|
| 410 |
+
Section 10.4; and
|
| 411 |
+
|
| 412 |
+
c. For jurisdictions not allowing waiver or an agreement not to assert
|
| 413 |
+
moral rights under Section 5.1 a and b, the author may retain their
|
| 414 |
+
moral rights over certain aspects of the Database.
|
| 415 |
+
|
| 416 |
+
Please note that some jurisdictions do not allow for the waiver of moral
|
| 417 |
+
rights, and so moral rights may still subsist over the Database in some
|
| 418 |
+
jurisdictions.
|
| 419 |
+
|
| 420 |
+
### 6.0 Fair dealing, Database exceptions, and other rights not affected
|
| 421 |
+
|
| 422 |
+
6.1 This License does not affect any rights that You or anyone else may
|
| 423 |
+
independently have under any applicable law to make any use of this
|
| 424 |
+
Database, including without limitation:
|
| 425 |
+
|
| 426 |
+
a. Exceptions to the Database Right including: Extraction of Contents
|
| 427 |
+
from non-electronic Databases for private purposes, Extraction for
|
| 428 |
+
purposes of illustration for teaching or scientific research, and
|
| 429 |
+
Extraction or Re-utilisation for public security or an administrative
|
| 430 |
+
or judicial procedure.
|
| 431 |
+
|
| 432 |
+
b. Fair dealing, fair use, or any other legally recognised limitation
|
| 433 |
+
or exception to infringement of copyright or other applicable laws.
|
| 434 |
+
|
| 435 |
+
6.2 This License does not affect any rights of lawful users to Extract
|
| 436 |
+
and Re-utilise insubstantial parts of the Contents, evaluated
|
| 437 |
+
quantitatively or qualitatively, for any purposes whatsoever, including
|
| 438 |
+
creating a Derivative Database (subject to other rights over the
|
| 439 |
+
Contents, see Section 2.4). The repeated and systematic Extraction or
|
| 440 |
+
Re-utilisation of insubstantial parts of the Contents may however amount
|
| 441 |
+
to the Extraction or Re-utilisation of a Substantial part of the
|
| 442 |
+
Contents.
|
| 443 |
+
|
| 444 |
+
### 7.0 Warranties and Disclaimer
|
| 445 |
+
|
| 446 |
+
7.1 The Database is licensed by the Licensor "as is" and without any
|
| 447 |
+
warranty of any kind, either express, implied, or arising by statute,
|
| 448 |
+
custom, course of dealing, or trade usage. Licensor specifically
|
| 449 |
+
disclaims any and all implied warranties or conditions of title,
|
| 450 |
+
non-infringement, accuracy or completeness, the presence or absence of
|
| 451 |
+
errors, fitness for a particular purpose, merchantability, or otherwise.
|
| 452 |
+
Some jurisdictions do not allow the exclusion of implied warranties, so
|
| 453 |
+
this exclusion may not apply to You.
|
| 454 |
+
|
| 455 |
+
### 8.0 Limitation of liability
|
| 456 |
+
|
| 457 |
+
8.1 Subject to any liability that may not be excluded or limited by law,
|
| 458 |
+
the Licensor is not liable for, and expressly excludes, all liability
|
| 459 |
+
for loss or damage however and whenever caused to anyone by any use
|
| 460 |
+
under this License, whether by You or by anyone else, and whether caused
|
| 461 |
+
by any fault on the part of the Licensor or not. This exclusion of
|
| 462 |
+
liability includes, but is not limited to, any special, incidental,
|
| 463 |
+
consequential, punitive, or exemplary damages such as loss of revenue,
|
| 464 |
+
data, anticipated profits, and lost business. This exclusion applies
|
| 465 |
+
even if the Licensor has been advised of the possibility of such
|
| 466 |
+
damages.
|
| 467 |
+
|
| 468 |
+
8.2 If liability may not be excluded by law, it is limited to actual and
|
| 469 |
+
direct financial loss to the extent it is caused by proved negligence on
|
| 470 |
+
the part of the Licensor.
|
| 471 |
+
|
| 472 |
+
### 9.0 Termination of Your rights under this License
|
| 473 |
+
|
| 474 |
+
9.1 Any breach by You of the terms and conditions of this License
|
| 475 |
+
automatically terminates this License with immediate effect and without
|
| 476 |
+
notice to You. For the avoidance of doubt, Persons who have received the
|
| 477 |
+
Database, the whole or a Substantial part of the Contents, Derivative
|
| 478 |
+
Databases, or the Database as part of a Collective Database from You
|
| 479 |
+
under this License will not have their licenses terminated provided
|
| 480 |
+
their use is in full compliance with this License or a license granted
|
| 481 |
+
under Section 4.8 of this License. Sections 1, 2, 7, 8, 9 and 10 will
|
| 482 |
+
survive any termination of this License.
|
| 483 |
+
|
| 484 |
+
9.2 If You are not in breach of the terms of this License, the Licensor
|
| 485 |
+
will not terminate Your rights under it.
|
| 486 |
+
|
| 487 |
+
9.3 Unless terminated under Section 9.1, this License is granted to You
|
| 488 |
+
for the duration of applicable rights in the Database.
|
| 489 |
+
|
| 490 |
+
9.4 Reinstatement of rights. If you cease any breach of the terms and
|
| 491 |
+
conditions of this License, then your full rights under this License
|
| 492 |
+
will be reinstated:
|
| 493 |
+
|
| 494 |
+
a. Provisionally and subject to permanent termination until the 60th
|
| 495 |
+
day after cessation of breach;
|
| 496 |
+
|
| 497 |
+
b. Permanently on the 60th day after cessation of breach unless
|
| 498 |
+
otherwise reasonably notified by the Licensor; or
|
| 499 |
+
|
| 500 |
+
c. Permanently if reasonably notified by the Licensor of the
|
| 501 |
+
violation, this is the first time You have received notice of
|
| 502 |
+
violation of this License from the Licensor, and You cure the
|
| 503 |
+
violation prior to 30 days after your receipt of the notice.
|
| 504 |
+
|
| 505 |
+
Persons subject to permanent termination of rights are not eligible to
|
| 506 |
+
be a recipient and receive a license under Section 4.8.
|
| 507 |
+
|
| 508 |
+
9.5 Notwithstanding the above, Licensor reserves the right to release
|
| 509 |
+
the Database under different license terms or to stop distributing or
|
| 510 |
+
making available the Database. Releasing the Database under different
|
| 511 |
+
license terms or stopping the distribution of the Database will not
|
| 512 |
+
withdraw this License (or any other license that has been, or is
|
| 513 |
+
required to be, granted under the terms of this License), and this
|
| 514 |
+
License will continue in full force and effect unless terminated as
|
| 515 |
+
stated above.
|
| 516 |
+
|
| 517 |
+
### 10.0 General
|
| 518 |
+
|
| 519 |
+
10.1 If any provision of this License is held to be invalid or
|
| 520 |
+
unenforceable, that must not affect the validity or enforceability of
|
| 521 |
+
the remainder of the terms and conditions of this License and each
|
| 522 |
+
remaining provision of this License shall be valid and enforced to the
|
| 523 |
+
fullest extent permitted by law.
|
| 524 |
+
|
| 525 |
+
10.2 This License is the entire agreement between the parties with
|
| 526 |
+
respect to the rights granted here over the Database. It replaces any
|
| 527 |
+
earlier understandings, agreements or representations with respect to
|
| 528 |
+
the Database.
|
| 529 |
+
|
| 530 |
+
10.3 If You are in breach of the terms of this License, You will not be
|
| 531 |
+
entitled to rely on the terms of this License or to complain of any
|
| 532 |
+
breach by the Licensor.
|
| 533 |
+
|
| 534 |
+
10.4 Choice of law. This License takes effect in and will be governed by
|
| 535 |
+
the laws of the relevant jurisdiction in which the License terms are
|
| 536 |
+
sought to be enforced. If the standard suite of rights granted under
|
| 537 |
+
applicable copyright law and Database Rights in the relevant
|
| 538 |
+
jurisdiction includes additional rights not granted under this License,
|
| 539 |
+
these additional rights are granted in this License in order to meet the
|
| 540 |
+
terms of this License.
|
data/mimic-iv-clinical-database-demo/README.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
===============================
|
| 2 |
+
MIMIC-IV Clinical Database Demo
|
| 3 |
+
===============================
|
| 4 |
+
|
| 5 |
+
The Medical Information Mart for Intensive Care (MIMIC)-IV database is comprised
|
| 6 |
+
of deidentified electronic health records for patients admitted to the Beth Israel
|
| 7 |
+
Deaconess Medical Center. Access to MIMIC-IV is limited to credentialed users.
|
| 8 |
+
Here, we have provided an openly-available demo of MIMIC-IV containing a subset
|
| 9 |
+
of 100 patients. The dataset includes similar content to MIMIC-IV, but excludes
|
| 10 |
+
free-text clinical notes. The demo may be useful for running workshops and for
|
| 11 |
+
assessing whether the MIMIC-IV is appropriate for a study before making an access
|
| 12 |
+
request.
|
| 13 |
+
|
| 14 |
+
For details on the data, see the MIMIC-IV project on PhysioNet:
|
| 15 |
+
https://doi.org/10.13026/07hj-2a80
|
| 16 |
+
|
| 17 |
+
The contents of this project also contain an additional file:
|
| 18 |
+
demo_subject_id.csv
|
| 19 |
+
|
| 20 |
+
This is a CSV file containing the subject_id used to filter MIMIC-IV. Only
|
| 21 |
+
these subject_id are available in the demo.
|
data/mimic-iv-clinical-database-demo/SHA256SUMS.txt
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
bcdfcd4f31c790e30fb645dc36414907172405897adff329ad379eed85d12017 LICENSE.txt
|
| 2 |
+
4eaae533164245e59e5eb70b52695c061900cdc067cebe508105706b4d10e393 README.txt
|
| 3 |
+
6e9ba177eefc70617ccc1782b9af716b23fbcf36c4c5143e275149d78ee83624 demo_subject_id.csv
|
| 4 |
+
910b9f160ffdf1e08ea673585393f347c773ccc87d66875c627584a903ae8493 hosp/admissions.csv.gz
|
| 5 |
+
493ea7fe1d22afd5abd9138be8a4e50c776986feded6891143120d2bc724d881 hosp/d_hcpcs.csv.gz
|
| 6 |
+
0f715a3c4c5e44400305d4deb86ff648e499a3bfcb946f353e8b030022d3ec06 hosp/d_icd_diagnoses.csv.gz
|
| 7 |
+
a921a20fbf3220e2a7fe874d6392d671c1cc769a001ef0a7841b80eb01030bb6 hosp/d_icd_procedures.csv.gz
|
| 8 |
+
72ea5f020469fd24543bd98ab3bd0a4f645a5a4b7802d9d52af20d736f9d76db hosp/d_labitems.csv.gz
|
| 9 |
+
958565670c0b3903c0c12825366dc2bae8561d2d55f16feac0c949dd630ed3e4 hosp/diagnoses_icd.csv.gz
|
| 10 |
+
9ec47b7a49514cfe243236ca2eb5c5b517d2215d6589efb2bd80166883243537 hosp/drgcodes.csv.gz
|
| 11 |
+
f14a4b5597abcc2e8d62d291c7839347ef6260d4c548ea534ab62df6b2f49adc hosp/emar.csv.gz
|
| 12 |
+
8ca5a09f2fa2e0ad5d77121fd62bf5f58bad056713223d9758b4ecd03fa0a435 hosp/emar_detail.csv.gz
|
| 13 |
+
87f8af876aa6a608c6761068386e93e0c91b59ff2ce0d7a650fe8d5ba833247d hosp/hcpcsevents.csv.gz
|
| 14 |
+
d51a4cf1ea63245abe7d544b0d50a928e9ee2ec5eb9a5ce85500aed0bd6c6dfc hosp/labevents.csv.gz
|
| 15 |
+
fa462443cc5777ebf9d833f71c67f2a89b4a074eb376320da70bed220e918ad4 hosp/microbiologyevents.csv.gz
|
| 16 |
+
6d7c69dbb2c79b9d1de7d1e68f3424ad248821d7c074dc6537d7290774af39b9 hosp/omr.csv.gz
|
| 17 |
+
59dcc6cd8450ddf03ad32cc7d76e41caa4c9633541715987f590c74835cf6fae hosp/patients.csv.gz
|
| 18 |
+
3403865a279464b14d038a66b30ba3d609933f517262ea0402fef020046bd197 hosp/pharmacy.csv.gz
|
| 19 |
+
bf850e1519f2c3df8c706dc5e2afcb83e86e1d6e4afd7c01426b6b07d25cfeef hosp/poe.csv.gz
|
| 20 |
+
7010cbc4d74e9a7c998be33c3736af301ebe2c6678969e25800d28e90a2b5825 hosp/poe_detail.csv.gz
|
| 21 |
+
33c392ba5b9299b08eca0a61911ba106f0aebdba26ed31b856bb9ffd49fe3654 hosp/prescriptions.csv.gz
|
| 22 |
+
68f21dcba9ae0c4b7faa3ef38aa950a8ebeb6d167bc74416314dccdcf28674e0 hosp/procedures_icd.csv.gz
|
| 23 |
+
7a56a24cfe2fcd5ed1995c696417bf8f5c09088eb546503b07362c504228c63a hosp/provider.csv.gz
|
| 24 |
+
28306d68e952fe2cc9ef6e60b0afda93c27d7a06bee8ef39e71ccc4de5ded793 hosp/services.csv.gz
|
| 25 |
+
41151539886d12d57159b65ffe4d7df5a7ef8ceb7cd113ea9a56fbfbfd78a87c hosp/transfers.csv.gz
|
| 26 |
+
88ee01d7f21aadee273e2d1ce65b0f14fe96fe87ab42e2b40c89aa8103ef6371 icu/caregiver.csv.gz
|
| 27 |
+
90f096ad3db847ed1aaec073f8d86053c51fea7b616d3b046410e030f083d560 icu/chartevents.csv.gz
|
| 28 |
+
1690467a822345226a041c1149237c418aa60098c6b699fb4cef64d73588a01f icu/d_items.csv.gz
|
| 29 |
+
b9f05bb9b1c5aa52e9f25585853583a2e07046f22ed68419c20ef8daa8762da5 icu/datetimeevents.csv.gz
|
| 30 |
+
e05e81aa52a3022e522b6832a898101a69b84e64c17bb344d819e458d5bc21b3 icu/icustays.csv.gz
|
| 31 |
+
c9b0afdca936a9485422f72d227b3d1942125bb6d969eef57fdf0233458c6b23 icu/ingredientevents.csv.gz
|
| 32 |
+
69597dca47e554e16645ca505167e9f39b07c1724e915ba54ccfb40f5fa0078a icu/inputevents.csv.gz
|
| 33 |
+
3bcf68adaa11070d6c24e13d4bfaaf718606cd33b0df7f28e0de240c357a869e icu/outputevents.csv.gz
|
| 34 |
+
37454f286dc1eee6cef666b4fdf91452eb8bea6bfc3cf98d4ad179ebb4a741fa icu/procedureevents.csv.gz
|
data/mimic-iv-clinical-database-demo/demo_subject_id.csv
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
subject_id
|
| 2 |
+
10000032
|
| 3 |
+
10001217
|
| 4 |
+
10001725
|
| 5 |
+
10002428
|
| 6 |
+
10002495
|
| 7 |
+
10002930
|
| 8 |
+
10003046
|
| 9 |
+
10003400
|
| 10 |
+
10004235
|
| 11 |
+
10004422
|
| 12 |
+
10004457
|
| 13 |
+
10004720
|
| 14 |
+
10004733
|
| 15 |
+
10005348
|
| 16 |
+
10005817
|
| 17 |
+
10005866
|
| 18 |
+
10005909
|
| 19 |
+
10006053
|
| 20 |
+
10006580
|
| 21 |
+
10007058
|
| 22 |
+
10007795
|
| 23 |
+
10007818
|
| 24 |
+
10007928
|
| 25 |
+
10008287
|
| 26 |
+
10008454
|
| 27 |
+
10009035
|
| 28 |
+
10009049
|
| 29 |
+
10009628
|
| 30 |
+
10010471
|
| 31 |
+
10010867
|
| 32 |
+
10011398
|
| 33 |
+
10012552
|
| 34 |
+
10012853
|
| 35 |
+
10013049
|
| 36 |
+
10014078
|
| 37 |
+
10014354
|
| 38 |
+
10014729
|
| 39 |
+
10015272
|
| 40 |
+
10015860
|
| 41 |
+
10015931
|
| 42 |
+
10016150
|
| 43 |
+
10016742
|
| 44 |
+
10016810
|
| 45 |
+
10017492
|
| 46 |
+
10018081
|
| 47 |
+
10018328
|
| 48 |
+
10018423
|
| 49 |
+
10018501
|
| 50 |
+
10018845
|
| 51 |
+
10019003
|
| 52 |
+
10019172
|
| 53 |
+
10019385
|
| 54 |
+
10019568
|
| 55 |
+
10019777
|
| 56 |
+
10019917
|
| 57 |
+
10020187
|
| 58 |
+
10020306
|
| 59 |
+
10020640
|
| 60 |
+
10020740
|
| 61 |
+
10020786
|
| 62 |
+
10020944
|
| 63 |
+
10021118
|
| 64 |
+
10021312
|
| 65 |
+
10021487
|
| 66 |
+
10021666
|
| 67 |
+
10021938
|
| 68 |
+
10022017
|
| 69 |
+
10022041
|
| 70 |
+
10022281
|
| 71 |
+
10022880
|
| 72 |
+
10023117
|
| 73 |
+
10023239
|
| 74 |
+
10023771
|
| 75 |
+
10024043
|
| 76 |
+
10025463
|
| 77 |
+
10025612
|
| 78 |
+
10026255
|
| 79 |
+
10026354
|
| 80 |
+
10026406
|
| 81 |
+
10027445
|
| 82 |
+
10027602
|
| 83 |
+
10029291
|
| 84 |
+
10029484
|
| 85 |
+
10031404
|
| 86 |
+
10031757
|
| 87 |
+
10032725
|
| 88 |
+
10035185
|
| 89 |
+
10035631
|
| 90 |
+
10036156
|
| 91 |
+
10037861
|
| 92 |
+
10037928
|
| 93 |
+
10037975
|
| 94 |
+
10038081
|
| 95 |
+
10038933
|
| 96 |
+
10038992
|
| 97 |
+
10038999
|
| 98 |
+
10039708
|
| 99 |
+
10039831
|
| 100 |
+
10039997
|
| 101 |
+
10040025
|
data/mimic-iv-clinical-database-demo/hosp/admissions.csv
ADDED
|
@@ -0,0 +1,276 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
subject_id,hadm_id,admittime,dischtime,deathtime,admission_type,admit_provider_id,admission_location,discharge_location,insurance,language,marital_status,race,edregtime,edouttime,hospital_expire_flag
|
| 2 |
+
10004235,24181354,2196-02-24 14:38:00,2196-03-04 14:02:00,,URGENT,P03YMR,TRANSFER FROM HOSPITAL,SKILLED NURSING FACILITY,Medicaid,ENGLISH,SINGLE,BLACK/CAPE VERDEAN,2196-02-24 12:15:00,2196-02-24 17:07:00,0
|
| 3 |
+
10009628,25926192,2153-09-17 17:08:00,2153-09-25 13:20:00,,URGENT,P41R5N,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Medicaid,?,MARRIED,HISPANIC/LATINO - PUERTO RICAN,,,0
|
| 4 |
+
10018081,23983182,2134-08-18 02:02:00,2134-08-23 19:35:00,,URGENT,P233F6,TRANSFER FROM HOSPITAL,SKILLED NURSING FACILITY,Medicare,ENGLISH,MARRIED,WHITE,2134-08-17 16:24:00,2134-08-18 03:15:00,0
|
| 5 |
+
10006053,22942076,2111-11-13 23:39:00,2111-11-15 17:20:00,2111-11-15 17:20:00,URGENT,P38TI6,TRANSFER FROM HOSPITAL,DIED,Medicaid,ENGLISH,,UNKNOWN,,,1
|
| 6 |
+
10031404,21606243,2113-08-04 18:46:00,2113-08-06 20:57:00,,URGENT,P07HDB,TRANSFER FROM HOSPITAL,HOME,Other,ENGLISH,WIDOWED,WHITE,,,0
|
| 7 |
+
10005817,20626031,2132-12-12 01:43:00,2132-12-20 15:04:00,,URGENT,P41R5N,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Medicare,ENGLISH,MARRIED,WHITE,,,0
|
| 8 |
+
10019385,20297618,2180-02-15 20:28:00,2180-02-25 13:45:00,,URGENT,P536JC,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Other,ENGLISH,MARRIED,WHITE,,,0
|
| 9 |
+
10002495,24982426,2141-05-22 20:17:00,2141-05-29 17:41:00,,URGENT,P79SJ2,TRANSFER FROM HOSPITAL,SKILLED NURSING FACILITY,Medicare,ENGLISH,MARRIED,UNKNOWN,,,0
|
| 10 |
+
10038081,20755971,2115-09-27 20:40:00,2115-10-12 00:00:00,2115-10-12 22:20:00,URGENT,P48GIG,TRANSFER FROM HOSPITAL,DIED,Other,?,SINGLE,UNKNOWN,,,1
|
| 11 |
+
10019917,22585261,2182-01-07 23:25:00,2182-01-10 16:52:00,,URGENT,P3529J,TRANSFER FROM HOSPITAL,HOME,Other,ENGLISH,SINGLE,OTHER,,,0
|
| 12 |
+
10037861,24256866,2115-10-09 20:28:00,2115-10-18 16:50:00,,URGENT,P64TGC,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Medicare,ENGLISH,MARRIED,UNKNOWN,,,0
|
| 13 |
+
10026354,24547356,2119-10-26 07:11:00,2119-11-06 12:30:00,,URGENT,P77BSD,TRANSFER FROM HOSPITAL,SKILLED NURSING FACILITY,Other,?,,WHITE,2119-10-26 06:00:00,2119-10-26 06:37:00,0
|
| 14 |
+
10015860,26352758,2192-09-24 09:19:00,2192-09-28 19:52:00,,URGENT,P54RLA,TRANSFER FROM SKILLED NURSING FACILITY,SKILLED NURSING FACILITY,Other,ENGLISH,SINGLE,WHITE,2192-09-23 22:43:00,2192-09-24 09:38:00,0
|
| 15 |
+
10020740,23831430,2150-03-11 15:34:00,2150-04-25 13:50:00,,URGENT,P7554I,TRANSFER FROM HOSPITAL,SKILLED NURSING FACILITY,Other,ENGLISH,SINGLE,WHITE,,,0
|
| 16 |
+
10012552,27089790,2140-03-22 17:18:00,2140-03-30 14:10:00,,URGENT,P47E1G,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Medicare,ENGLISH,MARRIED,UNKNOWN,,,0
|
| 17 |
+
10014354,28335091,2147-04-26 16:44:00,2147-04-29 15:30:00,,URGENT,P79SJ2,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,,,0
|
| 18 |
+
10014354,27487226,2148-06-30 01:09:00,2148-07-13 19:35:00,,URGENT,P44WVR,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,2148-06-29 21:06:00,2148-06-30 02:27:00,0
|
| 19 |
+
10039708,25864431,2142-03-26 06:08:00,2142-04-11 21:00:00,,URGENT,P81KFM,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2142-03-25 22:22:00,2142-03-26 08:08:00,0
|
| 20 |
+
10000032,22595853,2180-05-06 22:23:00,2180-05-07 17:15:00,,URGENT,P874LG,TRANSFER FROM HOSPITAL,HOME,Other,ENGLISH,WIDOWED,WHITE,2180-05-06 19:17:00,2180-05-06 23:30:00,0
|
| 21 |
+
10020786,23488445,2189-06-09 12:45:00,2189-06-13 17:20:00,,URGENT,P031HZ,TRANSFER FROM HOSPITAL,HOME,Medicare,ENGLISH,WIDOWED,WHITE,,,0
|
| 22 |
+
10027445,27488741,2145-12-08 19:47:00,2145-12-19 14:36:00,,URGENT,P38RSS,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Other,ENGLISH,WIDOWED,WHITE,,,0
|
| 23 |
+
10027445,29163082,2142-08-27 21:05:00,2142-09-05 17:33:00,,URGENT,P509SB,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Other,ENGLISH,WIDOWED,WHITE,,,0
|
| 24 |
+
10015931,22130791,2177-03-24 21:47:00,2177-03-29 14:15:00,2177-03-29 14:15:00,URGENT,P031HZ,TRANSFER FROM HOSPITAL,DIED,Medicare,ENGLISH,MARRIED,WHITE,,,1
|
| 25 |
+
10036156,28019404,2157-07-01 04:52:00,2157-07-03 15:08:00,,URGENT,P94V16,TRANSFER FROM HOSPITAL,HOME,Other,ENGLISH,,UNKNOWN,,,0
|
| 26 |
+
10021312,25020332,2113-08-16 00:32:00,2113-08-18 17:35:00,,URGENT,P31A9M,TRANSFER FROM HOSPITAL,HOME,Other,ENGLISH,,UNKNOWN,,,0
|
| 27 |
+
10021312,28829452,2113-09-12 14:42:00,2113-09-20 18:40:00,,URGENT,P72G4H,TRANSFER FROM HOSPITAL,ACUTE HOSPITAL,Other,ENGLISH,,UNKNOWN,,,0
|
| 28 |
+
10003400,23559586,2137-08-04 00:07:00,2137-09-02 17:05:00,2137-09-02 17:05:00,URGENT,P99U21,TRANSFER FROM HOSPITAL,DIED,Medicare,ENGLISH,MARRIED,BLACK/AFRICAN AMERICAN,,,1
|
| 29 |
+
10003400,20214994,2137-02-24 10:00:00,2137-03-19 15:45:00,,URGENT,P60ZCO,TRANSFER FROM SKILLED NURSING FACILITY,CHRONIC/LONG TERM ACUTE CARE,Medicare,ENGLISH,MARRIED,BLACK/AFRICAN AMERICAN,,,0
|
| 30 |
+
10023117,24244087,2174-06-07 23:25:00,2174-06-12 15:55:00,,URGENT,P878WT,TRANSFER FROM HOSPITAL,HOME,Medicare,ENGLISH,WIDOWED,WHITE,2174-06-07 16:24:00,2174-06-08 01:02:00,0
|
| 31 |
+
10038992,22797747,2185-11-02 18:26:00,2185-11-08 16:22:00,,URGENT,P534S8,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Medicare,ENGLISH,MARRIED,UNKNOWN,,,0
|
| 32 |
+
10037975,27617929,2185-01-17 19:11:00,2185-01-22 14:25:00,2185-01-22 14:25:00,URGENT,P17MK7,TRANSFER FROM HOSPITAL,DIED,Medicare,ENGLISH,MARRIED,UNKNOWN,,,1
|
| 33 |
+
10035185,22580999,2120-05-12 12:53:00,2120-05-17 16:00:00,,URGENT,P41R5N,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Other,ENGLISH,MARRIED,WHITE,,,0
|
| 34 |
+
10002930,28301173,2197-04-08 19:37:00,2197-04-15 12:01:00,,URGENT,P3763P,INTERNAL TRANSFER TO OR FROM PSYCH,HOME,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,,,0
|
| 35 |
+
10002930,22733922,2198-04-22 16:17:00,2198-05-04 13:20:00,,URGENT,P3763P,INTERNAL TRANSFER TO OR FROM PSYCH,HOME,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,,,0
|
| 36 |
+
10007795,28477357,2136-04-10 20:33:00,2136-05-02 16:35:00,,URGENT,P172D4,TRANSFER FROM HOSPITAL,CHRONIC/LONG TERM ACUTE CARE,Medicare,ENGLISH,SINGLE,WHITE,,,0
|
| 37 |
+
10007795,25135483,2136-05-04 20:20:00,2136-05-12 17:12:00,,URGENT,P99LA7,TRANSFER FROM HOSPITAL,REHAB,Medicare,ENGLISH,SINGLE,WHITE,,,0
|
| 38 |
+
10004733,27411876,2174-12-04 11:28:00,2174-12-27 14:00:00,,URGENT,P48KFD,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Medicaid,ENGLISH,SINGLE,UNKNOWN,,,0
|
| 39 |
+
10021118,24490144,2161-11-15 20:10:00,2161-11-23 16:00:00,,URGENT,P96FGV,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Other,ENGLISH,MARRIED,WHITE,,,0
|
| 40 |
+
10006580,24159665,2137-08-10 11:00:00,2137-08-15 13:25:00,,ELECTIVE,P76K54,PHYSICIAN REFERRAL,HOME,Medicaid,?,MARRIED,HISPANIC/LATINO - SALVADORAN,,,0
|
| 41 |
+
10023771,20044587,2113-08-25 07:15:00,2113-08-30 14:15:00,,ELECTIVE,P47E1G,PHYSICIAN REFERRAL,SKILLED NURSING FACILITY,Medicare,ENGLISH,MARRIED,WHITE,,,0
|
| 42 |
+
10005348,29496232,2128-09-05 08:30:00,2128-09-12 16:55:00,,ELECTIVE,P786Y5,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,MARRIED,WHITE,,,0
|
| 43 |
+
10019172,24997044,2118-11-15 14:00:00,2118-11-21 18:31:00,,ELECTIVE,P41R5N,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,,UNABLE TO OBTAIN,,,0
|
| 44 |
+
10019172,21540783,2118-10-08 14:00:00,2118-10-11 20:15:00,,ELECTIVE,P41R5N,PHYSICIAN REFERRAL,HOME,Other,ENGLISH,,UNABLE TO OBTAIN,,,0
|
| 45 |
+
10021487,20429160,2117-07-16 07:15:00,2117-07-25 12:34:00,,ELECTIVE,P96Y5O,PHYSICIAN REFERRAL,HOME,Other,ENGLISH,DIVORCED,WHITE,,,0
|
| 46 |
+
10013049,22675517,2114-06-20 10:15:00,2114-06-24 16:45:00,,ELECTIVE,P41R5N,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,MARRIED,WHITE,,,0
|
| 47 |
+
10035631,20385771,2112-12-04 00:00:00,2112-12-27 16:24:00,,ELECTIVE,P45GUA,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,MARRIED,WHITE,,,0
|
| 48 |
+
10035631,24912093,2112-10-22 00:00:00,2112-10-28 12:16:00,,ELECTIVE,P45GUA,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,MARRIED,UNKNOWN,,,0
|
| 49 |
+
10019003,26226543,2155-10-17 18:01:00,2155-11-03 18:00:00,,ELECTIVE,P7280F,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,WIDOWED,WHITE,,,0
|
| 50 |
+
10019003,28003918,2148-12-21 07:15:00,2148-12-24 17:10:00,,ELECTIVE,P80J89,PHYSICIAN REFERRAL,HOME,Medicare,ENGLISH,WIDOWED,WHITE,,,0
|
| 51 |
+
10009035,28324362,2161-04-27 07:15:00,2161-05-01 13:45:00,,ELECTIVE,P41R5N,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,,,0
|
| 52 |
+
10040025,25933959,2147-12-29 19:36:00,2148-01-09 17:38:00,,ELECTIVE,P43BTJ,PHYSICIAN REFERRAL,SKILLED NURSING FACILITY,Other,ENGLISH,DIVORCED,WHITE,,,0
|
| 53 |
+
10014729,23300884,2125-03-19 16:58:00,2125-03-28 13:37:00,,EW EMER.,P76K54,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE - OTHER EUROPEAN,2125-03-19 12:36:00,2125-03-19 18:45:00,0
|
| 54 |
+
10026255,20437651,2200-09-17 22:53:00,2200-09-29 18:25:00,,EW EMER.,P233F6,EMERGENCY ROOM,HOME,Other,ENGLISH,MARRIED,WHITE,2200-09-17 18:38:00,2200-09-18 00:57:00,0
|
| 55 |
+
10026255,22059910,2201-07-07 18:15:00,2201-07-13 23:27:00,2201-07-13 23:27:00,EW EMER.,P48KFD,EMERGENCY ROOM,DIED,Other,ENGLISH,MARRIED,WHITE,2201-07-07 12:31:00,2201-07-07 19:40:00,1
|
| 56 |
+
10007058,22954658,2167-11-07 19:05:00,2167-11-11 14:23:00,,EW EMER.,P76K54,EMERGENCY ROOM,HOME,Other,ENGLISH,MARRIED,WHITE,2167-11-07 17:57:00,2167-11-07 20:22:00,0
|
| 57 |
+
10018845,21101111,2184-10-08 02:28:00,2184-10-11 17:00:00,,EW EMER.,P34SFE,EMERGENCY ROOM,REHAB,Other,ENGLISH,MARRIED,WHITE,2184-10-07 22:35:00,2184-10-08 04:09:00,0
|
| 58 |
+
10020640,27984218,2153-02-13 00:22:00,2153-02-20 13:52:00,,EW EMER.,P7554I,EMERGENCY ROOM,SKILLED NURSING FACILITY,Other,ENGLISH,WIDOWED,WHITE,2153-02-12 21:59:00,2153-02-13 01:38:00,0
|
| 59 |
+
10018081,25973915,2134-09-06 15:57:00,2134-09-18 15:50:00,,EW EMER.,P13ZRJ,EMERGENCY ROOM,CHRONIC/LONG TERM ACUTE CARE,Medicare,ENGLISH,MARRIED,WHITE,2134-09-05 16:14:00,2134-09-06 16:49:00,0
|
| 60 |
+
10018081,21027282,2133-12-18 16:58:00,2134-01-12 11:00:00,,EW EMER.,P19SWB,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicare,ENGLISH,MARRIED,WHITE,2133-12-18 12:09:00,2133-12-18 17:10:00,0
|
| 61 |
+
10021666,22756440,2172-03-12 23:47:00,2172-03-23 15:40:00,,EW EMER.,P99698,EMERGENCY ROOM,CHRONIC/LONG TERM ACUTE CARE,Medicare,ENGLISH,MARRIED,WHITE,2172-03-12 20:52:00,2172-03-13 01:46:00,0
|
| 62 |
+
10015272,27993466,2137-06-12 18:36:00,2137-06-18 15:45:00,,EW EMER.,P3529J,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,ENGLISH,,WHITE,2137-06-12 16:54:00,2137-06-12 20:37:00,0
|
| 63 |
+
10016810,20973395,2185-06-16 01:31:00,2185-06-21 15:55:00,,EW EMER.,P3638G,EMERGENCY ROOM,HOME,Other,ENGLISH,,UNKNOWN,2185-06-15 23:08:00,2185-06-16 02:16:00,0
|
| 64 |
+
10021938,23112364,2181-10-13 01:48:00,2181-10-14 17:40:00,,EW EMER.,P3529J,EMERGENCY ROOM,HOME,Medicare,ENGLISH,SINGLE,WHITE,2181-10-12 20:17:00,2181-10-13 02:52:00,0
|
| 65 |
+
10021938,27154822,2181-10-25 10:44:00,2181-10-27 15:30:00,,EW EMER.,P99BGS,EMERGENCY ROOM,HOME,Medicare,ENGLISH,SINGLE,WHITE,2181-10-25 09:23:00,2181-10-25 11:35:00,0
|
| 66 |
+
10001725,25563031,2110-04-11 15:08:00,2110-04-14 15:00:00,,EW EMER.,P35SU0,PACU,HOME,Other,ENGLISH,MARRIED,WHITE,,,0
|
| 67 |
+
10001217,24597018,2157-11-18 22:56:00,2157-11-25 18:00:00,,EW EMER.,P4645A,EMERGENCY ROOM,HOME HEALTH CARE,Other,?,MARRIED,WHITE,2157-11-18 17:38:00,2157-11-19 01:24:00,0
|
| 68 |
+
10023239,29295881,2137-06-19 17:35:00,2137-06-22 14:57:00,,EW EMER.,P44WVR,EMERGENCY ROOM,HOME,Other,ENGLISH,SINGLE,WHITE,2137-06-19 15:05:00,2137-06-19 19:09:00,0
|
| 69 |
+
10023239,21759936,2140-10-03 09:06:00,2140-10-08 15:28:00,,EW EMER.,P031HZ,TRANSFER FROM HOSPITAL,HOME,Other,ENGLISH,MARRIED,WHITE,2140-10-03 06:20:00,2140-10-03 11:04:00,0
|
| 70 |
+
10020944,29974575,2131-02-27 15:34:00,2131-03-13 17:01:00,,EW EMER.,P27588,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicare,ENGLISH,,UNKNOWN,2131-02-27 13:16:00,2131-02-27 16:40:00,0
|
| 71 |
+
10027602,28166872,2201-10-30 12:05:00,2201-11-20 14:45:00,,EW EMER.,P47SIK,EMERGENCY ROOM,REHAB,Other,ENGLISH,SINGLE,WHITE,2201-10-30 10:48:00,2201-10-30 12:25:00,0
|
| 72 |
+
10032725,25177949,2143-02-17 14:20:00,2143-03-16 17:15:00,,EW EMER.,P39043,EMERGENCY ROOM,CHRONIC/LONG TERM ACUTE CARE,Other,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2143-02-17 07:19:00,2143-02-17 15:18:00,0
|
| 73 |
+
10032725,20611640,2143-03-22 04:59:00,2143-03-25 13:00:00,,EW EMER.,P7554I,EMERGENCY ROOM,HOSPICE,Other,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2143-03-22 01:19:00,2143-03-22 06:42:00,0
|
| 74 |
+
10005348,25239799,2130-10-26 17:03:00,2130-11-02 16:00:00,,EW EMER.,P38RSS,PROCEDURE SITE,SKILLED NURSING FACILITY,Other,ENGLISH,MARRIED,WHITE,,,0
|
| 75 |
+
10037861,24540843,2117-03-14 16:34:00,2117-03-24 00:01:00,2117-03-24 23:08:00,EW EMER.,P01LRQ,EMERGENCY ROOM,DIED,Medicare,ENGLISH,MARRIED,UNKNOWN,2117-03-14 15:19:00,2117-03-14 17:53:00,1
|
| 76 |
+
10010471,29842315,2155-12-02 19:36:00,2155-12-07 15:30:00,2155-12-07 15:30:00,EW EMER.,P04X8Y,EMERGENCY ROOM,DIED,Medicare,ENGLISH,WIDOWED,WHITE,2155-12-02 16:00:00,2155-12-02 20:33:00,1
|
| 77 |
+
10005866,27167814,2148-03-10 16:16:00,2148-03-21 18:30:00,,EW EMER.,P28OI9,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicaid,ENGLISH,SINGLE,PORTUGUESE,2148-03-10 04:46:00,2148-03-10 11:27:00,0
|
| 78 |
+
10005866,26134779,2149-09-13 07:36:00,2149-09-19 18:00:00,,EW EMER.,P95QHH,EMERGENCY ROOM,HOME,Medicaid,ENGLISH,SINGLE,PORTUGUESE,2149-09-12 15:31:00,2149-09-13 09:02:00,0
|
| 79 |
+
10005866,26158160,2146-06-06 00:50:00,2146-06-09 16:45:00,,EW EMER.,P94RT6,EMERGENCY ROOM,HOME,Medicaid,ENGLISH,SINGLE,PORTUGUESE,2146-06-05 22:26:00,2146-06-06 01:45:00,0
|
| 80 |
+
10024043,24717014,2117-04-11 20:46:00,2117-04-16 18:55:00,,EW EMER.,P5487F,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2117-04-11 17:23:00,2117-04-11 22:05:00,0
|
| 81 |
+
10021487,28998349,2116-12-03 00:23:00,2116-12-28 13:19:00,,EW EMER.,P61T4I,EMERGENCY ROOM,HOME,Other,ENGLISH,MARRIED,WHITE,2116-12-02 22:57:00,2116-12-03 01:02:00,0
|
| 82 |
+
10021487,21928381,2117-12-03 17:07:00,2117-12-06 17:30:00,,EW EMER.,P96Y5O,PROCEDURE SITE,HOME,Other,ENGLISH,DIVORCED,WHITE,,,0
|
| 83 |
+
10021487,26321862,2117-01-28 00:19:00,2117-02-05 15:40:00,,EW EMER.,P82B0E,EMERGENCY ROOM,HOME,Other,ENGLISH,MARRIED,WHITE,2117-01-27 18:19:00,2117-01-28 01:23:00,0
|
| 84 |
+
10021487,27112038,2117-10-25 22:22:00,2117-10-29 14:40:00,,EW EMER.,P233F6,EMERGENCY ROOM,HOME,Other,ENGLISH,DIVORCED,WHITE,2117-10-25 15:49:00,2117-10-25 22:53:00,0
|
| 85 |
+
10015860,24698912,2192-05-12 07:42:00,2192-05-27 18:50:00,,EW EMER.,P03YMR,PHYSICIAN REFERRAL,SKILLED NURSING FACILITY,Other,ENGLISH,SINGLE,WHITE,2192-05-11 16:26:00,2192-05-12 09:31:00,0
|
| 86 |
+
10015860,28236161,2187-09-15 18:49:00,2187-09-19 14:50:00,,EW EMER.,P62A9I,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,2187-09-15 14:14:00,2187-09-15 20:49:00,0
|
| 87 |
+
10015860,20790339,2189-05-23 02:14:00,2189-05-25 14:45:00,,EW EMER.,P00P3O,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,2189-05-22 23:18:00,2189-05-23 03:38:00,0
|
| 88 |
+
10015860,25085565,2186-09-15 16:12:00,2186-09-29 18:05:00,,EW EMER.,P56SP9,EMERGENCY ROOM,REHAB,Other,ENGLISH,SINGLE,WHITE,2186-09-15 12:56:00,2186-09-15 17:15:00,0
|
| 89 |
+
10015860,20854119,2188-08-06 00:49:00,2188-08-12 17:49:00,,EW EMER.,P29CGZ,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,2188-08-05 20:36:00,2188-08-06 03:24:00,0
|
| 90 |
+
10018423,29366372,2167-05-03 21:24:00,2167-05-11 12:57:00,,EW EMER.,P204LI,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,MARRIED,WHITE,2167-05-03 15:18:00,2167-05-03 22:50:00,0
|
| 91 |
+
10007928,20338077,2129-04-05 22:56:00,2129-04-11 17:25:00,,EW EMER.,P825SO,EMERGENCY ROOM,HOME,Other,ENGLISH,DIVORCED,WHITE,2129-04-05 21:18:00,2129-04-06 00:25:00,0
|
| 92 |
+
10014078,25809882,2166-08-21 23:09:00,2166-08-26 14:48:00,,EW EMER.,P64JK6,EMERGENCY ROOM,HOME HEALTH CARE,Medicaid,ENGLISH,,UNABLE TO OBTAIN,2166-08-21 21:39:00,2166-08-22 00:36:00,0
|
| 93 |
+
10020740,25826145,2150-06-03 20:12:00,2150-06-07 15:05:00,,EW EMER.,P80QIV,PACU,SKILLED NURSING FACILITY,Other,ENGLISH,SINGLE,WHITE,,,0
|
| 94 |
+
10008454,20291550,2110-11-30 06:31:00,2110-12-10 15:53:00,,EW EMER.,P77BSD,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,2110-11-30 04:45:00,2110-11-30 08:03:00,0
|
| 95 |
+
10022281,29642388,2125-06-17 04:11:00,2125-06-19 15:25:00,,EW EMER.,P76K54,EMERGENCY ROOM,HOME,Other,ENGLISH,MARRIED,OTHER,2125-06-16 20:32:00,2125-06-17 05:14:00,0
|
| 96 |
+
10014354,24357615,2150-05-09 16:09:00,2150-05-10 15:59:00,,EW EMER.,P15PLY,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,2150-05-08 22:30:00,2150-05-09 19:09:00,0
|
| 97 |
+
10014354,22741225,2146-10-08 23:47:00,2146-10-12 18:20:00,,EW EMER.,P5487F,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,MARRIED,WHITE,2146-10-08 21:27:00,2146-10-09 01:08:00,0
|
| 98 |
+
10014354,26013492,2147-11-14 22:12:00,2147-11-16 15:00:00,,EW EMER.,P424IO,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,2147-11-14 18:22:00,2147-11-14 23:09:00,0
|
| 99 |
+
10014354,29757856,2150-04-10 02:40:00,2150-04-15 18:00:00,,EW EMER.,P08904,WALK-IN/SELF REFERRAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,2150-04-09 19:50:00,2150-04-10 03:46:00,0
|
| 100 |
+
10038933,25129047,2148-09-10 12:09:00,2148-09-23 12:18:00,,EW EMER.,P47KFL,EMERGENCY ROOM,REHAB,Other,ENGLISH,SINGLE,WHITE,2148-09-10 09:23:00,2148-09-10 13:19:00,0
|
| 101 |
+
10016150,29374560,2142-05-10 15:05:00,2142-05-15 19:49:00,,EW EMER.,P1037P,PROCEDURE SITE,REHAB,Medicare,ENGLISH,SINGLE,WHITE,,,0
|
| 102 |
+
10022041,28909879,2187-05-18 17:08:00,2187-05-23 17:20:00,,EW EMER.,P09IS0,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,ENGLISH,MARRIED,OTHER,2187-05-18 14:59:00,2187-05-18 18:39:00,0
|
| 103 |
+
10039708,20572787,2138-10-30 23:30:00,2138-11-06 23:30:00,,EW EMER.,P39SWK,EMERGENCY ROOM,AGAINST ADVICE,Other,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2138-10-30 17:27:00,2138-10-31 00:19:00,0
|
| 104 |
+
10039708,28258130,2140-01-23 16:19:00,2140-02-26 18:15:00,,EW EMER.,P44WVR,EMERGENCY ROOM,CHRONIC/LONG TERM ACUTE CARE,Other,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2140-01-23 12:35:00,2140-01-23 18:08:00,0
|
| 105 |
+
10000032,22841357,2180-06-26 18:27:00,2180-06-27 18:49:00,,EW EMER.,P09Q6Y,EMERGENCY ROOM,HOME,Medicaid,ENGLISH,WIDOWED,WHITE,2180-06-26 15:54:00,2180-06-26 21:31:00,0
|
| 106 |
+
10000032,25742920,2180-08-05 23:44:00,2180-08-07 17:50:00,,EW EMER.,P60CC5,EMERGENCY ROOM,HOSPICE,Medicaid,ENGLISH,WIDOWED,WHITE,2180-08-05 20:58:00,2180-08-06 01:44:00,0
|
| 107 |
+
10000032,29079034,2180-07-23 12:35:00,2180-07-25 17:55:00,,EW EMER.,P30KEH,EMERGENCY ROOM,HOME,Medicaid,ENGLISH,WIDOWED,WHITE,2180-07-23 05:54:00,2180-07-23 14:00:00,0
|
| 108 |
+
10026406,25260176,2129-01-03 15:55:00,2129-01-05 14:10:00,,EW EMER.,P51MA2,EMERGENCY ROOM,AGAINST ADVICE,Other,ENGLISH,DIVORCED,WHITE,2129-01-02 23:41:00,2129-01-03 18:33:00,0
|
| 109 |
+
10037928,22326517,2177-12-21 20:47:00,2177-12-23 17:45:00,,EW EMER.,P51MA2,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,?,WIDOWED,HISPANIC/LATINO - CUBAN,2177-12-21 16:49:00,2177-12-21 22:26:00,0
|
| 110 |
+
10037928,22490490,2177-07-14 16:55:00,2177-07-24 13:33:00,,EW EMER.,P44WVR,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,?,WIDOWED,HISPANIC/LATINO - CUBAN,2177-07-14 14:52:00,2177-07-14 20:38:00,0
|
| 111 |
+
10037928,20192635,2177-09-04 12:05:00,2177-09-07 16:10:00,,EW EMER.,P072C5,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,?,WIDOWED,HISPANIC/LATINO - CUBAN,2177-09-04 06:29:00,2177-09-04 14:44:00,0
|
| 112 |
+
10037928,29802992,2179-07-25 00:06:00,2179-07-28 15:54:00,,EW EMER.,P450WM,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,?,WIDOWED,HISPANIC/LATINO - CUBAN,2179-07-24 18:21:00,2179-07-25 01:17:00,0
|
| 113 |
+
10037928,23721604,2179-03-27 18:27:00,2179-04-04 19:40:00,,EW EMER.,P80GYA,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,?,WIDOWED,HISPANIC/LATINO - CUBAN,2179-03-27 14:15:00,2179-03-27 19:48:00,0
|
| 114 |
+
10037928,24225421,2178-09-28 23:05:00,2178-10-02 17:13:00,,EW EMER.,P30AMB,EMERGENCY ROOM,HOME,Medicare,?,WIDOWED,HISPANIC/LATINO - CUBAN,2178-09-28 20:29:00,2178-09-29 00:43:00,0
|
| 115 |
+
10037928,24656677,2178-12-21 05:30:00,2178-12-26 18:35:00,,EW EMER.,P30SZF,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,?,WIDOWED,HISPANIC/LATINO - CUBAN,2178-12-21 03:17:00,2178-12-21 08:27:00,0
|
| 116 |
+
10029484,20764029,2160-11-08 04:16:00,2160-11-11 11:40:00,,EW EMER.,P38TI6,EMERGENCY ROOM,HOME,Other,ENGLISH,SINGLE,WHITE,2160-11-07 19:15:00,2160-11-08 05:23:00,0
|
| 117 |
+
10027445,26275841,2142-07-31 00:32:00,2142-08-09 17:30:00,,EW EMER.,P3529J,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,WIDOWED,WHITE,2142-07-30 23:33:00,2142-07-31 01:41:00,0
|
| 118 |
+
10012853,22539296,2176-06-06 18:09:00,2176-06-08 18:30:00,,EW EMER.,P172D4,EMERGENCY ROOM,HOME,Medicare,ENGLISH,WIDOWED,BLACK/AFRICAN AMERICAN,2176-06-06 13:33:00,2176-06-06 20:18:00,0
|
| 119 |
+
10012853,26369609,2175-04-05 15:36:00,2175-04-10 16:55:00,,EW EMER.,P623U2,EMERGENCY ROOM,HOME,Other,ENGLISH,WIDOWED,BLACK/AFRICAN AMERICAN,2175-04-05 06:22:00,2175-04-05 17:10:00,0
|
| 120 |
+
10012853,27882036,2176-11-25 21:28:00,2176-12-03 15:24:00,,EW EMER.,P450WM,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicare,ENGLISH,WIDOWED,BLACK/AFRICAN AMERICAN,2176-11-25 18:34:00,2176-11-25 23:51:00,0
|
| 121 |
+
10019003,29279905,2153-03-27 23:25:00,2153-04-07 16:20:00,,EW EMER.,P60F78,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,WIDOWED,WHITE,2153-03-27 21:28:00,2153-03-28 02:21:00,0
|
| 122 |
+
10019003,21457723,2155-07-10 17:48:00,2155-07-18 16:59:00,,EW EMER.,P44WVR,TRANSFER FROM HOSPITAL,HOME,Other,ENGLISH,WIDOWED,WHITE,2155-07-10 12:46:00,2155-07-10 19:03:00,0
|
| 123 |
+
10019003,27525946,2153-04-12 19:07:00,2153-04-20 17:09:00,,EW EMER.,P56B4N,EMERGENCY ROOM,HOME,Other,ENGLISH,WIDOWED,WHITE,2153-04-12 13:03:00,2153-04-12 21:40:00,0
|
| 124 |
+
10019003,26703331,2155-06-10 23:09:00,2155-06-15 16:30:00,,EW EMER.,P203BW,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Other,ENGLISH,WIDOWED,WHITE,2155-06-10 20:37:00,2155-06-11 01:53:00,0
|
| 125 |
+
10019777,27738145,2187-02-10 18:57:00,2187-02-27 13:22:00,,EW EMER.,P08BV8,EMERGENCY ROOM,HOSPICE,Other,ENGLISH,DIVORCED,WHITE,2187-02-10 15:11:00,2187-02-10 20:34:00,0
|
| 126 |
+
10018501,28479513,2141-07-30 22:34:00,2141-08-05 18:06:00,,EW EMER.,P99698,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicare,ENGLISH,,WHITE,2141-07-30 18:53:00,2141-07-31 00:01:00,0
|
| 127 |
+
10004422,21255400,2111-01-15 14:55:00,2111-01-25 15:00:00,,EW EMER.,P1037P,PROCEDURE SITE,HOME HEALTH CARE,Medicare,ENGLISH,WIDOWED,WHITE,,,0
|
| 128 |
+
10003400,27296885,2136-12-31 21:40:00,2137-01-03 17:05:00,,EW EMER.,P14622,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicare,ENGLISH,MARRIED,BLACK/AFRICAN AMERICAN,2136-12-31 13:41:00,2137-01-01 00:35:00,0
|
| 129 |
+
10003400,29483621,2136-11-04 20:43:00,2136-11-12 17:40:00,,EW EMER.,P37QNF,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicare,ENGLISH,MARRIED,BLACK/AFRICAN AMERICAN,2136-11-04 16:08:00,2136-11-04 22:12:00,0
|
| 130 |
+
10003400,22390287,2137-02-07 19:42:00,2137-02-18 18:30:00,,EW EMER.,P42DF5,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicare,ENGLISH,MARRIED,BLACK/AFRICAN AMERICAN,2137-02-07 13:06:00,2137-02-07 21:44:00,0
|
| 131 |
+
10003400,26090619,2134-06-06 02:25:00,2134-06-07 15:05:00,,EW EMER.,P77SO2,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,ENGLISH,MARRIED,BLACK/AFRICAN AMERICAN,2134-06-05 21:42:00,2134-06-06 03:44:00,0
|
| 132 |
+
10003400,26467376,2136-12-09 14:44:00,2136-12-15 16:00:00,,EW EMER.,P14622,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicare,ENGLISH,MARRIED,BLACK/AFRICAN AMERICAN,2136-12-09 13:16:00,2136-12-09 18:45:00,0
|
| 133 |
+
10023117,28872262,2171-11-07 21:37:00,2171-11-22 15:30:00,,EW EMER.,P89ZCW,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,ENGLISH,WIDOWED,WHITE,2171-11-07 17:40:00,2171-11-07 22:50:00,0
|
| 134 |
+
10023117,29858644,2173-04-16 22:15:00,2173-04-20 16:40:00,,EW EMER.,P23URY,EMERGENCY ROOM,HOME,Medicare,ENGLISH,WIDOWED,WHITE,2173-04-16 17:00:00,2173-04-16 23:18:00,0
|
| 135 |
+
10017492,27417763,2116-06-26 18:25:00,2116-07-05 08:05:00,2116-07-05 08:05:00,EW EMER.,P3417E,EMERGENCY ROOM,DIED,Medicaid,?,SINGLE,PATIENT DECLINED TO ANSWER,2116-06-26 14:29:00,2116-06-26 21:46:00,1
|
| 136 |
+
10017492,27672872,2114-03-19 20:05:00,2114-04-02 18:30:00,,EW EMER.,P68RKH,EMERGENCY ROOM,HOME HEALTH CARE,Other,?,SINGLE,PATIENT DECLINED TO ANSWER,2114-03-19 15:57:00,2114-03-19 21:38:00,0
|
| 137 |
+
10038999,29026789,2132-05-17 23:32:00,2132-05-23 13:01:00,,EW EMER.,P64JOR,TRANSFER FROM HOSPITAL,REHAB,Medicare,ENGLISH,SINGLE,WHITE,2132-05-17 19:56:00,2132-05-18 01:36:00,0
|
| 138 |
+
10040025,25172300,2145-07-03 23:46:00,2145-07-05 13:57:00,,EW EMER.,P73Y1N,EMERGENCY ROOM,HOME,Other,ENGLISH,DIVORCED,WHITE,2145-07-03 20:02:00,2145-07-04 10:58:00,0
|
| 139 |
+
10040025,25384176,2145-10-19 23:48:00,2145-10-24 14:20:00,,EW EMER.,P1904G,EMERGENCY ROOM,HOME,Other,ENGLISH,DIVORCED,WHITE,2145-10-19 19:23:00,2145-10-20 00:54:00,0
|
| 140 |
+
10040025,27876215,2147-11-09 08:02:00,2147-11-14 18:53:00,,EW EMER.,P059D0,EMERGENCY ROOM,SKILLED NURSING FACILITY,Other,ENGLISH,DIVORCED,WHITE,2147-11-09 04:17:00,2147-11-09 10:56:00,0
|
| 141 |
+
10040025,27553957,2145-07-24 19:00:00,2145-07-31 14:12:00,,EW EMER.,P38RSS,EMERGENCY ROOM,HOME,Other,ENGLISH,DIVORCED,WHITE,2145-07-24 11:30:00,2145-07-24 20:32:00,0
|
| 142 |
+
10009049,22995465,2174-05-26 08:21:00,2174-05-31 14:15:00,,EW EMER.,P3529J,EMERGENCY ROOM,HOME,Other,ENGLISH,MARRIED,WHITE,2174-05-26 04:20:00,2174-05-26 09:18:00,0
|
| 143 |
+
10016742,29281842,2178-07-03 21:13:00,2178-07-08 20:20:00,,EW EMER.,P031HZ,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicaid,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2178-07-03 17:39:00,2178-07-03 22:45:00,0
|
| 144 |
+
10004457,28723315,2141-08-12 16:02:00,2141-08-13 17:47:00,,EW EMER.,P46WR5,EMERGENCY ROOM,HOME,Medicare,ENGLISH,SINGLE,WHITE,2141-08-12 12:08:00,2141-08-12 17:20:00,0
|
| 145 |
+
10029291,22205327,2123-02-20 01:59:00,2123-03-10 15:30:00,,EW EMER.,P44UQI,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,ENGLISH,DIVORCED,WHITE,2123-02-19 23:57:00,2123-02-20 04:13:00,0
|
| 146 |
+
10004720,22081550,2186-11-12 18:01:00,2186-11-17 18:30:00,2186-11-17 18:30:00,EW EMER.,P3529J,INFORMATION NOT AVAILABLE,DIED,Medicare,ENGLISH,SINGLE,WHITE,2186-11-12 16:09:00,2186-11-12 19:55:00,1
|
| 147 |
+
10019568,28710730,2120-01-30 21:07:00,2120-02-02 15:40:00,,EW EMER.,P80LEI,EMERGENCY ROOM,HOME,Medicare,ENGLISH,SINGLE,WHITE,2120-01-30 19:44:00,2120-01-30 22:51:00,0
|
| 148 |
+
10002930,25922998,2198-04-17 19:38:00,2198-04-22 16:02:00,,EW EMER.,P30KEH,EMERGENCY ROOM,PSYCH FACILITY,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2198-04-17 11:42:00,2198-04-17 21:24:00,0
|
| 149 |
+
10002930,25696644,2196-04-14 12:25:00,2196-04-17 15:28:00,,EW EMER.,P43A1R,EMERGENCY ROOM,PSYCH FACILITY,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2196-04-14 05:55:00,2196-04-14 13:40:00,0
|
| 150 |
+
10007795,22051341,2136-09-22 20:51:00,2136-09-24 14:20:00,,EW EMER.,P99LA7,EMERGENCY ROOM,HOME,Medicare,ENGLISH,SINGLE,WHITE,2136-09-22 17:07:00,2136-09-22 22:30:00,0
|
| 151 |
+
10007795,20285402,2136-08-04 22:16:00,2136-08-11 19:20:00,,EW EMER.,P74QAJ,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,ENGLISH,SINGLE,WHITE,2136-08-04 16:26:00,2136-08-05 00:17:00,0
|
| 152 |
+
10010867,22429197,2147-12-30 08:40:00,2148-01-11 17:55:00,,EW EMER.,P3417E,EMERGENCY ROOM,REHAB,Other,ENGLISH,SINGLE,WHITE - BRAZILIAN,2147-12-30 06:45:00,2147-12-30 09:33:00,0
|
| 153 |
+
10025463,24470193,2137-10-08 21:20:00,2137-10-09 15:30:00,2137-10-09 15:30:00,EW EMER.,P01LRQ,EMERGENCY ROOM,DIED,Other,ENGLISH,MARRIED,WHITE,2137-10-08 18:16:00,2137-10-08 20:44:00,1
|
| 154 |
+
10002428,28662225,2156-04-12 14:16:00,2156-04-29 16:26:00,,EW EMER.,P64TOH,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicare,ENGLISH,WIDOWED,WHITE,2156-04-12 09:56:00,2156-04-12 17:11:00,0
|
| 155 |
+
10002428,20321825,2156-04-30 20:35:00,2156-05-03 16:36:00,,EW EMER.,P825SO,EMERGENCY ROOM,CHRONIC/LONG TERM ACUTE CARE,Medicare,ENGLISH,WIDOWED,WHITE,2156-04-30 18:30:00,2156-04-30 21:53:00,0
|
| 156 |
+
10002428,23473524,2156-05-11 14:49:00,2156-05-22 14:16:00,,EW EMER.,P3529J,EMERGENCY ROOM,CHRONIC/LONG TERM ACUTE CARE,Medicare,ENGLISH,WIDOWED,WHITE,2156-05-11 11:29:00,2156-05-11 16:53:00,0
|
| 157 |
+
10007818,22987108,2146-06-10 16:37:00,2146-07-12 00:00:00,2146-07-12 20:50:00,DIRECT EMER.,P48GIG,PHYSICIAN REFERRAL,DIED,Medicare,ENGLISH,MARRIED,WHITE,,,1
|
| 158 |
+
10004235,22187210,2196-06-20 21:11:00,2196-06-22 13:30:00,,DIRECT EMER.,P98TAU,PHYSICIAN REFERRAL,HOME HEALTH CARE,Medicaid,ENGLISH,SINGLE,BLACK/CAPE VERDEAN,,,0
|
| 159 |
+
10001217,27703517,2157-12-18 16:58:00,2157-12-24 14:55:00,,DIRECT EMER.,P99698,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,?,MARRIED,WHITE,,,0
|
| 160 |
+
10021487,27660781,2117-03-03 15:59:00,2117-03-27 16:40:00,,DIRECT EMER.,P82B0E,CLINIC REFERRAL,HOME,Other,ENGLISH,DIVORCED,WHITE,,,0
|
| 161 |
+
10015860,28613200,2188-03-29 14:14:00,2188-04-02 16:30:00,,DIRECT EMER.,P62A9I,CLINIC REFERRAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,,,0
|
| 162 |
+
10031757,28477280,2137-10-12 22:43:00,2137-10-24 17:30:00,,DIRECT EMER.,P94RT6,CLINIC REFERRAL,HOSPICE,Other,ENGLISH,DIVORCED,WHITE,,,0
|
| 163 |
+
10014354,27562275,2148-07-18 02:31:00,2148-07-20 17:47:00,,DIRECT EMER.,P90LIK,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,2148-07-17 20:36:00,2148-07-18 04:46:00,0
|
| 164 |
+
10035631,27496788,2113-08-26 17:07:00,2113-08-29 15:18:00,,DIRECT EMER.,P45GUA,CLINIC REFERRAL,HOME,Other,ENGLISH,MARRIED,WHITE,,,0
|
| 165 |
+
10035631,29462354,2112-09-17 19:13:00,2112-10-17 01:41:00,,DIRECT EMER.,P45GUA,PHYSICIAN REFERRAL,HOME,Other,ENGLISH,MARRIED,UNKNOWN,2112-09-17 18:46:00,2112-09-17 19:50:00,0
|
| 166 |
+
10035631,22732862,2112-11-10 15:55:00,2112-11-20 16:20:00,,DIRECT EMER.,P11CH5,CLINIC REFERRAL,HOME,Other,ENGLISH,MARRIED,UNKNOWN,,,0
|
| 167 |
+
10035631,21599196,2116-02-13 11:17:00,2116-02-15 17:09:00,,DIRECT EMER.,P15Q8N,PHYSICIAN REFERRAL,HOME,Other,ENGLISH,MARRIED,WHITE,,,0
|
| 168 |
+
10019003,26529390,2155-05-17 00:02:00,2155-05-19 18:27:00,,DIRECT EMER.,P73PF1,PHYSICIAN REFERRAL,HOME,Other,ENGLISH,WIDOWED,WHITE,2155-05-17 21:03:00,2155-05-18 03:03:00,0
|
| 169 |
+
10023117,28887654,2174-12-16 13:25:00,2174-12-20 10:27:00,,DIRECT EMER.,P94CCF,PHYSICIAN REFERRAL,HOME,Medicare,ENGLISH,WIDOWED,WHITE,,,0
|
| 170 |
+
10002930,23688993,2193-08-05 11:45:00,2193-08-11 09:25:00,,DIRECT EMER.,P356OC,PHYSICIAN REFERRAL,HOME,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2193-08-05 05:04:00,2193-08-05 12:00:00,0
|
| 171 |
+
10025463,27327816,2136-10-31 07:15:00,2136-11-02 16:50:00,,DIRECT EMER.,P38W5P,PHYSICIAN REFERRAL,HOME,Other,ENGLISH,MARRIED,WHITE,,,0
|
| 172 |
+
10023239,28984460,2140-10-22 22:04:00,2140-10-23 17:01:00,,EU OBSERVATION,P76VMW,PHYSICIAN REFERRAL,,Other,ENGLISH,MARRIED,WHITE,2140-10-22 18:05:00,2140-10-23 17:01:00,0
|
| 173 |
+
10024043,25561728,2117-02-03 20:10:00,2117-02-04 11:53:00,,EU OBSERVATION,P19QFH,EMERGENCY ROOM,,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2117-02-03 17:13:00,2117-02-04 11:53:00,0
|
| 174 |
+
10015860,27670224,2187-12-14 15:48:00,2187-12-16 14:38:00,,EU OBSERVATION,P25XDB,EMERGENCY ROOM,,Other,ENGLISH,SINGLE,WHITE,2187-12-14 12:49:00,2187-12-14 17:48:00,0
|
| 175 |
+
10015860,22607171,2190-05-15 08:16:00,2190-05-16 15:44:00,,EU OBSERVATION,P73Y1N,EMERGENCY ROOM,,Other,ENGLISH,SINGLE,WHITE,2190-05-14 17:11:00,2190-05-15 10:00:00,0
|
| 176 |
+
10015860,22416954,2193-05-03 22:45:00,2193-05-05 02:13:00,,EU OBSERVATION,P21E4S,TRANSFER FROM HOSPITAL,,Other,ENGLISH,SINGLE,WHITE,2193-05-03 19:12:00,2193-05-05 02:13:00,0
|
| 177 |
+
10020740,23143086,2151-01-15 15:25:00,2151-01-16 02:38:00,,EU OBSERVATION,P607HY,EMERGENCY ROOM,,Other,ENGLISH,SINGLE,WHITE,2151-01-15 11:47:00,2151-01-16 02:38:00,0
|
| 178 |
+
10020740,23199774,2150-09-15 14:09:00,2150-09-15 17:09:00,,EU OBSERVATION,P30KYN,EMERGENCY ROOM,,Other,ENGLISH,SINGLE,WHITE,2150-09-15 09:31:00,2150-09-15 17:09:00,0
|
| 179 |
+
10014354,24096336,2149-06-19 22:54:00,2149-06-20 13:48:00,,EU OBSERVATION,P83K3D,PHYSICIAN REFERRAL,,Other,ENGLISH,SINGLE,WHITE,2149-06-19 17:01:00,2149-06-20 13:48:00,0
|
| 180 |
+
10014354,26722126,2146-11-09 01:53:00,2146-11-09 13:13:00,,EU OBSERVATION,P187JB,EMERGENCY ROOM,,Other,ENGLISH,MARRIED,WHITE,2146-11-08 21:24:00,2146-11-09 13:13:00,0
|
| 181 |
+
10014354,20900955,2149-03-04 23:14:00,2149-03-05 14:59:00,,EU OBSERVATION,P63AD6,WALK-IN/SELF REFERRAL,,Other,ENGLISH,SINGLE,WHITE,2149-03-04 20:24:00,2149-03-05 14:59:00,0
|
| 182 |
+
10014354,22502504,2147-09-12 05:06:00,2147-09-12 19:00:00,,EU OBSERVATION,P04X8Y,EMERGENCY ROOM,,Other,ENGLISH,SINGLE,WHITE,2147-09-12 02:01:00,2147-09-12 06:37:00,0
|
| 183 |
+
10014354,26173805,2149-09-17 22:54:00,2149-09-18 10:45:00,,EU OBSERVATION,P57NY9,WALK-IN/SELF REFERRAL,,Other,ENGLISH,SINGLE,WHITE,2149-09-17 09:08:00,2149-09-17 23:55:00,0
|
| 184 |
+
10014354,27494880,2147-06-04 00:42:00,2147-06-04 15:00:00,,EU OBSERVATION,P79SJ2,EMERGENCY ROOM,,Other,ENGLISH,SINGLE,WHITE,2147-06-03 22:39:00,2147-06-04 09:54:00,0
|
| 185 |
+
10039708,27504040,2142-07-06 09:08:00,2142-07-07 16:40:00,,EU OBSERVATION,P94RT6,PHYSICIAN REFERRAL,,Other,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2142-07-06 07:21:00,2142-07-06 08:27:00,0
|
| 186 |
+
10026406,25166559,2133-03-01 19:30:00,2133-03-04 17:05:00,,EU OBSERVATION,P42K8Q,WALK-IN/SELF REFERRAL,,Other,ENGLISH,DIVORCED,WHITE,2133-03-01 16:42:00,2133-03-04 17:05:00,0
|
| 187 |
+
10037928,22228639,2183-08-04 04:04:00,2183-08-04 16:07:00,,EU OBSERVATION,P850UN,PHYSICIAN REFERRAL,,Medicare,?,WIDOWED,HISPANIC/LATINO - CUBAN,2183-08-03 19:27:00,2183-08-04 16:07:00,0
|
| 188 |
+
10037928,28543425,2175-10-26 01:31:00,2175-10-26 12:48:00,,EU OBSERVATION,P40IUG,EMERGENCY ROOM,,Medicare,?,SINGLE,HISPANIC OR LATINO,2175-10-25 19:55:00,2175-10-26 12:48:00,0
|
| 189 |
+
10012853,22896692,2176-08-11 15:17:00,2176-08-11 17:35:00,,EU OBSERVATION,P76VMW,EMERGENCY ROOM,,Medicare,ENGLISH,WIDOWED,BLACK/AFRICAN AMERICAN,2176-08-11 08:36:00,2176-08-11 17:35:00,0
|
| 190 |
+
10039997,21390688,2135-11-07 02:42:00,2135-11-07 06:27:00,,EU OBSERVATION,P03N1K,EMERGENCY ROOM,,Medicare,ENGLISH,WIDOWED,BLACK/AFRICAN AMERICAN,2135-11-06 21:44:00,2135-11-07 06:27:00,0
|
| 191 |
+
10020306,26332470,2133-05-05 05:43:00,2133-05-05 15:37:00,,EU OBSERVATION,P45LON,CLINIC REFERRAL,,Medicare,ENGLISH,WIDOWED,BLACK/AFRICAN AMERICAN,2133-05-04 20:52:00,2133-05-05 15:37:00,0
|
| 192 |
+
10002930,25282382,2197-04-17 02:01:00,2197-04-17 09:48:00,,EU OBSERVATION,P33NK4,EMERGENCY ROOM,,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2197-04-16 22:57:00,2197-04-17 09:48:00,0
|
| 193 |
+
10002930,28697806,2200-06-05 05:43:00,2200-06-05 10:26:00,,EU OBSERVATION,P68U3G,PHYSICIAN REFERRAL,,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2200-06-04 16:38:00,2200-06-05 10:26:00,0
|
| 194 |
+
10002930,20846853,2201-02-12 16:58:00,2201-02-13 11:11:00,,EU OBSERVATION,P2358X,PHYSICIAN REFERRAL,,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2201-02-12 15:11:00,2201-02-13 11:11:00,0
|
| 195 |
+
10002930,22380825,2193-08-05 06:18:00,2193-08-05 11:44:00,,EU OBSERVATION,P38XXV,EMERGENCY ROOM,,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2193-08-05 05:04:00,2193-08-05 12:00:00,0
|
| 196 |
+
10002930,23720373,2199-02-17 21:45:00,2199-02-19 13:38:00,,EU OBSERVATION,P59HPG,EMERGENCY ROOM,,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2199-02-17 14:32:00,2199-02-19 13:38:00,0
|
| 197 |
+
10002930,20282368,2201-03-23 19:15:00,2201-03-26 14:24:00,,EU OBSERVATION,P850UN,PHYSICIAN REFERRAL,,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2201-03-23 12:04:00,2201-03-26 14:24:00,0
|
| 198 |
+
10002930,28477649,2197-04-07 06:56:00,2197-04-08 19:37:00,,EU OBSERVATION,P11RCJ,EMERGENCY ROOM,,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2197-04-07 03:20:00,2197-04-08 20:14:00,0
|
| 199 |
+
10002428,28676446,2157-07-16 04:09:00,2157-07-18 16:49:00,,EU OBSERVATION,P08S8F,EMERGENCY ROOM,,Medicare,ENGLISH,WIDOWED,WHITE,2157-07-16 01:50:00,2157-07-16 09:51:00,0
|
| 200 |
+
10002428,25797028,2155-07-14 19:15:00,2155-07-15 18:37:00,,EU OBSERVATION,P64TOH,EMERGENCY ROOM,,Medicare,ENGLISH,WIDOWED,WHITE,2155-07-14 16:58:00,2155-07-14 20:04:00,0
|
| 201 |
+
10002428,26549334,2160-07-15 23:37:00,2160-07-16 18:49:00,,EU OBSERVATION,P607HY,EMERGENCY ROOM,,Medicare,ENGLISH,WIDOWED,WHITE,2160-07-15 17:34:00,2160-07-16 18:49:00,0
|
| 202 |
+
10018328,26706939,2154-02-05 21:58:00,2154-02-09 15:15:00,,OBSERVATION ADMIT,P233F6,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Other,ENGLISH,DIVORCED,WHITE,2154-02-05 17:09:00,2154-02-05 22:54:00,0
|
| 203 |
+
10005817,28661809,2135-01-03 21:54:00,2135-01-19 18:36:00,2135-01-19 18:36:00,OBSERVATION ADMIT,P7554I,TRANSFER FROM HOSPITAL,DIED,Medicare,ENGLISH,MARRIED,WHITE,,,1
|
| 204 |
+
10019385,20611796,2180-03-04 01:16:00,2180-03-06 18:32:00,,OBSERVATION ADMIT,P95P90,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,MARRIED,WHITE,2180-03-03 20:26:00,2180-03-04 02:24:00,0
|
| 205 |
+
10020187,24104168,2169-01-15 04:04:00,2169-01-24 17:20:00,,OBSERVATION ADMIT,P898NM,EMERGENCY ROOM,HOME HEALTH CARE,Other,?,MARRIED,HISPANIC/LATINO - SALVADORAN,2169-01-14 23:26:00,2169-01-15 04:56:00,0
|
| 206 |
+
10010471,21322534,2155-05-08 17:05:00,2155-05-10 18:55:00,,OBSERVATION ADMIT,P89T1L,EMERGENCY ROOM,HOME,Medicare,ENGLISH,WIDOWED,WHITE,2155-05-08 13:48:00,2155-05-08 18:16:00,0
|
| 207 |
+
10005866,22589518,2149-02-11 21:49:00,2149-02-14 16:45:00,,OBSERVATION ADMIT,P874LG,EMERGENCY ROOM,HOME,Medicaid,ENGLISH,SINGLE,PORTUGUESE,2149-02-11 08:52:00,2149-02-11 23:09:00,0
|
| 208 |
+
10005866,21636229,2149-09-20 14:30:00,2149-09-26 15:05:00,,OBSERVATION ADMIT,P96Y5O,EMERGENCY ROOM,HOME,Medicaid,ENGLISH,SINGLE,PORTUGUESE,2149-09-20 05:50:00,2149-09-20 15:53:00,0
|
| 209 |
+
10005866,23514107,2149-06-20 19:27:00,2149-06-25 15:55:00,,OBSERVATION ADMIT,P28OI9,EMERGENCY ROOM,HOME,Medicaid,ENGLISH,SINGLE,PORTUGUESE,2149-06-20 10:20:00,2149-06-20 20:59:00,0
|
| 210 |
+
10005866,20364112,2149-10-01 18:56:00,2149-10-25 18:50:00,,OBSERVATION ADMIT,P94RT6,PHYSICIAN REFERRAL,SKILLED NURSING FACILITY,Medicaid,ENGLISH,SINGLE,PORTUGUESE,2149-10-01 02:07:00,2149-10-01 15:59:00,0
|
| 211 |
+
10015860,25103777,2192-07-31 16:05:00,2192-08-06 16:37:00,,OBSERVATION ADMIT,P104SU,TRANSFER FROM SKILLED NURSING FACILITY,SKILLED NURSING FACILITY,Other,ENGLISH,SINGLE,WHITE,2192-07-31 11:00:00,2192-07-31 17:10:00,0
|
| 212 |
+
10015860,22413744,2191-01-15 01:55:00,2191-01-30 17:09:00,,OBSERVATION ADMIT,P172D4,EMERGENCY ROOM,SKILLED NURSING FACILITY,Other,ENGLISH,SINGLE,WHITE,2191-01-14 21:18:00,2191-01-15 03:20:00,0
|
| 213 |
+
10015860,28196804,2193-11-23 19:15:00,2193-11-27 21:58:00,,OBSERVATION ADMIT,P54UVQ,WALK-IN/SELF REFERRAL,SKILLED NURSING FACILITY,Other,ENGLISH,SINGLE,WHITE,2193-11-23 12:38:00,2193-11-23 20:59:00,0
|
| 214 |
+
10014354,22508257,2148-05-10 23:29:00,2148-05-20 14:30:00,,OBSERVATION ADMIT,P57B0F,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,2148-05-10 20:25:00,2148-05-11 01:22:00,0
|
| 215 |
+
10014354,29600294,2148-08-14 22:57:00,2148-08-18 21:12:00,,OBSERVATION ADMIT,P723L9,PHYSICIAN REFERRAL,AGAINST ADVICE,Other,ENGLISH,SINGLE,WHITE,2148-08-14 16:32:00,2148-08-15 00:27:00,0
|
| 216 |
+
10014354,26228185,2150-04-30 20:19:00,2150-05-07 14:10:00,,OBSERVATION ADMIT,P17YHV,TRANSFER FROM HOSPITAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,2150-04-30 14:26:00,2150-04-30 21:54:00,0
|
| 217 |
+
10014354,24980601,2150-02-04 20:12:00,2150-02-08 14:10:00,,OBSERVATION ADMIT,P42VJP,PHYSICIAN REFERRAL,AGAINST ADVICE,Other,ENGLISH,SINGLE,WHITE,2150-02-04 14:50:00,2150-02-04 22:44:00,0
|
| 218 |
+
10014354,26486158,2148-08-22 15:18:00,2148-09-08 12:00:00,,OBSERVATION ADMIT,P17YHV,CLINIC REFERRAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,,,0
|
| 219 |
+
10014354,29780751,2147-11-26 00:39:00,2147-11-30 16:54:00,,OBSERVATION ADMIT,P21X87,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,2147-11-25 19:39:00,2147-11-26 01:30:00,0
|
| 220 |
+
10014354,23132022,2148-06-24 15:22:00,2148-06-28 13:54:00,,OBSERVATION ADMIT,P259GB,PHYSICIAN REFERRAL,HOME,Other,ENGLISH,SINGLE,WHITE,2148-06-24 09:22:00,2148-06-24 16:12:00,0
|
| 221 |
+
10005909,20199380,2144-10-28 23:20:00,2144-11-02 15:23:00,,OBSERVATION ADMIT,P43BTJ,EMERGENCY ROOM,HOME,Other,ENGLISH,MARRIED,WHITE,2144-10-28 18:29:00,2144-10-29 00:10:00,0
|
| 222 |
+
10039708,26793610,2140-09-25 04:17:00,2140-09-26 17:40:00,,OBSERVATION ADMIT,P91LM4,EMERGENCY ROOM,HOME,Other,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2140-09-24 21:17:00,2140-09-25 05:57:00,0
|
| 223 |
+
10039708,29488258,2144-01-19 12:07:00,2144-01-21 21:20:00,,OBSERVATION ADMIT,P8785Z,WALK-IN/SELF REFERRAL,HOME,Other,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2144-01-18 11:53:00,2144-01-19 13:59:00,0
|
| 224 |
+
10039708,24928679,2143-09-19 18:36:00,2143-09-22 23:00:00,,OBSERVATION ADMIT,P8785Z,CLINIC REFERRAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2143-09-19 10:57:00,2143-09-19 20:57:00,0
|
| 225 |
+
10039708,23819016,2140-06-18 00:22:00,2140-06-22 17:40:00,,OBSERVATION ADMIT,P48KFD,EMERGENCY ROOM,HOME,Other,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2140-06-17 17:47:00,2140-06-18 01:41:00,0
|
| 226 |
+
10039708,20093566,2143-09-26 18:24:00,2143-09-30 20:00:00,,OBSERVATION ADMIT,P04ZFH,CLINIC REFERRAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2143-09-26 08:16:00,2143-09-26 19:52:00,0
|
| 227 |
+
10037928,24885579,2182-04-29 04:29:00,2182-05-03 17:20:00,,OBSERVATION ADMIT,P3417E,WALK-IN/SELF REFERRAL,HOME,Medicare,?,WIDOWED,HISPANIC/LATINO - CUBAN,2182-04-28 17:25:00,2182-04-29 07:49:00,0
|
| 228 |
+
10035631,21476294,2115-11-08 13:54:00,2115-12-08 17:31:00,,OBSERVATION ADMIT,P45GUA,EMERGENCY ROOM,HOME,Other,ENGLISH,MARRIED,WHITE,2115-11-08 12:02:00,2115-11-08 15:43:00,0
|
| 229 |
+
10035631,29276678,2116-02-27 20:55:00,2116-03-12 07:45:00,2116-03-12 07:45:00,OBSERVATION ADMIT,P17YHV,EMERGENCY ROOM,DIED,Other,ENGLISH,MARRIED,WHITE,2116-02-27 15:33:00,2116-02-27 22:03:00,1
|
| 230 |
+
10015931,24420677,2176-12-16 23:31:00,2176-12-31 17:35:00,,OBSERVATION ADMIT,P49NLZ,EMERGENCY ROOM,HOME HEALTH CARE,Medicare,ENGLISH,MARRIED,WHITE,2176-12-16 18:24:00,2176-12-17 01:07:00,0
|
| 231 |
+
10015931,28157142,2176-11-14 18:02:00,2176-11-27 13:30:00,,OBSERVATION ADMIT,P20N5X,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicare,ENGLISH,MARRIED,WHITE,2176-11-14 02:27:00,2176-11-14 19:51:00,0
|
| 232 |
+
10019003,25508812,2155-05-22 21:46:00,2155-05-30 03:30:00,,OBSERVATION ADMIT,P88A32,PHYSICIAN REFERRAL,HOME,Other,ENGLISH,WIDOWED,WHITE,,,0
|
| 233 |
+
10039997,22484749,2137-03-15 22:08:00,2137-03-18 16:34:00,,OBSERVATION ADMIT,P70N8P,PHYSICIAN REFERRAL,REHAB,Medicare,ENGLISH,WIDOWED,BLACK/AFRICAN AMERICAN,2137-03-15 15:27:00,2137-03-16 00:11:00,0
|
| 234 |
+
10023117,21607814,2175-07-06 15:57:00,2175-07-20 00:00:00,2175-07-20 22:50:00,OBSERVATION ADMIT,P49NLZ,EMERGENCY ROOM,DIED,Medicare,ENGLISH,WIDOWED,WHITE,2175-07-06 14:02:00,2175-07-06 17:41:00,1
|
| 235 |
+
10023117,21133938,2175-03-20 23:29:00,2175-03-29 16:00:00,,OBSERVATION ADMIT,P66Z67,TRANSFER FROM HOSPITAL,HOME,Medicare,ENGLISH,WIDOWED,WHITE,,,0
|
| 236 |
+
10020306,23052851,2135-01-15 20:55:00,2135-02-07 17:50:00,,OBSERVATION ADMIT,P54UVQ,PHYSICIAN REFERRAL,SKILLED NURSING FACILITY,Other,ENGLISH,WIDOWED,BLACK/AFRICAN AMERICAN,2135-01-15 16:12:00,2135-01-15 22:38:00,0
|
| 237 |
+
10038999,27189241,2131-05-22 21:49:00,2131-06-04 13:43:00,,OBSERVATION ADMIT,P44UQI,EMERGENCY ROOM,HOME,Medicare,ENGLISH,SINGLE,WHITE,2131-05-22 20:33:00,2131-05-22 21:28:00,0
|
| 238 |
+
10040025,21791856,2147-06-16 22:00:00,2147-06-22 16:15:00,,OBSERVATION ADMIT,P7634X,EMERGENCY ROOM,HOME HEALTH CARE,Other,ENGLISH,DIVORCED,WHITE,2147-06-16 18:58:00,2147-06-16 23:06:00,0
|
| 239 |
+
10040025,22251969,2147-08-03 02:58:00,2147-08-06 16:50:00,,OBSERVATION ADMIT,P85BWS,EMERGENCY ROOM,HOME,Other,ENGLISH,DIVORCED,WHITE,2147-08-02 18:14:00,2147-08-03 02:41:00,0
|
| 240 |
+
10040025,27259207,2147-12-04 20:48:00,2147-12-18 16:43:00,,OBSERVATION ADMIT,P43BTJ,EMERGENCY ROOM,SKILLED NURSING FACILITY,Other,ENGLISH,DIVORCED,WHITE,2147-12-04 13:11:00,2147-12-05 02:28:00,0
|
| 241 |
+
10040025,27996267,2148-01-23 12:18:00,2148-02-04 20:51:00,,OBSERVATION ADMIT,P10WWR,TRANSFER FROM SKILLED NURSING FACILITY,HOSPICE,Other,ENGLISH,DIVORCED,WHITE,2148-01-22 14:47:00,2148-01-23 09:42:00,0
|
| 242 |
+
10016742,28506150,2178-07-13 05:40:00,2178-07-16 02:00:00,,OBSERVATION ADMIT,P031HZ,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicaid,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2178-07-13 04:37:00,2178-07-13 08:16:00,0
|
| 243 |
+
10016742,27568122,2178-07-22 07:19:00,2178-07-25 16:30:00,,OBSERVATION ADMIT,P513EK,EMERGENCY ROOM,CHRONIC/LONG TERM ACUTE CARE,Medicaid,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2178-07-22 05:41:00,2178-07-22 08:19:00,0
|
| 244 |
+
10010867,22196214,2148-03-07 23:30:00,2148-03-13 15:50:00,,OBSERVATION ADMIT,P233F6,EMERGENCY ROOM,REHAB,Other,ENGLISH,DIVORCED,WHITE - BRAZILIAN,2148-03-07 18:21:00,2148-03-08 00:50:00,0
|
| 245 |
+
10010867,22950920,2148-01-25 22:58:00,2148-01-30 11:23:00,,OBSERVATION ADMIT,P39FGY,EMERGENCY ROOM,REHAB,Other,ENGLISH,DIVORCED,WHITE - BRAZILIAN,2148-01-25 18:46:00,2148-01-26 01:27:00,0
|
| 246 |
+
10002428,28295257,2160-04-14 12:30:00,2160-04-18 16:00:00,,OBSERVATION ADMIT,P18I28,EMERGENCY ROOM,SKILLED NURSING FACILITY,Medicare,ENGLISH,WIDOWED,WHITE,2160-04-14 09:01:00,2160-04-14 14:28:00,0
|
| 247 |
+
10005348,29176490,2129-05-22 16:00:00,2129-05-23 11:30:00,,DIRECT OBSERVATION,P132L1,PHYSICIAN REFERRAL,,Other,ENGLISH,MARRIED,WHITE,,,0
|
| 248 |
+
10020740,29820177,2150-07-09 22:09:00,2150-07-12 18:00:00,,DIRECT OBSERVATION,P1942H,CLINIC REFERRAL,,Other,ENGLISH,SINGLE,WHITE,,,0
|
| 249 |
+
10039708,22999601,2142-05-15 17:14:00,2142-05-15 18:21:00,,DIRECT OBSERVATION,P42K8Q,PHYSICIAN REFERRAL,,Other,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,2142-05-15 10:47:00,2142-05-15 18:21:00,0
|
| 250 |
+
10012853,20457729,2177-11-03 09:30:00,2177-11-04 15:06:00,,DIRECT OBSERVATION,P05BRR,PHYSICIAN REFERRAL,,Medicare,ENGLISH,WIDOWED,BLACK/AFRICAN AMERICAN,,,0
|
| 251 |
+
10012853,26739864,2177-02-11 07:15:00,2177-02-12 16:20:00,,DIRECT OBSERVATION,P05BRR,PHYSICIAN REFERRAL,,Medicare,ENGLISH,WIDOWED,BLACK/AFRICAN AMERICAN,,,0
|
| 252 |
+
10004457,25559382,2148-09-14 14:19:00,2148-09-15 12:45:00,,DIRECT OBSERVATION,P466EI,PHYSICIAN REFERRAL,,Medicare,ENGLISH,DIVORCED,WHITE,,,0
|
| 253 |
+
10007795,27962747,2136-07-24 17:15:00,2136-07-27 14:27:00,,DIRECT OBSERVATION,P99LA7,PHYSICIAN REFERRAL,,Medicare,ENGLISH,SINGLE,WHITE,,,0
|
| 254 |
+
10035631,29654498,2113-07-17 17:15:00,2113-07-18 14:55:00,,AMBULATORY OBSERVATION,P48P6U,PACU,,Other,ENGLISH,MARRIED,WHITE,,,0
|
| 255 |
+
10020306,28778757,2129-10-29 08:00:00,2129-10-30 13:20:00,,AMBULATORY OBSERVATION,P75JMU,PACU,,Medicare,ENGLISH,SINGLE,BLACK/AFRICAN AMERICAN,,,0
|
| 256 |
+
10040025,27125816,2143-03-18 12:34:00,2143-03-19 12:00:00,,AMBULATORY OBSERVATION,P623U2,PROCEDURE SITE,,Other,ENGLISH,DIVORCED,WHITE,,,0
|
| 257 |
+
10004457,21039249,2140-09-17 13:41:00,2140-09-18 12:40:00,,AMBULATORY OBSERVATION,P99YFT,PROCEDURE SITE,,Medicare,ENGLISH,SINGLE,WHITE,,,0
|
| 258 |
+
10004457,21216581,2143-03-09 11:10:00,2143-03-10 11:35:00,,AMBULATORY OBSERVATION,P89ZCW,PROCEDURE SITE,,Medicare,ENGLISH,DIVORCED,WHITE,,,0
|
| 259 |
+
10011398,27505812,2146-12-15 07:15:00,2146-12-19 13:37:00,,SURGICAL SAME DAY ADMISSION,P47E1G,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,MARRIED,HISPANIC OR LATINO,,,0
|
| 260 |
+
10014729,28889419,2125-02-27 07:15:00,2125-03-06 14:25:00,,SURGICAL SAME DAY ADMISSION,P17BJ5,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE - OTHER EUROPEAN,,,0
|
| 261 |
+
10004235,25970245,2196-06-14 08:30:00,2196-06-19 14:54:00,,SURGICAL SAME DAY ADMISSION,P96Y5O,PHYSICIAN REFERRAL,HOME HEALTH CARE,Medicaid,ENGLISH,SINGLE,BLACK/CAPE VERDEAN,,,0
|
| 262 |
+
10039831,26924951,2115-12-28 07:15:00,2116-01-02 14:34:00,,SURGICAL SAME DAY ADMISSION,P82B0E,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,MARRIED,UNABLE TO OBTAIN,,,0
|
| 263 |
+
10018328,23786647,2154-04-24 03:15:00,2154-05-03 14:00:00,,SURGICAL SAME DAY ADMISSION,P898NM,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,DIVORCED,WHITE,,,0
|
| 264 |
+
10018081,28861356,2134-08-02 07:15:00,2134-08-13 17:34:00,,SURGICAL SAME DAY ADMISSION,P3417E,PHYSICIAN REFERRAL,SKILLED NURSING FACILITY,Medicare,ENGLISH,MARRIED,WHITE,,,0
|
| 265 |
+
10027602,21477991,2201-12-11 12:00:00,2201-12-17 13:45:00,,SURGICAL SAME DAY ADMISSION,P898NM,PHYSICIAN REFERRAL,REHAB,Other,ENGLISH,SINGLE,WHITE,,,0
|
| 266 |
+
10020187,26842957,2170-02-24 00:00:00,2170-02-25 15:00:00,,SURGICAL SAME DAY ADMISSION,P898NM,PHYSICIAN REFERRAL,HOME,Other,?,MARRIED,HISPANIC/LATINO - SALVADORAN,,,0
|
| 267 |
+
10003046,26048429,2154-01-02 07:15:00,2154-01-09 11:53:00,,SURGICAL SAME DAY ADMISSION,P2720E,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,,,0
|
| 268 |
+
10022017,22342963,2189-09-10 00:00:00,2189-09-16 15:00:00,,SURGICAL SAME DAY ADMISSION,P47E1G,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,,,0
|
| 269 |
+
10025612,23403708,2125-09-25 07:15:00,2125-10-03 12:24:00,,SURGICAL SAME DAY ADMISSION,P786Y5,PHYSICIAN REFERRAL,HOME HEALTH CARE,Medicare,ENGLISH,MARRIED,WHITE,,,0
|
| 270 |
+
10039997,24294180,2134-09-07 12:00:00,2134-09-11 13:10:00,,SURGICAL SAME DAY ADMISSION,P47SIK,PHYSICIAN REFERRAL,HOME,Medicare,ENGLISH,MARRIED,BLACK/AFRICAN AMERICAN,,,0
|
| 271 |
+
10023117,29839885,2170-10-08 07:15:00,2170-10-09 16:30:00,,SURGICAL SAME DAY ADMISSION,P89ZCW,PHYSICIAN REFERRAL,HOME HEALTH CARE,Medicare,ENGLISH,WIDOWED,WHITE,,,0
|
| 272 |
+
10038992,24745425,2187-07-29 01:05:00,2187-08-03 17:02:00,,SURGICAL SAME DAY ADMISSION,P41R5N,PHYSICIAN REFERRAL,SKILLED NURSING FACILITY,Medicare,ENGLISH,MARRIED,WHITE,,,0
|
| 273 |
+
10008287,22168393,2145-09-28 01:17:00,2145-10-02 13:35:00,,SURGICAL SAME DAY ADMISSION,P898NM,PHYSICIAN REFERRAL,HOME HEALTH CARE,Other,ENGLISH,SINGLE,WHITE,,,0
|
| 274 |
+
10022880,27708593,2177-03-12 07:15:00,2177-03-19 14:25:00,,SURGICAL SAME DAY ADMISSION,P99698,PHYSICIAN REFERRAL,HOME,Medicare,ENGLISH,MARRIED,WHITE,,,0
|
| 275 |
+
10004457,23251352,2141-12-17 11:00:00,2141-12-21 15:56:00,,SURGICAL SAME DAY ADMISSION,P41R5N,PHYSICIAN REFERRAL,REHAB,Medicare,ENGLISH,SINGLE,OTHER,,,0
|
| 276 |
+
10004457,28108313,2147-12-19 00:00:00,2147-12-21 16:10:00,,SURGICAL SAME DAY ADMISSION,P10WWR,PHYSICIAN REFERRAL,SKILLED NURSING FACILITY,Medicare,ENGLISH,DIVORCED,WHITE,,,0
|
data/mimic-iv-clinical-database-demo/hosp/d_hcpcs.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/mimic-iv-clinical-database-demo/hosp/d_icd_diagnoses.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/mimic-iv-clinical-database-demo/hosp/d_icd_procedures.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/mimic-iv-clinical-database-demo/hosp/d_labitems.csv
ADDED
|
@@ -0,0 +1,1623 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
itemid,label,fluid,category
|
| 2 |
+
50808,Free Calcium,Blood,Blood Gas
|
| 3 |
+
50826,Tidal Volume,Blood,Blood Gas
|
| 4 |
+
50813,Lactate,Blood,Blood Gas
|
| 5 |
+
52029,% Ionized Calcium,Blood,Blood Gas
|
| 6 |
+
50801,Alveolar-arterial Gradient,Blood,Blood Gas
|
| 7 |
+
50810,"Hematocrit, Calculated",Blood,Blood Gas
|
| 8 |
+
52025,Delete,Blood,Blood Gas
|
| 9 |
+
52031,Osmolality,Blood,Blood Gas
|
| 10 |
+
52022,"Albumin, Blood",Blood,Blood Gas
|
| 11 |
+
50806,"Chloride, Whole Blood",Blood,Blood Gas
|
| 12 |
+
50820,pH,Blood,Blood Gas
|
| 13 |
+
52028,Hematocrit,Blood,Blood Gas
|
| 14 |
+
52036,Voided Specimen,Blood,Blood Gas
|
| 15 |
+
50812,Intubated,Blood,Blood Gas
|
| 16 |
+
50817,Oxygen Saturation,Blood,Blood Gas
|
| 17 |
+
52035,Total Calcium,Blood,Blood Gas
|
| 18 |
+
50823,Required O2,Blood,Blood Gas
|
| 19 |
+
52024,"Creatinine, Whole Blood",Blood,Blood Gas
|
| 20 |
+
52037,WB tCO2,Blood,Blood Gas
|
| 21 |
+
50815,O2 Flow,Blood,Blood Gas
|
| 22 |
+
52452,"Potassium, Whole Blood",Blood,Blood Gas
|
| 23 |
+
50804,Calculated Total CO2,Blood,Blood Gas
|
| 24 |
+
52030,Lithium,Blood,Blood Gas
|
| 25 |
+
50811,Hemoglobin,Blood,Blood Gas
|
| 26 |
+
50824,"Sodium, Whole Blood",Blood,Blood Gas
|
| 27 |
+
52033,Specimen Type,Blood,Blood Gas
|
| 28 |
+
52027,"Glucose, Whole Blood",Blood,Blood Gas
|
| 29 |
+
50802,Base Excess,Blood,Blood Gas
|
| 30 |
+
50814,Methemoglobin,Blood,Blood Gas
|
| 31 |
+
52034,Total Calcium,Blood,Blood Gas
|
| 32 |
+
52442,Lactate,Blood,Blood Gas
|
| 33 |
+
50818,pCO2,Blood,Blood Gas
|
| 34 |
+
50828,Ventilator,Blood,Blood Gas
|
| 35 |
+
50809,Glucose,Blood,Blood Gas
|
| 36 |
+
50821,pO2,Blood,Blood Gas
|
| 37 |
+
52026,Estimated GFR (MDRD equation),Blood,Blood Gas
|
| 38 |
+
52434,"Chloride, Whole Blood",Blood,Blood Gas
|
| 39 |
+
50803,"Calculated Bicarbonate, Whole Blood",Blood,Blood Gas
|
| 40 |
+
52023,Assist/Control,Blood,Blood Gas
|
| 41 |
+
50822,"Potassium, Whole Blood",Blood,Blood Gas
|
| 42 |
+
50827,Ventilation Rate,Blood,Blood Gas
|
| 43 |
+
52032,P50 of Hemoglobin,Blood,Blood Gas
|
| 44 |
+
50819,PEEP,Blood,Blood Gas
|
| 45 |
+
52021,Abz,Blood,Blood Gas
|
| 46 |
+
50805,Carboxyhemoglobin,Blood,Blood Gas
|
| 47 |
+
50816,Oxygen,Blood,Blood Gas
|
| 48 |
+
50825,Temperature,Blood,Blood Gas
|
| 49 |
+
52455,"Sodium, Whole Blood",Blood,Blood Gas
|
| 50 |
+
52039,Calculated Bicarbonate,Fluid,Blood Gas
|
| 51 |
+
52042,pO2,Fluid,Blood Gas
|
| 52 |
+
52040,pCO2,Fluid,Blood Gas
|
| 53 |
+
52038,Base Excess,Fluid,Blood Gas
|
| 54 |
+
52041,pH,Fluid,Blood Gas
|
| 55 |
+
52045,"pH, Urine",Urine,Blood Gas
|
| 56 |
+
52044,"Osmolality, Urine",Urine,Blood Gas
|
| 57 |
+
52047,"Sodium, Urine",Urine,Blood Gas
|
| 58 |
+
52046,"Potassium, Urine",Urine,Blood Gas
|
| 59 |
+
52043,Voided Specimen,Other Body Fluid,Blood Gas
|
| 60 |
+
50829,Fluid Type,Other Body Fluid,Blood Gas
|
| 61 |
+
50833,Potassium,Other Body Fluid,Blood Gas
|
| 62 |
+
50834,"Sodium, Body Fluid",Other Body Fluid,Blood Gas
|
| 63 |
+
50832,"pO2, Body Fluid",Other Body Fluid,Blood Gas
|
| 64 |
+
50831,pH,Other Body Fluid,Blood Gas
|
| 65 |
+
50830,"pCO2, Body Fluid",Other Body Fluid,Blood Gas
|
| 66 |
+
50858,Acid Phosphatase,Blood,Chemistry
|
| 67 |
+
50879,Barbiturate Screen,Blood,Chemistry
|
| 68 |
+
50900,Carcinoembyronic Antigen (CEA),Blood,Chemistry
|
| 69 |
+
50914,Cyclosporin,Blood,Chemistry
|
| 70 |
+
51582,CH50,Blood,Chemistry
|
| 71 |
+
51615,Epstein-Barr Virus EBNA IgG Ab,Blood,Chemistry
|
| 72 |
+
51672,Immune Complexes,Blood,Chemistry
|
| 73 |
+
51685,Lidocaine,Blood,Chemistry
|
| 74 |
+
51755,White Blood Cells,Blood,Chemistry
|
| 75 |
+
51773,RFXFRKL,Blood,Chemistry
|
| 76 |
+
53153,HIV Screen,Blood,Chemistry
|
| 77 |
+
50925,Folate,Blood,Chemistry
|
| 78 |
+
50927,Gamma Glutamyltransferase,Blood,Chemistry
|
| 79 |
+
50953,"Iron Binding Capacity, Total",Blood,Chemistry
|
| 80 |
+
51007,Uric Acid,Blood,Chemistry
|
| 81 |
+
51670,Icd9,Blood,Chemistry
|
| 82 |
+
51740,Toxic Screen,Blood,Chemistry
|
| 83 |
+
51743,Toxoplasma IgM Ab,Blood,Chemistry
|
| 84 |
+
51757,Xxx,Blood,Chemistry
|
| 85 |
+
53146,Anti Hav,Blood,Chemistry
|
| 86 |
+
50854,Absolute A1c,Blood,Chemistry
|
| 87 |
+
50887,Blue Top Hold,Blood,Chemistry
|
| 88 |
+
50945,Homocysteine,Blood,Chemistry
|
| 89 |
+
50958,Luteinizing Hormone,Blood,Chemistry
|
| 90 |
+
50993,Thyroid Stimulating Hormone,Blood,Chemistry
|
| 91 |
+
51557,Anti-Microsomal Antibody,Blood,Chemistry
|
| 92 |
+
51659,HPE3,Blood,Chemistry
|
| 93 |
+
51683,"LD, Isoenzyme 4",Blood,Chemistry
|
| 94 |
+
51693,Mumps IgG Ab,Blood,Chemistry
|
| 95 |
+
51709,Quantitative RPR Test,Blood,Chemistry
|
| 96 |
+
51734,STX3,Blood,Chemistry
|
| 97 |
+
50870,"Anti-Gliadin Antibody, IgA",Blood,Chemistry
|
| 98 |
+
50979,Red Top Hold,Blood,Chemistry
|
| 99 |
+
51010,Vitamin B12,Blood,Chemistry
|
| 100 |
+
50893,"Calcium, Total",Blood,Chemistry
|
| 101 |
+
50899,Carbamazepine,Blood,Chemistry
|
| 102 |
+
51567,Beta Hydroxybutyrate,Blood,Chemistry
|
| 103 |
+
51580,Calculated CK-MB,Blood,Chemistry
|
| 104 |
+
51629,Fructosamine Plus,Blood,Chemistry
|
| 105 |
+
51658,HPE2,Blood,Chemistry
|
| 106 |
+
51681,"LD, Isoenzyme 2",Blood,Chemistry
|
| 107 |
+
51695,Myoglobin,Blood,Chemistry
|
| 108 |
+
51724,Rubella IgG Ab,Blood,Chemistry
|
| 109 |
+
51756,White Blood Cells,Blood,Chemistry
|
| 110 |
+
50866,Ammonia,Blood,Chemistry
|
| 111 |
+
50871,Anti-Mitochondrial Antibody,Blood,Chemistry
|
| 112 |
+
50918,Double Stranded DNA,Blood,Chemistry
|
| 113 |
+
51625,Free Kappa,Blood,Chemistry
|
| 114 |
+
51641,Hemoglobin A,Blood,Chemistry
|
| 115 |
+
50869,Anti-DGP (IgA/IgG),Blood,Chemistry
|
| 116 |
+
50936,"HCG, Maternal Screen",Blood,Chemistry
|
| 117 |
+
50977,Quinidine,Blood,Chemistry
|
| 118 |
+
50991,Thyroglobulin,Blood,Chemistry
|
| 119 |
+
51590,CMV Interpretation,Blood,Chemistry
|
| 120 |
+
51651,Hepatitis C Viral Load,Blood,Chemistry
|
| 121 |
+
51708,Qnthbsab,Blood,Chemistry
|
| 122 |
+
53086,Alkaline Phosphatase,Blood,Chemistry
|
| 123 |
+
50960,Magnesium,Blood,Chemistry
|
| 124 |
+
51009,Vancomycin,Blood,Chemistry
|
| 125 |
+
51633,Hbeag,Blood,Chemistry
|
| 126 |
+
51742,Toxoplasma IgG Ab Value,Blood,Chemistry
|
| 127 |
+
50915,D-Dimer,Blood,Chemistry
|
| 128 |
+
50983,Sodium,Blood,Chemistry
|
| 129 |
+
51589,CMV IgM Ab Value,Blood,Chemistry
|
| 130 |
+
51597,Cvhlc,Blood,Chemistry
|
| 131 |
+
51640,Hemoglobin,Blood,Chemistry
|
| 132 |
+
51660,HPE4,Blood,Chemistry
|
| 133 |
+
52562,Folate,Blood,Chemistry
|
| 134 |
+
50917,Digoxin,Blood,Chemistry
|
| 135 |
+
51569,"Bilirubin, Neonatal, Direct",Blood,Chemistry
|
| 136 |
+
51729,Serum B12,Blood,Chemistry
|
| 137 |
+
51732,STX1,Blood,Chemistry
|
| 138 |
+
52500,Anion Gap,Blood,Chemistry
|
| 139 |
+
53088,Asparate Aminotransferase,Blood,Chemistry
|
| 140 |
+
50923,Fax,Blood,Chemistry
|
| 141 |
+
50926,Follicle Stimulating Hormone,Blood,Chemistry
|
| 142 |
+
50949,Immunoglobulin A,Blood,Chemistry
|
| 143 |
+
50965,Parathyroid Hormone,Blood,Chemistry
|
| 144 |
+
50980,Rheumatoid Factor,Blood,Chemistry
|
| 145 |
+
50981,Salicylate,Blood,Chemistry
|
| 146 |
+
50986,tacroFK,Blood,Chemistry
|
| 147 |
+
51585,Clostrid,Blood,Chemistry
|
| 148 |
+
51604,Delete,Blood,Chemistry
|
| 149 |
+
51620,Epstein-Barr Virus VCA IgM Ab,Blood,Chemistry
|
| 150 |
+
51650,Hepatitis B Virus E Antigen,Blood,Chemistry
|
| 151 |
+
51686,Lip2,Blood,Chemistry
|
| 152 |
+
51689,Lyme G and M Value,Blood,Chemistry
|
| 153 |
+
51710,Rapid Plasma Reagin Test,Blood,Chemistry
|
| 154 |
+
51741,Toxoplasma IgG Ab,Blood,Chemistry
|
| 155 |
+
51772,PAN3,Blood,Chemistry
|
| 156 |
+
50905,"Cholesterol, LDL, Calculated",Blood,Chemistry
|
| 157 |
+
50928,Gastrin,Blood,Chemistry
|
| 158 |
+
50948,Immunofixation,Blood,Chemistry
|
| 159 |
+
50964,"Osmolality, Measured",Blood,Chemistry
|
| 160 |
+
51634,Hbsag,Blood,Chemistry
|
| 161 |
+
51657,HPE1,Blood,Chemistry
|
| 162 |
+
51673,Immunoelectrophoresis,Blood,Chemistry
|
| 163 |
+
51759,Z,Blood,Chemistry
|
| 164 |
+
50895,Calculated TBG,Blood,Chemistry
|
| 165 |
+
51687,Lipo Electrophoresis,Blood,Chemistry
|
| 166 |
+
51745,Toxoplasma Interpretation,Blood,Chemistry
|
| 167 |
+
53140,Aldosterone,Blood,Chemistry
|
| 168 |
+
50997,Tobramycin,Blood,Chemistry
|
| 169 |
+
51568,"Bilirubin, Neonatal",Blood,Chemistry
|
| 170 |
+
51577,C5,Blood,Chemistry
|
| 171 |
+
51592,Conj Bili,Blood,Chemistry
|
| 172 |
+
51594,"Creatine Kinase, Isoenzyme BB",Blood,Chemistry
|
| 173 |
+
51602,Delete,Blood,Chemistry
|
| 174 |
+
51774,RFXHCV,Blood,Chemistry
|
| 175 |
+
50876,Anti-Smooth Muscle Antibody,Blood,Chemistry
|
| 176 |
+
50894,Calculated Free Testosterone,Blood,Chemistry
|
| 177 |
+
50955,Light Green Top Hold,Blood,Chemistry
|
| 178 |
+
51583,Chol Estr,Blood,Chemistry
|
| 179 |
+
51700,Np-fx,Blood,Chemistry
|
| 180 |
+
51713,Reflex Confirmatory Hepatitis C Viral Load,Blood,Chemistry
|
| 181 |
+
51748,Treponema pallidum (Syphilis) Ab,Blood,Chemistry
|
| 182 |
+
53150,Anti Hbs,Blood,Chemistry
|
| 183 |
+
50942,Hepatitis B Virus Core Antibody,Blood,Chemistry
|
| 184 |
+
50950,Immunoglobulin G,Blood,Chemistry
|
| 185 |
+
50974,Prostate Specific Antigen,Blood,Chemistry
|
| 186 |
+
50999,Tricyclic Antidepressant Screen,Blood,Chemistry
|
| 187 |
+
51004,"UE3, Maternal Screen",Blood,Chemistry
|
| 188 |
+
51559,Anti-ro,Blood,Chemistry
|
| 189 |
+
51564,ARCH-1,Blood,Chemistry
|
| 190 |
+
51596,"Creatine Kinase, Isoenzyme MM",Blood,Chemistry
|
| 191 |
+
51611,Down Syndrome Risk,Blood,Chemistry
|
| 192 |
+
51676,Insulin,Blood,Chemistry
|
| 193 |
+
51749,Treponema pallidum (syphilis) value,Blood,Chemistry
|
| 194 |
+
50852,% Hemoglobin A1c,Blood,Chemistry
|
| 195 |
+
50886,Blood Culture Hold,Blood,Chemistry
|
| 196 |
+
51581,Carotene,Blood,Chemistry
|
| 197 |
+
51720,Reserved4,Blood,Chemistry
|
| 198 |
+
51752,Voided Specimen,Blood,Chemistry
|
| 199 |
+
53144,ANCA Titer,Blood,Chemistry
|
| 200 |
+
50902,Chloride,Blood,Chemistry
|
| 201 |
+
50972,Procainamide,Blood,Chemistry
|
| 202 |
+
50973,Prolactin,Blood,Chemistry
|
| 203 |
+
50976,"Protein, Total",Blood,Chemistry
|
| 204 |
+
51560,Anti-SARS-CoV-2 IgA,Blood,Chemistry
|
| 205 |
+
51613,eAG,Blood,Chemistry
|
| 206 |
+
51628,Fructosamine,Blood,Chemistry
|
| 207 |
+
51635,Hbsag,Blood,Chemistry
|
| 208 |
+
51638,Hematocrit,Blood,Chemistry
|
| 209 |
+
51712,Referred,Blood,Chemistry
|
| 210 |
+
51738,Thyroid Binding Globulin,Blood,Chemistry
|
| 211 |
+
53084,Alanine Aminotransferase,Blood,Chemistry
|
| 212 |
+
50868,Anion Gap,Blood,Chemistry
|
| 213 |
+
50874,"Anti-Nuclear Antibody, Titer",Blood,Chemistry
|
| 214 |
+
50922,Ethanol,Blood,Chemistry
|
| 215 |
+
50966,Phenobarbital,Blood,Chemistry
|
| 216 |
+
50998,Transferrin,Blood,Chemistry
|
| 217 |
+
51637,"HCG, Qualitative",Blood,Chemistry
|
| 218 |
+
51667,H. pylori IgG Ab Value,Blood,Chemistry
|
| 219 |
+
51696,Neural Tube Defect Risk,Blood,Chemistry
|
| 220 |
+
52610,Potassium,Blood,Chemistry
|
| 221 |
+
50883,"Bilirubin, Direct",Blood,Chemistry
|
| 222 |
+
51576,C2,Blood,Chemistry
|
| 223 |
+
51692,"Monospot, Rapid Antigen",Blood,Chemistry
|
| 224 |
+
51699,Not Done,Blood,Chemistry
|
| 225 |
+
51761,Zinc,Blood,Chemistry
|
| 226 |
+
50861,Alanine Aminotransferase (ALT),Blood,Chemistry
|
| 227 |
+
50863,Alkaline Phosphatase,Blood,Chemistry
|
| 228 |
+
50881,Beta-2 Microglobulin,Blood,Chemistry
|
| 229 |
+
50913,Cryoglobulin,Blood,Chemistry
|
| 230 |
+
51572,Bioavailable Testosterone,Blood,Chemistry
|
| 231 |
+
51631,Glycated Hemoglobin,Blood,Chemistry
|
| 232 |
+
51636,"HCG, Multiples of Median",Blood,Chemistry
|
| 233 |
+
51649,Hepatitis B Virus E Antibody,Blood,Chemistry
|
| 234 |
+
51767,EE5,Blood,Chemistry
|
| 235 |
+
50896,Calculated Thyroxine (T4) Index,Blood,Chemistry
|
| 236 |
+
50930,Globulin,Blood,Chemistry
|
| 237 |
+
50933,Green Top Hold (plasma),Blood,Chemistry
|
| 238 |
+
50940,Hepatitis B Surface Antibody,Blood,Chemistry
|
| 239 |
+
50941,Hepatitis B Surface Antigen,Blood,Chemistry
|
| 240 |
+
51598,Cytomegalovirus Viral Load,Blood,Chemistry
|
| 241 |
+
51601,Delete,Blood,Chemistry
|
| 242 |
+
53129,3t,Blood,Chemistry
|
| 243 |
+
53137,Afp Mom,Blood,Chemistry
|
| 244 |
+
51648,Hepatitis B Viral Load,Blood,Chemistry
|
| 245 |
+
51704,Platelet Count,Blood,Chemistry
|
| 246 |
+
51735,STX4,Blood,Chemistry
|
| 247 |
+
51763,EE2,Blood,Chemistry
|
| 248 |
+
53087,Amylase,Blood,Chemistry
|
| 249 |
+
53141,Alpha-1,Blood,Chemistry
|
| 250 |
+
53143,Alpha-2,Blood,Chemistry
|
| 251 |
+
50865,Amikacin,Blood,Chemistry
|
| 252 |
+
50885,"Bilirubin, Total",Blood,Chemistry
|
| 253 |
+
50921,Estradiol,Blood,Chemistry
|
| 254 |
+
51609,Disopyramide,Blood,Chemistry
|
| 255 |
+
51617,Epstein-Barr Virus IgM Ab Value,Blood,Chemistry
|
| 256 |
+
51621,Ethylene Glycol,Blood,Chemistry
|
| 257 |
+
51623,Fibrinogen,Blood,Chemistry
|
| 258 |
+
51632,Growth Hormone,Blood,Chemistry
|
| 259 |
+
51643,Hemoglobin A2,Blood,Chemistry
|
| 260 |
+
51664,HPE8,Blood,Chemistry
|
| 261 |
+
51770,MDRDgfr,Blood,Chemistry
|
| 262 |
+
52623,Sodium,Blood,Chemistry
|
| 263 |
+
53128,11-Deoxycorticosterone,Blood,Chemistry
|
| 264 |
+
50857,Acetone,Blood,Chemistry
|
| 265 |
+
50907,"Cholesterol, Total",Blood,Chemistry
|
| 266 |
+
50994,Thyroxine (T4),Blood,Chemistry
|
| 267 |
+
51005,Uptake Ratio,Blood,Chemistry
|
| 268 |
+
51575,C1q,Blood,Chemistry
|
| 269 |
+
51678,L,Blood,Chemistry
|
| 270 |
+
51725,Rubeola IgG Ab,Blood,Chemistry
|
| 271 |
+
51726,Rubeola IgG Ab Value,Blood,Chemistry
|
| 272 |
+
51762,EE1,Blood,Chemistry
|
| 273 |
+
53142,Alpha-1-antitrypsin,Blood,Chemistry
|
| 274 |
+
50884,"Bilirubin, Indirect",Blood,Chemistry
|
| 275 |
+
50931,Glucose,Blood,Chemistry
|
| 276 |
+
50952,Iron,Blood,Chemistry
|
| 277 |
+
50968,"Phenytoin, Free",Blood,Chemistry
|
| 278 |
+
51647,Hemoglobin S,Blood,Chemistry
|
| 279 |
+
51680,"LD, Isoenzyme 1",Blood,Chemistry
|
| 280 |
+
51682,"LD, Isoenzyme 3",Blood,Chemistry
|
| 281 |
+
51707,Progesterone,Blood,Chemistry
|
| 282 |
+
51750,"UE3, Multiples of Median",Blood,Chemistry
|
| 283 |
+
50897,Call,Blood,Chemistry
|
| 284 |
+
50908,CK-MB Index,Blood,Chemistry
|
| 285 |
+
50954,Lactate Dehydrogenase (LD),Blood,Chemistry
|
| 286 |
+
50978,Rapamycin,Blood,Chemistry
|
| 287 |
+
50984,Stat,Blood,Chemistry
|
| 288 |
+
51618,Epstein-Barr Virus Interpretation,Blood,Chemistry
|
| 289 |
+
51690,Lymphocytes,Blood,Chemistry
|
| 290 |
+
51733,STX2,Blood,Chemistry
|
| 291 |
+
51751,Uncon Bil,Blood,Chemistry
|
| 292 |
+
53147,Anti Hbc,Blood,Chemistry
|
| 293 |
+
53154,Lactate,Blood,Chemistry
|
| 294 |
+
50860,"AFP, Maternal Screen",Blood,Chemistry
|
| 295 |
+
50877,Anti-Thyroglobulin Antibodies,Blood,Chemistry
|
| 296 |
+
51562,Anti-Skin Antibody,Blood,Chemistry
|
| 297 |
+
51578,C6,Blood,Chemistry
|
| 298 |
+
51645,"Hemoglobin, Calculated",Blood,Chemistry
|
| 299 |
+
51669,Htlv Ab,Blood,Chemistry
|
| 300 |
+
51688,Lyme C6 Ab,Blood,Chemistry
|
| 301 |
+
51694,Mumps IgG Ab Value,Blood,Chemistry
|
| 302 |
+
51717,Reserved,Blood,Chemistry
|
| 303 |
+
51722,RFXLDLM,Blood,Chemistry
|
| 304 |
+
52569,Glucose,Blood,Chemistry
|
| 305 |
+
52647,Urea Nitrogen,Blood,Chemistry
|
| 306 |
+
53094,HBV VL CT,Blood,Chemistry
|
| 307 |
+
50898,Cancer Antigen 27.29,Blood,Chemistry
|
| 308 |
+
50904,"Cholesterol, HDL",Blood,Chemistry
|
| 309 |
+
50946,Human Chorionic Gonadotropin,Blood,Chemistry
|
| 310 |
+
50971,Potassium,Blood,Chemistry
|
| 311 |
+
50975,Protein Electrophoresis,Blood,Chemistry
|
| 312 |
+
51000,Triglycerides,Blood,Chemistry
|
| 313 |
+
51573,Bromide,Blood,Chemistry
|
| 314 |
+
51610,Dlta Bili,Blood,Chemistry
|
| 315 |
+
51612,Dr. X,Blood,Chemistry
|
| 316 |
+
51627,Free Lambda,Blood,Chemistry
|
| 317 |
+
51656,Hlap,Blood,Chemistry
|
| 318 |
+
53096,"Protein, Total",Blood,Chemistry
|
| 319 |
+
50882,Bicarbonate,Blood,Chemistry
|
| 320 |
+
50888,Blue Top Hold Frozen,Blood,Chemistry
|
| 321 |
+
50901,Centromere,Blood,Chemistry
|
| 322 |
+
50992,Thyroid Peroxidase Antibodies,Blood,Chemistry
|
| 323 |
+
51566,Beta,Blood,Chemistry
|
| 324 |
+
51584,Chylomicrons,Blood,Chemistry
|
| 325 |
+
51599,D,Blood,Chemistry
|
| 326 |
+
51744,Toxoplasma IgM Ab Value,Blood,Chemistry
|
| 327 |
+
50890,C3,Blood,Chemistry
|
| 328 |
+
50916,DHEA-Sulfate,Blood,Chemistry
|
| 329 |
+
50935,Haptoglobin,Blood,Chemistry
|
| 330 |
+
51593,Copper,Blood,Chemistry
|
| 331 |
+
51606,Digitoxin,Blood,Chemistry
|
| 332 |
+
51668,Hsap,Blood,Chemistry
|
| 333 |
+
53138,(Albumin),Blood,Chemistry
|
| 334 |
+
50864,Alpha-Fetoprotein,Blood,Chemistry
|
| 335 |
+
50938,Hepatitis A Virus IgM Antibody,Blood,Chemistry
|
| 336 |
+
50959,Macro Prolactin,Blood,Chemistry
|
| 337 |
+
50967,Phenytoin,Blood,Chemistry
|
| 338 |
+
50995,"Thyroxine (T4), Free",Blood,Chemistry
|
| 339 |
+
51646,Hemoglobin F,Blood,Chemistry
|
| 340 |
+
51706,Problem Specimen,Blood,Chemistry
|
| 341 |
+
51714,Reflex HIV Confirmation,Blood,Chemistry
|
| 342 |
+
51764,EE7,Blood,Chemistry
|
| 343 |
+
51769,RUBIgGV,Blood,Chemistry
|
| 344 |
+
51771,,Blood,Chemistry
|
| 345 |
+
53145,Anti-GBM Antibody,Blood,Chemistry
|
| 346 |
+
50862,Albumin,Blood,Chemistry
|
| 347 |
+
50911,"Creatine Kinase, MB Isoenzyme",Blood,Chemistry
|
| 348 |
+
50969,"Phenytoin, Percent Free",Blood,Chemistry
|
| 349 |
+
51721,Reverse T3,Blood,Chemistry
|
| 350 |
+
51731,Single Stranded DNA,Blood,Chemistry
|
| 351 |
+
53132,Absolute Lymphocyte Count,Blood,Chemistry
|
| 352 |
+
50982,Sex Hormone Binding Globulin,Blood,Chemistry
|
| 353 |
+
51565,Argon,Blood,Chemistry
|
| 354 |
+
51746,Transferrin Saturation,Blood,Chemistry
|
| 355 |
+
50859,"Acid Phosphatase, Non-Prostatic",Blood,Chemistry
|
| 356 |
+
50878,Asparate Aminotransferase (AST),Blood,Chemistry
|
| 357 |
+
50912,Creatinine,Blood,Chemistry
|
| 358 |
+
50957,Lithium,Blood,Chemistry
|
| 359 |
+
50985,Study Tubes,Blood,Chemistry
|
| 360 |
+
50990,Theophylline,Blood,Chemistry
|
| 361 |
+
51006,Urea Nitrogen,Blood,Chemistry
|
| 362 |
+
51608,DirLst,Blood,Chemistry
|
| 363 |
+
51698,No MD,Blood,Chemistry
|
| 364 |
+
52546,Creatinine,Blood,Chemistry
|
| 365 |
+
50867,Amylase,Blood,Chemistry
|
| 366 |
+
50906,"Cholesterol, LDL, Measured",Blood,Chemistry
|
| 367 |
+
50939,"Hepatitis B Core Antibody, IgM",Blood,Chemistry
|
| 368 |
+
51003,Troponin T,Blood,Chemistry
|
| 369 |
+
51652,High-Sensitivity CRP,Blood,Chemistry
|
| 370 |
+
51675,INR(PT),Blood,Chemistry
|
| 371 |
+
51730,Serum Folate,Blood,Chemistry
|
| 372 |
+
51758,Xylose,Blood,Chemistry
|
| 373 |
+
53130,4t,Blood,Chemistry
|
| 374 |
+
50892,CA-125,Blood,Chemistry
|
| 375 |
+
50970,Phosphate,Blood,Chemistry
|
| 376 |
+
51556,Anti-Microsomal Antibodies,Blood,Chemistry
|
| 377 |
+
51574,C1 Inhibitor,Blood,Chemistry
|
| 378 |
+
51607,"Dimeric Inhibin A, Maternal Screen",Blood,Chemistry
|
| 379 |
+
51691,MCV,Blood,Chemistry
|
| 380 |
+
50875,Anti-Parietal Cell Antibody,Blood,Chemistry
|
| 381 |
+
51008,Valproic Acid,Blood,Chemistry
|
| 382 |
+
51570,"Bilirubin, Neonatal, Indirect",Blood,Chemistry
|
| 383 |
+
51616,Epstein-Barr Virus IgG Ab Value,Blood,Chemistry
|
| 384 |
+
51723,Rubella,Blood,Chemistry
|
| 385 |
+
51739,Total CO2,Blood,Chemistry
|
| 386 |
+
52642,Troponin I,Blood,Chemistry
|
| 387 |
+
53148,Anti Hbe,Blood,Chemistry
|
| 388 |
+
50891,C4,Blood,Chemistry
|
| 389 |
+
50943,Hepatitis C Virus Antibody,Blood,Chemistry
|
| 390 |
+
50947,I,Blood,Chemistry
|
| 391 |
+
51642,Hemoglobin A1,Blood,Chemistry
|
| 392 |
+
51728,Serum B12,Blood,Chemistry
|
| 393 |
+
52535,Chloride,Blood,Chemistry
|
| 394 |
+
53135,"Acid Phosphatase, Prostatic Fraction",Blood,Chemistry
|
| 395 |
+
53151,Anti-la,Blood,Chemistry
|
| 396 |
+
50855,Absolute Hemoglobin,Blood,Chemistry
|
| 397 |
+
50919,EDTA Hold,Blood,Chemistry
|
| 398 |
+
50963,NTproBNP,Blood,Chemistry
|
| 399 |
+
50996,"Tissue Transglutaminase Ab, IgA",Blood,Chemistry
|
| 400 |
+
51579,CA 19-9,Blood,Chemistry
|
| 401 |
+
51626,Free Kappa/Free Lambda Ratio,Blood,Chemistry
|
| 402 |
+
51705,Primidone,Blood,Chemistry
|
| 403 |
+
51715,Renin,Blood,Chemistry
|
| 404 |
+
51754,VZV IgG Ab Value,Blood,Chemistry
|
| 405 |
+
50924,Ferritin,Blood,Chemistry
|
| 406 |
+
50932,Gray Top Hold (plasma),Blood,Chemistry
|
| 407 |
+
50956,Lipase,Blood,Chemistry
|
| 408 |
+
50989,"Testosterone, Free",Blood,Chemistry
|
| 409 |
+
51563,Anti-sm,Blood,Chemistry
|
| 410 |
+
51587,CMV IgG Ab Value,Blood,Chemistry
|
| 411 |
+
51600,Delete,Blood,Chemistry
|
| 412 |
+
51653,HIV 1 Ab Confirmation,Blood,Chemistry
|
| 413 |
+
51719,Reserved3,Blood,Chemistry
|
| 414 |
+
53134,Absolute Other WBC,Blood,Chemistry
|
| 415 |
+
50873,Anti-Nuclear Antibody,Blood,Chemistry
|
| 416 |
+
50880,Benzodiazepine Screen,Blood,Chemistry
|
| 417 |
+
50889,C-Reactive Protein,Blood,Chemistry
|
| 418 |
+
50920,Estimated GFR (MDRD equation),Blood,Chemistry
|
| 419 |
+
51558,Antirnp,Blood,Chemistry
|
| 420 |
+
51619,Epstein-Barr Virus VCA IgG Ab,Blood,Chemistry
|
| 421 |
+
51665,HPE9,Blood,Chemistry
|
| 422 |
+
51736,STX5,Blood,Chemistry
|
| 423 |
+
51605,Delta/Dlt,Blood,Chemistry
|
| 424 |
+
51679,Lap,Blood,Chemistry
|
| 425 |
+
51684,"LD, Isoenzyme 5",Blood,Chemistry
|
| 426 |
+
51703,PEPgel,Blood,Chemistry
|
| 427 |
+
51753,VZV IgG Ab,Blood,Chemistry
|
| 428 |
+
52551,D-Dimer,Blood,Chemistry
|
| 429 |
+
53089,"Bilirubin, Total",Blood,Chemistry
|
| 430 |
+
53139,Aldosterone,Blood,Chemistry
|
| 431 |
+
50909,Cortisol,Blood,Chemistry
|
| 432 |
+
50910,Creatine Kinase (CK),Blood,Chemistry
|
| 433 |
+
50951,Immunoglobulin M,Blood,Chemistry
|
| 434 |
+
51586,CMV IgG Ab,Blood,Chemistry
|
| 435 |
+
51630,Gamma,Blood,Chemistry
|
| 436 |
+
51662,HPE6,Blood,Chemistry
|
| 437 |
+
51701,"Osmolality, Calculated",Blood,Chemistry
|
| 438 |
+
51702,Park,Blood,Chemistry
|
| 439 |
+
53133,Absolute Neutrophil,Blood,Chemistry
|
| 440 |
+
51002,Troponin I,Blood,Chemistry
|
| 441 |
+
51624,Free Calcium,Blood,Chemistry
|
| 442 |
+
51639,Hematocrit,Blood,Chemistry
|
| 443 |
+
51644,Hemoglobin C,Blood,Chemistry
|
| 444 |
+
51663,HPE7,Blood,Chemistry
|
| 445 |
+
52548,Cryoglobulin,Blood,Chemistry
|
| 446 |
+
53149,Anti-hbs,Blood,Chemistry
|
| 447 |
+
50988,Testosterone,Blood,Chemistry
|
| 448 |
+
51571,Billed,Blood,Chemistry
|
| 449 |
+
51654,HIV 1 Viral Load,Blood,Chemistry
|
| 450 |
+
53085,Albumin,Blood,Chemistry
|
| 451 |
+
53093,Gamma Glutamyltranferase,Blood,Chemistry
|
| 452 |
+
50961,Methotrexate,Blood,Chemistry
|
| 453 |
+
51655,HIV 2 Ab Confirmation,Blood,Chemistry
|
| 454 |
+
51666,H. pylori IgG Ab,Blood,Chemistry
|
| 455 |
+
51718,Reserved1,Blood,Chemistry
|
| 456 |
+
51765,EE3,Blood,Chemistry
|
| 457 |
+
53136,Adrenocorticotrophic Hormone,Blood,Chemistry
|
| 458 |
+
50872,Anti-Neutrophil Cytoplasmic Antibody,Blood,Chemistry
|
| 459 |
+
50903,Cholesterol Ratio (Total/HDL),Blood,Chemistry
|
| 460 |
+
50962,N-Acetylprocainamide (NAPA),Blood,Chemistry
|
| 461 |
+
51001,Triiodothyronine (T3),Blood,Chemistry
|
| 462 |
+
51671,IFEgel,Blood,Chemistry
|
| 463 |
+
53131,5' Nucleotidase,Blood,Chemistry
|
| 464 |
+
50934,H,Blood,Chemistry
|
| 465 |
+
50937,Hepatitis A Virus Antibody,Blood,Chemistry
|
| 466 |
+
51614,Epstein-Barr Virus EBNA IgG Ab,Blood,Chemistry
|
| 467 |
+
51674,Immunoglobulin E,Blood,Chemistry
|
| 468 |
+
51737,STX6,Blood,Chemistry
|
| 469 |
+
51747,Treponemal Antibody Test,Blood,Chemistry
|
| 470 |
+
51760,Z,Blood,Chemistry
|
| 471 |
+
51768,EE6,Blood,Chemistry
|
| 472 |
+
53152,HIV FINAL,Blood,Chemistry
|
| 473 |
+
50853,25-OH Vitamin D,Blood,Chemistry
|
| 474 |
+
50856,Acetaminophen,Blood,Chemistry
|
| 475 |
+
50929,Gentamicin,Blood,Chemistry
|
| 476 |
+
51588,CMV IgM Ab,Blood,Chemistry
|
| 477 |
+
51591,Confirmation,Blood,Chemistry
|
| 478 |
+
51595,"Creatine Kinase, Isoenzyme MB",Blood,Chemistry
|
| 479 |
+
51603,Delete,Blood,Chemistry
|
| 480 |
+
51661,HPE5,Blood,Chemistry
|
| 481 |
+
51677,K (GREEN),Blood,Chemistry
|
| 482 |
+
51727,Send Out,Blood,Chemistry
|
| 483 |
+
53095,Lyme VsIE/PepC10 Antibody,Blood,Chemistry
|
| 484 |
+
51954,CDT027,Stool,Chemistry
|
| 485 |
+
51945,Norovirus Genogroup I,Stool,Chemistry
|
| 486 |
+
51953,Voided Specimen,Stool,Chemistry
|
| 487 |
+
51928,Alpha-1,Stool,Chemistry
|
| 488 |
+
51934,C Diff Toxin Antigen Assay,Stool,Chemistry
|
| 489 |
+
51941,"Glucose, Stool",Stool,Chemistry
|
| 490 |
+
51931,Beta,Stool,Chemistry
|
| 491 |
+
51937,"Creatinine, Stool",Stool,Chemistry
|
| 492 |
+
51064,"Potassium, Stool",Stool,Chemistry
|
| 493 |
+
51926,(Albumin),Stool,Chemistry
|
| 494 |
+
51951,"Urea Nitrogen, Stool",Stool,Chemistry
|
| 495 |
+
51061,"Bicarbonate, Stool",Stool,Chemistry
|
| 496 |
+
51947,O & P,Stool,Chemistry
|
| 497 |
+
51063,"Osmolality, Stool",Stool,Chemistry
|
| 498 |
+
51925,72 Hr Fat,Stool,Chemistry
|
| 499 |
+
51952,"Uric Acid, Stool",Stool,Chemistry
|
| 500 |
+
51062,"Chloride, Stool",Stool,Chemistry
|
| 501 |
+
51065,"Sodium, Stool",Stool,Chemistry
|
| 502 |
+
51935,"Cholesterol, Stool",Stool,Chemistry
|
| 503 |
+
51938,Cryptococ,Stool,Chemistry
|
| 504 |
+
51933,C. diff PCR,Stool,Chemistry
|
| 505 |
+
51930,"Amylase, Stool",Stool,Chemistry
|
| 506 |
+
51948,Sudan Stain,Stool,Chemistry
|
| 507 |
+
51946,Norovirus Genogroup II,Stool,Chemistry
|
| 508 |
+
51950,"Triglycerides, Stool",Stool,Chemistry
|
| 509 |
+
51944,"Lactate Dehydrogenase, Stool",Stool,Chemistry
|
| 510 |
+
51929,Alpha-2,Stool,Chemistry
|
| 511 |
+
51940,Gamma,Stool,Chemistry
|
| 512 |
+
51942,"IgG, Stool",Stool,Chemistry
|
| 513 |
+
51943,"Immunoelectrophoresis, Stool",Stool,Chemistry
|
| 514 |
+
51936,Clostrid,Stool,Chemistry
|
| 515 |
+
51927,"Albumin, Stool",Stool,Chemistry
|
| 516 |
+
51955,,Stool,Chemistry
|
| 517 |
+
51932,"Bilirubin, Total, Stool",Stool,Chemistry
|
| 518 |
+
51949,"Total Protein, Stool",Stool,Chemistry
|
| 519 |
+
51956,CDT027,Stool,Chemistry
|
| 520 |
+
51939,Fl Scan,Stool,Chemistry
|
| 521 |
+
51983,"Iron, Urine",Urine,Chemistry
|
| 522 |
+
51097,"Potassium, Urine",Urine,Chemistry
|
| 523 |
+
51967,Blood,Urine,Chemistry
|
| 524 |
+
51976,"Cortisol, Urine",Urine,Chemistry
|
| 525 |
+
51070,"Albumin/Creatinine, Urine",Urine,Chemistry
|
| 526 |
+
51988,O & P,Urine,Chemistry
|
| 527 |
+
52016,Z,Urine,Chemistry
|
| 528 |
+
52019,PAN2,Urine,Chemistry
|
| 529 |
+
51091,"Myoglobin, Urine",Urine,Chemistry
|
| 530 |
+
51073,"Amylase/Creatinine Ratio, Urine",Urine,Chemistry
|
| 531 |
+
51081,"Creatinine, Serum",Urine,Chemistry
|
| 532 |
+
51079,"Cocaine, Urine",Urine,Chemistry
|
| 533 |
+
51995,Study Urine,Urine,Chemistry
|
| 534 |
+
52004,UTX1,Urine,Chemistry
|
| 535 |
+
51098,"Prot. Electrophoresis, Urine",Urine,Chemistry
|
| 536 |
+
51986,Neisseria gonorrhoeae,Urine,Chemistry
|
| 537 |
+
51071,"Amphetamine Screen, Urine",Urine,Chemistry
|
| 538 |
+
51072,"Amylase, Urine",Urine,Chemistry
|
| 539 |
+
51086,"Immunofixation, Urine",Urine,Chemistry
|
| 540 |
+
51987,Nitrite,Urine,Chemistry
|
| 541 |
+
52006,UTX3,Urine,Chemistry
|
| 542 |
+
52014,Voided Specimen,Urine,Chemistry
|
| 543 |
+
51066,24 hr Calcium,Urine,Chemistry
|
| 544 |
+
51957,17-Hydroxycorticosteroids,Urine,Chemistry
|
| 545 |
+
51989,Oxycodone,Urine,Chemistry
|
| 546 |
+
52017,"Zinc, Urine",Urine,Chemistry
|
| 547 |
+
51994,Specific Gravity,Urine,Chemistry
|
| 548 |
+
51069,"Albumin, Urine",Urine,Chemistry
|
| 549 |
+
51991,"Propoxyphene, Urine",Urine,Chemistry
|
| 550 |
+
51102,"Total Protein, Urine",Urine,Chemistry
|
| 551 |
+
52013,Vanillylmandelic Acid,Urine,Chemistry
|
| 552 |
+
51084,"Glucose, Urine",Urine,Chemistry
|
| 553 |
+
51089,Marijuana,Urine,Chemistry
|
| 554 |
+
51966,Bilirubin,Urine,Chemistry
|
| 555 |
+
51984,Ketone,Urine,Chemistry
|
| 556 |
+
51998,UPEPgel,Urine,Chemistry
|
| 557 |
+
51083,"Ethanol, Urine",Urine,Chemistry
|
| 558 |
+
51104,"Urea Nitrogen, Urine",Urine,Chemistry
|
| 559 |
+
51960,Aldolase,Urine,Chemistry
|
| 560 |
+
51972,Chlamydia trachomatis,Urine,Chemistry
|
| 561 |
+
51974,"Copper, Urine",Urine,Chemistry
|
| 562 |
+
52008,UTX5,Urine,Chemistry
|
| 563 |
+
52015,Xylose,Urine,Chemistry
|
| 564 |
+
52018,PAN1,Urine,Chemistry
|
| 565 |
+
51095,"Phosphate, Urine",Urine,Chemistry
|
| 566 |
+
52007,UTX4,Urine,Chemistry
|
| 567 |
+
51999,Urine Amylase,Urine,Chemistry
|
| 568 |
+
51080,Creatinine Clearance,Urine,Chemistry
|
| 569 |
+
51100,"Sodium, Urine",Urine,Chemistry
|
| 570 |
+
51968,Camp,Urine,Chemistry
|
| 571 |
+
52730,pH,Urine,Chemistry
|
| 572 |
+
51090,"Methadone, Urine",Urine,Chemistry
|
| 573 |
+
51093,"Osmolality, Urine",Urine,Chemistry
|
| 574 |
+
51068,24 hr Protein,Urine,Chemistry
|
| 575 |
+
52009,UTX6,Urine,Chemistry
|
| 576 |
+
52012,UTX9,Urine,Chemistry
|
| 577 |
+
51096,Porphobilinogen Screen,Urine,Chemistry
|
| 578 |
+
51959,"5-HIAA, Urine",Urine,Chemistry
|
| 579 |
+
52703,"Albumin, Urine",Urine,Chemistry
|
| 580 |
+
51067,24 hr Creatinine,Urine,Chemistry
|
| 581 |
+
51087,Length of Urine Collection,Urine,Chemistry
|
| 582 |
+
51106,Urine Creatinine,Urine,Chemistry
|
| 583 |
+
51105,"Uric Acid, Urine",Urine,Chemistry
|
| 584 |
+
51971,Ccoc,Urine,Chemistry
|
| 585 |
+
52720,"HCG, Urine, Qualitative",Urine,Chemistry
|
| 586 |
+
52020,UTX10,Urine,Chemistry
|
| 587 |
+
51980,Fentanyl,Urine,Chemistry
|
| 588 |
+
51996,Trichomonas vaginalis,Urine,Chemistry
|
| 589 |
+
51078,"Chloride, Urine",Urine,Chemistry
|
| 590 |
+
51103,Uhold,Urine,Chemistry
|
| 591 |
+
51978,DirList,Urine,Chemistry
|
| 592 |
+
51981,Glucose,Urine,Chemistry
|
| 593 |
+
51076,"Bicarbonate, Urine",Urine,Chemistry
|
| 594 |
+
51088,"Magnesium, Urine",Urine,Chemistry
|
| 595 |
+
51092,"Opiate Screen, Urine",Urine,Chemistry
|
| 596 |
+
51074,"Barbiturate Screen, Urine",Urine,Chemistry
|
| 597 |
+
51964,"Amylase, Serum",Urine,Chemistry
|
| 598 |
+
51973,Copi,Urine,Chemistry
|
| 599 |
+
52002,Urobilinogen,Urine,Chemistry
|
| 600 |
+
51101,Total Collection Time,Urine,Chemistry
|
| 601 |
+
51982,"Immunoelectrophoresis, Urine",Urine,Chemistry
|
| 602 |
+
51099,Protein/Creatinine Ratio,Urine,Chemistry
|
| 603 |
+
51109,"Urine Volume, Total",Urine,Chemistry
|
| 604 |
+
51969,"Catecholamines, Urine",Urine,Chemistry
|
| 605 |
+
51977,"Creatinine, Blood",Urine,Chemistry
|
| 606 |
+
51997,UIFEgel,Urine,Chemistry
|
| 607 |
+
51970,Cben,Urine,Chemistry
|
| 608 |
+
51993,Referred,Urine,Chemistry
|
| 609 |
+
51107,"Urine tube, held",Urine,Chemistry
|
| 610 |
+
51958,"17-Ketosteroids, Urine",Urine,Chemistry
|
| 611 |
+
51962,Alpha-2,Urine,Chemistry
|
| 612 |
+
52005,UTX2,Urine,Chemistry
|
| 613 |
+
51075,"Benzodiazepine Screen, Urine",Urine,Chemistry
|
| 614 |
+
51992,Protein,Urine,Chemistry
|
| 615 |
+
51961,Alpha-1,Urine,Chemistry
|
| 616 |
+
51963,Amylase/Creatinine Clearance,Urine,Chemistry
|
| 617 |
+
51965,Beta,Urine,Chemistry
|
| 618 |
+
51985,Leukocytes,Urine,Chemistry
|
| 619 |
+
51979,"Estriol, Urine",Urine,Chemistry
|
| 620 |
+
51990,"Phenothiazine Screen, Urine",Urine,Chemistry
|
| 621 |
+
51085,"HCG, Urine, Qualitative",Urine,Chemistry
|
| 622 |
+
52000,Urine Creatinine,Urine,Chemistry
|
| 623 |
+
52003,Uroporphyrins,Urine,Chemistry
|
| 624 |
+
51094,pH,Urine,Chemistry
|
| 625 |
+
51108,Urine Volume,Urine,Chemistry
|
| 626 |
+
52011,UTX8,Urine,Chemistry
|
| 627 |
+
51082,"Creatinine, Urine",Urine,Chemistry
|
| 628 |
+
52010,UTX7,Urine,Chemistry
|
| 629 |
+
51077,"Calcium, Urine",Urine,Chemistry
|
| 630 |
+
51975,Coproporphyrins,Urine,Chemistry
|
| 631 |
+
52001,"Urine PEP, Gamma region",Urine,Chemistry
|
| 632 |
+
50839,"Chloride, Ascites",Ascites,Chemistry
|
| 633 |
+
50846,"Osmolality, Ascites",Ascites,Chemistry
|
| 634 |
+
50838,"Bilirubin, Total, Ascites",Ascites,Chemistry
|
| 635 |
+
53123,"Immunoelectrophoresis, Ascites",Ascites,Chemistry
|
| 636 |
+
50845,"Miscellaneous, Ascites",Ascites,Chemistry
|
| 637 |
+
50844,"Lipase, Ascites",Ascites,Chemistry
|
| 638 |
+
50847,"Potassium, Ascites",Ascites,Chemistry
|
| 639 |
+
53117,Alpha-1,Ascites,Chemistry
|
| 640 |
+
50837,"Bicarbonate, Ascites",Ascites,Chemistry
|
| 641 |
+
53118,Alpha-2,Ascites,Chemistry
|
| 642 |
+
53120,Clostrid,Ascites,Chemistry
|
| 643 |
+
50851,"Urea Nitrogen, Ascites",Ascites,Chemistry
|
| 644 |
+
53119,Beta,Ascites,Chemistry
|
| 645 |
+
53126,"Uric Acid, Ascites",Ascites,Chemistry
|
| 646 |
+
50841,"Creatinine, Ascites",Ascites,Chemistry
|
| 647 |
+
50840,"Cholesterol, Ascites",Ascites,Chemistry
|
| 648 |
+
50835,"Albumin, Ascites",Ascites,Chemistry
|
| 649 |
+
53121,Cryptococ,Ascites,Chemistry
|
| 650 |
+
53116,(Albumin),Ascites,Chemistry
|
| 651 |
+
53122,Fl Scan,Ascites,Chemistry
|
| 652 |
+
50848,"Sodium, Ascites",Ascites,Chemistry
|
| 653 |
+
50849,"Total Protein, Ascites",Ascites,Chemistry
|
| 654 |
+
53124,"Immunoglobulin G, Ascites",Ascites,Chemistry
|
| 655 |
+
50836,"Amylase, Ascites",Ascites,Chemistry
|
| 656 |
+
50850,"Triglycerides, Ascites",Ascites,Chemistry
|
| 657 |
+
50843,"Lactate Dehydrogenase, Ascites",Ascites,Chemistry
|
| 658 |
+
53125,"PEP, Ascites, Gamma Region",Ascites,Chemistry
|
| 659 |
+
50842,"Glucose, Ascites",Ascites,Chemistry
|
| 660 |
+
53127,Voided Specimen,Ascites,Chemistry
|
| 661 |
+
51910,(Albumin),Pleural,Chemistry
|
| 662 |
+
51052,"Creatinine, Pleural",Pleural,Chemistry
|
| 663 |
+
51915,Cryptococ,Pleural,Chemistry
|
| 664 |
+
51046,"Albumin, Pleural",Pleural,Chemistry
|
| 665 |
+
51913,Beta,Pleural,Chemistry
|
| 666 |
+
51048,"Bicarbonate, Pleural",Pleural,Chemistry
|
| 667 |
+
51047,"Amylase, Pleural",Pleural,Chemistry
|
| 668 |
+
51051,"Cholesterol, Pleural",Pleural,Chemistry
|
| 669 |
+
51055,"Lipase, Pleural",Pleural,Chemistry
|
| 670 |
+
51056,"Miscellaneous, Pleural",Pleural,Chemistry
|
| 671 |
+
51920,"PEP, Pleural, Gamma Region",Pleural,Chemistry
|
| 672 |
+
51911,Alpha-1,Pleural,Chemistry
|
| 673 |
+
51918,"Immunoglobulin G, Pleural",Pleural,Chemistry
|
| 674 |
+
51060,"Triglycerides, Pleural",Pleural,Chemistry
|
| 675 |
+
51050,"Chloride, Pleural",Pleural,Chemistry
|
| 676 |
+
51919,"Osmolality, Pleural",Pleural,Chemistry
|
| 677 |
+
51058,"Sodium, Pleural",Pleural,Chemistry
|
| 678 |
+
51921,"proBNP, Pleural",Pleural,Chemistry
|
| 679 |
+
51912,Alpha-2,Pleural,Chemistry
|
| 680 |
+
51923,"Uric Acid, Pleural",Pleural,Chemistry
|
| 681 |
+
51049,"Bilirubin, Total, Pleural",Pleural,Chemistry
|
| 682 |
+
51059,"Total Protein, Pleural",Pleural,Chemistry
|
| 683 |
+
51914,Clostrid,Pleural,Chemistry
|
| 684 |
+
51054,"Lactate Dehydrogenase, Pleural",Pleural,Chemistry
|
| 685 |
+
51917,"Immunoelectrophoresis, Pleural",Pleural,Chemistry
|
| 686 |
+
51057,"Potassium, Pleural",Pleural,Chemistry
|
| 687 |
+
51916,Fl Scan,Pleural,Chemistry
|
| 688 |
+
51924,Voided Specimen,Pleural,Chemistry
|
| 689 |
+
51053,"Glucose, Pleural",Pleural,Chemistry
|
| 690 |
+
51922,"Urea Nitrogen, Pleural",Pleural,Chemistry
|
| 691 |
+
51828,Voided Specimen,Bone Marrow,Chemistry
|
| 692 |
+
51809,Alpha-2,Joint Fluid,Chemistry
|
| 693 |
+
51810,Beta,Joint Fluid,Chemistry
|
| 694 |
+
51812,"Bilirubin, Total, Joint Fluid",Joint Fluid,Chemistry
|
| 695 |
+
51824,"Triglycerides, Joint Fluid",Joint Fluid,Chemistry
|
| 696 |
+
51814,"Cholesterol, Joint Fluid",Joint Fluid,Chemistry
|
| 697 |
+
51023,"LD, Joint Fluid",Joint Fluid,Chemistry
|
| 698 |
+
51816,Cryptococ,Joint Fluid,Chemistry
|
| 699 |
+
51825,"Urea Nitrogen, Joint Fluid",Joint Fluid,Chemistry
|
| 700 |
+
51019,"Albumin, Joint Fluid",Joint Fluid,Chemistry
|
| 701 |
+
51020,"Amylase, Joint Fluid",Joint Fluid,Chemistry
|
| 702 |
+
51024,"Total Protein, Joint Fluid",Joint Fluid,Chemistry
|
| 703 |
+
51807,(Albumin),Joint Fluid,Chemistry
|
| 704 |
+
51815,Clostrid,Joint Fluid,Chemistry
|
| 705 |
+
51826,"Uric Acid, Joint Fluid",Joint Fluid,Chemistry
|
| 706 |
+
51808,Alpha-1,Joint Fluid,Chemistry
|
| 707 |
+
51823,"Sodium, Joint Fluid",Joint Fluid,Chemistry
|
| 708 |
+
51818,"IgG, Joint Fluid",Joint Fluid,Chemistry
|
| 709 |
+
51022,"Glucose, Joint Fluid",Joint Fluid,Chemistry
|
| 710 |
+
51822,"Potassium, Joint Fluid",Joint Fluid,Chemistry
|
| 711 |
+
51819,"Immunoelectrophoresis, Joint Fluid",Joint Fluid,Chemistry
|
| 712 |
+
51821,"PEP, Joint Fluid, Gamma Region",Joint Fluid,Chemistry
|
| 713 |
+
51813,"Chloride, Joint Fluid",Joint Fluid,Chemistry
|
| 714 |
+
51817,Fl Scan,Joint Fluid,Chemistry
|
| 715 |
+
51820,"Osmolality, Joint Fluid",Joint Fluid,Chemistry
|
| 716 |
+
51827,Voided Specimen,Joint Fluid,Chemistry
|
| 717 |
+
51021,"Creatinine, Joint Fluid",Joint Fluid,Chemistry
|
| 718 |
+
51811,"Bicarbonate,Joint Fluid",Joint Fluid,Chemistry
|
| 719 |
+
51840,Beta,Other Body Fluid,Chemistry
|
| 720 |
+
51861,"Immunoelectrophoresis, Fluid",Other Body Fluid,Chemistry
|
| 721 |
+
51869,"Influenza A, Rapid Antigen",Other Body Fluid,Chemistry
|
| 722 |
+
51894,"Strep A, Rapid Antigen",Other Body Fluid,Chemistry
|
| 723 |
+
51025,"Albumin, Body Fluid",Other Body Fluid,Chemistry
|
| 724 |
+
51858,HIV 1 Viral Load,Other Body Fluid,Chemistry
|
| 725 |
+
51882,O & P,Other Body Fluid,Chemistry
|
| 726 |
+
51865,Influenza A by PCR,Other Body Fluid,Chemistry
|
| 727 |
+
51841,"Blood, Occult",Other Body Fluid,Chemistry
|
| 728 |
+
51876,"L/S Ratio, Amniotic Fluid",Other Body Fluid,Chemistry
|
| 729 |
+
51877,MRSA PCR,Other Body Fluid,Chemistry
|
| 730 |
+
51838,Alpha-2,Other Body Fluid,Chemistry
|
| 731 |
+
51895,"Strep A, Rapid Antigen",Other Body Fluid,Chemistry
|
| 732 |
+
51843,C. diff PCR,Other Body Fluid,Chemistry
|
| 733 |
+
51042,"Sodium, Body Fluid",Other Body Fluid,Chemistry
|
| 734 |
+
51893,Staph aureus PCR,Other Body Fluid,Chemistry
|
| 735 |
+
51036,"Lipase, Body Fluid",Other Body Fluid,Chemistry
|
| 736 |
+
51829,72 Hr Fat,Other Body Fluid,Chemistry
|
| 737 |
+
51857,Fl Scan,Other Body Fluid,Chemistry
|
| 738 |
+
53115,RSV2,Other Body Fluid,Chemistry
|
| 739 |
+
51027,"Bicarbonate, Other Fluid",Other Body Fluid,Chemistry
|
| 740 |
+
51033,FetalFN,Other Body Fluid,Chemistry
|
| 741 |
+
51037,"Magnesium, Body Fluid",Other Body Fluid,Chemistry
|
| 742 |
+
51870,"Influenza A, Rapid Antigen",Other Body Fluid,Chemistry
|
| 743 |
+
53114,RSV1,Other Body Fluid,Chemistry
|
| 744 |
+
51847,Clostrid,Other Body Fluid,Chemistry
|
| 745 |
+
51881,Norovirus Genogroup II,Other Body Fluid,Chemistry
|
| 746 |
+
51854,Cryptococ,Other Body Fluid,Chemistry
|
| 747 |
+
51899,Trichomonas vaginalis,Other Body Fluid,Chemistry
|
| 748 |
+
51839,Anat Path Hold,Other Body Fluid,Chemistry
|
| 749 |
+
53099,COV12,Other Body Fluid,Chemistry
|
| 750 |
+
53110,FLUB2,Other Body Fluid,Chemistry
|
| 751 |
+
51862,"Immunoglobulin G, Body Fluid",Other Body Fluid,Chemistry
|
| 752 |
+
51889,Phosphatidylglycerol,Other Body Fluid,Chemistry
|
| 753 |
+
51038,"Miscellaneous, Body Fluid",Other Body Fluid,Chemistry
|
| 754 |
+
53098,COV11,Other Body Fluid,Chemistry
|
| 755 |
+
53107,FLUA1,Other Body Fluid,Chemistry
|
| 756 |
+
53113,Rapid Respiratory Syncytial Virus,Other Body Fluid,Chemistry
|
| 757 |
+
51029,"Calcium, Body Fluid",Other Body Fluid,Chemistry
|
| 758 |
+
51026,"Amylase, Body Fluid",Other Body Fluid,Chemistry
|
| 759 |
+
51028,"Bilirubin, Total, Body Fluid",Other Body Fluid,Chemistry
|
| 760 |
+
51040,"Phosphate, Body Fluid",Other Body Fluid,Chemistry
|
| 761 |
+
53106,E GENE ENDPT,Other Body Fluid,Chemistry
|
| 762 |
+
51035,"LD, Body Fluid",Other Body Fluid,Chemistry
|
| 763 |
+
51833,"AFP, Amniotic Fluid",Other Body Fluid,Chemistry
|
| 764 |
+
51901,Voided Specimen,Other Body Fluid,Chemistry
|
| 765 |
+
51887,"PEP, Body Fluid",Other Body Fluid,Chemistry
|
| 766 |
+
53105,E GENE CT,Other Body Fluid,Chemistry
|
| 767 |
+
51045,"Urea Nitrogen, Body Fluid",Other Body Fluid,Chemistry
|
| 768 |
+
51831,Acid MAO,Other Body Fluid,Chemistry
|
| 769 |
+
51872,Influenza B by PCR,Other Body Fluid,Chemistry
|
| 770 |
+
51031,"Cholesterol, Body Fluid",Other Body Fluid,Chemistry
|
| 771 |
+
51842,Bun,Other Body Fluid,Chemistry
|
| 772 |
+
51856,Epr,Other Body Fluid,Chemistry
|
| 773 |
+
51897,Surfactant/Albumin,Other Body Fluid,Chemistry
|
| 774 |
+
51907,reuse1,Other Body Fluid,Chemistry
|
| 775 |
+
51874,"Influenza B, Rapid Antigen",Other Body Fluid,Chemistry
|
| 776 |
+
51905, ,Other Body Fluid,Chemistry
|
| 777 |
+
51044,Triglycer,Other Body Fluid,Chemistry
|
| 778 |
+
53109,FLUB1,Other Body Fluid,Chemistry
|
| 779 |
+
53112,N2 GENE ENDPT,Other Body Fluid,Chemistry
|
| 780 |
+
51880,Norovirus Genogroup I,Other Body Fluid,Chemistry
|
| 781 |
+
51835,(Albumi,Other Body Fluid,Chemistry
|
| 782 |
+
51030,"Chloride, Body Fluid",Other Body Fluid,Chemistry
|
| 783 |
+
51896,Sudan Stain,Other Body Fluid,Chemistry
|
| 784 |
+
51837,Alpha-1,Other Body Fluid,Chemistry
|
| 785 |
+
51844,C diff Toxin Antigen Assay,Other Body Fluid,Chemistry
|
| 786 |
+
51846,Chlamydia trachomatis,Other Body Fluid,Chemistry
|
| 787 |
+
51875,"Influenza B, Rapid Antigen",Other Body Fluid,Chemistry
|
| 788 |
+
51855,"DSPC, Amniotic Fluid",Other Body Fluid,Chemistry
|
| 789 |
+
53108,FLUA2,Other Body Fluid,Chemistry
|
| 790 |
+
51041,"Potassium, Body Fluid",Other Body Fluid,Chemistry
|
| 791 |
+
51904,PAN2,Other Body Fluid,Chemistry
|
| 792 |
+
51902,Vpf,Other Body Fluid,Chemistry
|
| 793 |
+
51906,reuse,Other Body Fluid,Chemistry
|
| 794 |
+
51032,"Creatinine, Body Fluid",Other Body Fluid,Chemistry
|
| 795 |
+
51898,Surf/Alb,Other Body Fluid,Chemistry
|
| 796 |
+
51834,"AFP, Body Fluid",Other Body Fluid,Chemistry
|
| 797 |
+
51039,"Osmolality, Body Fluid",Other Body Fluid,Chemistry
|
| 798 |
+
51888,"PEP, Body Fluid, Gamma Region",Other Body Fluid,Chemistry
|
| 799 |
+
51900,"Uric Acid, Body Fluid",Other Body Fluid,Chemistry
|
| 800 |
+
53100,COV13,Other Body Fluid,Chemistry
|
| 801 |
+
53111,N2 GENE CT,Other Body Fluid,Chemistry
|
| 802 |
+
53097,COV10,Other Body Fluid,Chemistry
|
| 803 |
+
51043,"Total Protein, Body Fluid",Other Body Fluid,Chemistry
|
| 804 |
+
51873,Influenza B by PCR,Other Body Fluid,Chemistry
|
| 805 |
+
51903,PAN1,Other Body Fluid,Chemistry
|
| 806 |
+
51034,"Glucose, Body Fluid",Other Body Fluid,Chemistry
|
| 807 |
+
51864,Influenza A by PCR,Other Body Fluid,Chemistry
|
| 808 |
+
51836,<Albumin>,Other Body Fluid,Chemistry
|
| 809 |
+
51830,Acid BAO,Other Body Fluid,Chemistry
|
| 810 |
+
51879,Neisseria gonorrhoeae,Other Body Fluid,Chemistry
|
| 811 |
+
51799,"PEP, CSF, Gamma Region",Cerebrospinal Fluid,Chemistry
|
| 812 |
+
51785,"Cholesterol, CSF",Cerebrospinal Fluid,Chemistry
|
| 813 |
+
51800,"Potassium, CSF",Cerebrospinal Fluid,Chemistry
|
| 814 |
+
51795,"Lactate Dehydrogenase, CSF",Cerebrospinal Fluid,Chemistry
|
| 815 |
+
51790,"Glucose, CSF",Cerebrospinal Fluid,Chemistry
|
| 816 |
+
51788,Cryptococ,Cerebrospinal Fluid,Chemistry
|
| 817 |
+
51794,"Immunoglobulin G, CSF",Cerebrospinal Fluid,Chemistry
|
| 818 |
+
51806,Voided Specimen,Cerebrospinal Fluid,Chemistry
|
| 819 |
+
51789,Fl Scan,Cerebrospinal Fluid,Chemistry
|
| 820 |
+
51793,"Immunoglobulin G, CSF",Cerebrospinal Fluid,Chemistry
|
| 821 |
+
51796,"Miscellaneous, CSF",Cerebrospinal Fluid,Chemistry
|
| 822 |
+
51787,"Creatinine, CSF",Cerebrospinal Fluid,Chemistry
|
| 823 |
+
51802,"Total Protein, CSF",Cerebrospinal Fluid,Chemistry
|
| 824 |
+
51778,Alpha-1,Cerebrospinal Fluid,Chemistry
|
| 825 |
+
51779,Alpha-2,Cerebrospinal Fluid,Chemistry
|
| 826 |
+
51792,"Immunoelectrophoresis, CSF",Cerebrospinal Fluid,Chemistry
|
| 827 |
+
51780,"Amylase, CSF",Cerebrospinal Fluid,Chemistry
|
| 828 |
+
51782,"Bicarbonate, CSF",Cerebrospinal Fluid,Chemistry
|
| 829 |
+
51805,"Uric Acid, CSF",Cerebrospinal Fluid,Chemistry
|
| 830 |
+
51783,"Bilirubin, Total, CSF",Cerebrospinal Fluid,Chemistry
|
| 831 |
+
51776,<Albumin>,Cerebrospinal Fluid,Chemistry
|
| 832 |
+
51775,(Albumin),Cerebrospinal Fluid,Chemistry
|
| 833 |
+
51777,"Albumin, CSF",Cerebrospinal Fluid,Chemistry
|
| 834 |
+
51801,"Sodium, CSF",Cerebrospinal Fluid,Chemistry
|
| 835 |
+
51798,"PEP, CSF",Cerebrospinal Fluid,Chemistry
|
| 836 |
+
51786,Clostrid,Cerebrospinal Fluid,Chemistry
|
| 837 |
+
51797,"Osmolality, CSF",Cerebrospinal Fluid,Chemistry
|
| 838 |
+
51784,"Chloride, CSF",Cerebrospinal Fluid,Chemistry
|
| 839 |
+
51791,HIV 1 Viral Load,Cerebrospinal Fluid,Chemistry
|
| 840 |
+
51803,"Triglycerides, CSF",Cerebrospinal Fluid,Chemistry
|
| 841 |
+
51804,"Urea Nitrogen, CSF",Cerebrospinal Fluid,Chemistry
|
| 842 |
+
51781,Beta,Cerebrospinal Fluid,Chemistry
|
| 843 |
+
52290,Dna,I,Hematology
|
| 844 |
+
52398,FL2-%FL1,Q,Hematology
|
| 845 |
+
52397,FL2-D,Q,Hematology
|
| 846 |
+
52401,SSC-D,Q,Hematology
|
| 847 |
+
52396,FL1-S,Q,Hematology
|
| 848 |
+
52402,SSC-S,Q,Hematology
|
| 849 |
+
52395,FL1-%FL2,Q,Hematology
|
| 850 |
+
52400,FSC-S,Q,Hematology
|
| 851 |
+
52394,FL1-D,Q,Hematology
|
| 852 |
+
52399,FL2-S,Q,Hematology
|
| 853 |
+
51138,Anticardiolipin Antibody IgG,Blood,Hematology
|
| 854 |
+
51163,CD16/56%,Blood,Hematology
|
| 855 |
+
51201,Epinepherine,Blood,Hematology
|
| 856 |
+
51229,"Heparin, LMW",Blood,Hematology
|
| 857 |
+
51254,Monocytes,Blood,Hematology
|
| 858 |
+
51259,Other Cells,Blood,Hematology
|
| 859 |
+
52145,Mono Spot Test,Blood,Hematology
|
| 860 |
+
52169,QFib,Blood,Hematology
|
| 861 |
+
52205,RetScat,Blood,Hematology
|
| 862 |
+
52769,Absolute Lymphocyte Count,Blood,Hematology
|
| 863 |
+
52853,Factor XII,Blood,Hematology
|
| 864 |
+
51155,CD11c,Blood,Hematology
|
| 865 |
+
51267,Poikilocytosis,Blood,Hematology
|
| 866 |
+
51273,"Protein S, Functional",Blood,Hematology
|
| 867 |
+
51280,Reptilase Time,Blood,Hematology
|
| 868 |
+
52092,CD56 %,Blood,Hematology
|
| 869 |
+
52130,Histiocytes,Blood,Hematology
|
| 870 |
+
52138,Kct,Blood,Hematology
|
| 871 |
+
52154,P2Y12 Reaction Units,Blood,Hematology
|
| 872 |
+
52934,"Reticulocyte Count, Manual",Blood,Hematology
|
| 873 |
+
51189,CD57,Blood,Hematology
|
| 874 |
+
51205,Factor VII,Blood,Hematology
|
| 875 |
+
51252,Microcytes,Blood,Hematology
|
| 876 |
+
51279,Red Blood Cells,Blood,Hematology
|
| 877 |
+
51291,Sickle Cells,Blood,Hematology
|
| 878 |
+
52083,Autohem+g,Blood,Hematology
|
| 879 |
+
52186,Test,Blood,Hematology
|
| 880 |
+
51167,CD2,Blood,Hematology
|
| 881 |
+
52098,Clot Lysis,Blood,Hematology
|
| 882 |
+
52113,Factor IX Inhibitor,Blood,Hematology
|
| 883 |
+
52189,Thrombin Time Control,Blood,Hematology
|
| 884 |
+
52204,RBCDist,Blood,Hematology
|
| 885 |
+
51187,CD55,Blood,Hematology
|
| 886 |
+
51230,HLA-DR,Blood,Hematology
|
| 887 |
+
51233,Hypochromia,Blood,Hematology
|
| 888 |
+
52135,Immature Granulocytes,Blood,Hematology
|
| 889 |
+
52181,Stomatocyte,Blood,Hematology
|
| 890 |
+
52195,Voided Specimen,Blood,Hematology
|
| 891 |
+
51224,Hemoglobin C,Blood,Hematology
|
| 892 |
+
51276,Quantitative G6PD,Blood,Hematology
|
| 893 |
+
52082,Aspirin Reactivity,Blood,Hematology
|
| 894 |
+
52096,Chloroacetate,Blood,Hematology
|
| 895 |
+
52144,Methemoglobin,Blood,Hematology
|
| 896 |
+
52146,Naphtol Acetate Stain,Blood,Hematology
|
| 897 |
+
52163,PT Control,Blood,Hematology
|
| 898 |
+
51180,"CD4 Cells, Percent",Blood,Hematology
|
| 899 |
+
52077,Acidserum,Blood,Hematology
|
| 900 |
+
52102,Crenated Cells,Blood,Hematology
|
| 901 |
+
52103,Cross Imm,Blood,Hematology
|
| 902 |
+
52147,NEUTX,Blood,Hematology
|
| 903 |
+
52156,Peroxidase Staining,Blood,Hematology
|
| 904 |
+
52159,Platelet Aggregation,Blood,Hematology
|
| 905 |
+
51135,ADP,Blood,Hematology
|
| 906 |
+
51153,CD103,Blood,Hematology
|
| 907 |
+
51268,Polychromasia,Blood,Hematology
|
| 908 |
+
52203,RBCAgg,Blood,Hematology
|
| 909 |
+
52208,BasoFlg,Blood,Hematology
|
| 910 |
+
51143,Atypical Lymphocytes,Blood,Hematology
|
| 911 |
+
51147,Bite Cells,Blood,Hematology
|
| 912 |
+
51184,CD5,Blood,Hematology
|
| 913 |
+
51196,D-Dimer,Blood,Hematology
|
| 914 |
+
51199,Eosinophil Count,Blood,Hematology
|
| 915 |
+
52173,Red Blood Cell Enzyme,Blood,Hematology
|
| 916 |
+
52215,ATLFlg,Blood,Hematology
|
| 917 |
+
51154,CD117,Blood,Hematology
|
| 918 |
+
52115,Fibrinoge,Blood,Hematology
|
| 919 |
+
52182,Sudan Black Staining,Blood,Hematology
|
| 920 |
+
51142,Arachadonic Acid,Blood,Hematology
|
| 921 |
+
51177,CD33,Blood,Hematology
|
| 922 |
+
51178,CD34,Blood,Hematology
|
| 923 |
+
51217,Glyco A,Blood,Hematology
|
| 924 |
+
51244,Lymphocytes,Blood,Hematology
|
| 925 |
+
52153,Other Inhibitor,Blood,Hematology
|
| 926 |
+
52174,"Reptilase Time, Control",Blood,Hematology
|
| 927 |
+
52188,Thrombin Time Control,Blood,Hematology
|
| 928 |
+
51150,Blood Parasite Smear,Blood,Hematology
|
| 929 |
+
51169,CD20 %,Blood,Hematology
|
| 930 |
+
51227,Hemogloblin S,Blood,Hematology
|
| 931 |
+
51272,"Protein S, Antigen",Blood,Hematology
|
| 932 |
+
51290,Sickle Cell Preparation,Blood,Hematology
|
| 933 |
+
52072,Absolute CD56 Count,Blood,Hematology
|
| 934 |
+
52084,Autohem-g,Blood,Hematology
|
| 935 |
+
52219,WBCScat,Blood,Hematology
|
| 936 |
+
51186,CD5 Absolute Count,Blood,Hematology
|
| 937 |
+
51188,CD56,Blood,Hematology
|
| 938 |
+
51245,"Lymphocytes, Percent",Blood,Hematology
|
| 939 |
+
52095,CD62,Blood,Hematology
|
| 940 |
+
52120,Fitzgerld,Blood,Hematology
|
| 941 |
+
52160,Prekallekrein,Blood,Hematology
|
| 942 |
+
52178,SCT - Normalized Ratio,Blood,Hematology
|
| 943 |
+
52187,Thrombin Time,Blood,Hematology
|
| 944 |
+
52921,PT,Blood,Hematology
|
| 945 |
+
52126,Heinz Aph,Blood,Hematology
|
| 946 |
+
52190,Tissue Thromboplastin Inhibitor,Blood,Hematology
|
| 947 |
+
51132,Absolute CD8 Count,Blood,Hematology
|
| 948 |
+
51140,Antithrombin,Blood,Hematology
|
| 949 |
+
51141,APT Test,Blood,Hematology
|
| 950 |
+
51212,Fetal Hemoglobin,Blood,Hematology
|
| 951 |
+
51214,"Fibrinogen, Functional",Blood,Hematology
|
| 952 |
+
51235,Inhibitor Screen,Blood,Hematology
|
| 953 |
+
52093,CD56 Absolute Count,Blood,Hematology
|
| 954 |
+
52139,LE Prep,Blood,Hematology
|
| 955 |
+
52210,LeftShf,Blood,Hematology
|
| 956 |
+
51270,"Protein C, Antigen",Blood,Hematology
|
| 957 |
+
52091,CD52,Blood,Hematology
|
| 958 |
+
52111,Echinocytes,Blood,Hematology
|
| 959 |
+
51202,Factor II,Blood,Hematology
|
| 960 |
+
51234,Immunophenotyping,Blood,Hematology
|
| 961 |
+
51255,Myelocytes,Blood,Hematology
|
| 962 |
+
52086,Bleed Tm,Blood,Hematology
|
| 963 |
+
52129,Hemoglobin Other,Blood,Hematology
|
| 964 |
+
52200,PltDist,Blood,Hematology
|
| 965 |
+
52206,RetFlg,Blood,Hematology
|
| 966 |
+
51208,Factor X,Blood,Hematology
|
| 967 |
+
51226,Hemogloblin A,Blood,Hematology
|
| 968 |
+
52107,dRVVT - Confirmation,Blood,Hematology
|
| 969 |
+
52136,Inhibitor,Blood,Hematology
|
| 970 |
+
52786,Bleeding Time,Blood,Hematology
|
| 971 |
+
51146,Basophils,Blood,Hematology
|
| 972 |
+
51182,CD41,Blood,Hematology
|
| 973 |
+
51260,Ovalocytes,Blood,Hematology
|
| 974 |
+
51139,Anticardiolipin Antibody IgM,Blood,Hematology
|
| 975 |
+
52116,Fibrinogen,Blood,Hematology
|
| 976 |
+
52162,Protein S,Blood,Hematology
|
| 977 |
+
52172,RDW-SD,Blood,Hematology
|
| 978 |
+
52192,Trap Stain,Blood,Hematology
|
| 979 |
+
51210,Factor XII,Blood,Hematology
|
| 980 |
+
51240,Large Platelets,Blood,Hematology
|
| 981 |
+
51249,MCHC,Blood,Hematology
|
| 982 |
+
51258,Osmotic Fragility,Blood,Hematology
|
| 983 |
+
51281,Reptilase Time Control,Blood,Hematology
|
| 984 |
+
52068,24 Hr,Blood,Hematology
|
| 985 |
+
52220,wbcp,Blood,Hematology
|
| 986 |
+
51174,CD3 %,Blood,Hematology
|
| 987 |
+
51176,"CD3 Cells, Percent",Blood,Hematology
|
| 988 |
+
51269,Promyelocytes,Blood,Hematology
|
| 989 |
+
52168,Pyruvate Kinase,Blood,Hematology
|
| 990 |
+
51134,Acanthocytes,Blood,Hematology
|
| 991 |
+
51215,FMC-7,Blood,Hematology
|
| 992 |
+
51264,Platelet Clumps,Blood,Hematology
|
| 993 |
+
51283,"Reticulocyte Count, Automated",Blood,Hematology
|
| 994 |
+
52152,"Osmotic Fragility, Incubated",Blood,Hematology
|
| 995 |
+
52948,Thrombin,Blood,Hematology
|
| 996 |
+
51162,CD16/56 Absolute Count,Blood,Hematology
|
| 997 |
+
51181,CD4/CD8 Ratio,Blood,Hematology
|
| 998 |
+
51203,Factor IX,Blood,Hematology
|
| 999 |
+
51253,Monocyte Count,Blood,Hematology
|
| 1000 |
+
52071,Absolute CD20 Count,Blood,Hematology
|
| 1001 |
+
52080,Asd,Blood,Hematology
|
| 1002 |
+
52201,PltScat,Blood,Hematology
|
| 1003 |
+
51158,CD14,Blood,Hematology
|
| 1004 |
+
51168,CD20,Blood,Hematology
|
| 1005 |
+
51237,INR(PT),Blood,Hematology
|
| 1006 |
+
51295,TdT,Blood,Hematology
|
| 1007 |
+
52081,ASD & NA-F,Blood,Hematology
|
| 1008 |
+
52108,dRVVT - Normalized Ratio,Blood,Hematology
|
| 1009 |
+
52150,Non-Specific Esterase,Blood,Hematology
|
| 1010 |
+
52171,RBC Morphology,Blood,Hematology
|
| 1011 |
+
51164,CD19,Blood,Hematology
|
| 1012 |
+
51170,CD20 Absolute Count,Blood,Hematology
|
| 1013 |
+
51231,Howell-Jolly Bodies,Blood,Hematology
|
| 1014 |
+
51278,Red Blood Cell Fragments,Blood,Hematology
|
| 1015 |
+
51299,Von Willebrand Factor Antigen,Blood,Hematology
|
| 1016 |
+
52094,CD61,Blood,Hematology
|
| 1017 |
+
52124,G6pd Spec,Blood,Hematology
|
| 1018 |
+
52185,TCR Gamma-Delta,Blood,Hematology
|
| 1019 |
+
52212,MonoFlg,Blood,Hematology
|
| 1020 |
+
52213,NRBCFlg,Blood,Hematology
|
| 1021 |
+
52858,Fibrin Degradation Products,Blood,Hematology
|
| 1022 |
+
51157,CD138,Blood,Hematology
|
| 1023 |
+
51171,CD22,Blood,Hematology
|
| 1024 |
+
51179,CD38,Blood,Hematology
|
| 1025 |
+
51133,Absolute Lymphocyte Count,Blood,Hematology
|
| 1026 |
+
51197,Elliptocytes,Blood,Hematology
|
| 1027 |
+
51211,Factor XIII,Blood,Hematology
|
| 1028 |
+
52164,PT Mean,Blood,Hematology
|
| 1029 |
+
52199,FragFlg,Blood,Hematology
|
| 1030 |
+
52218,IG Flg,Blood,Hematology
|
| 1031 |
+
52840,Factor IX,Blood,Hematology
|
| 1032 |
+
51136,Alpha Antiplasmin,Blood,Hematology
|
| 1033 |
+
51145,Basophilic Stippling,Blood,Hematology
|
| 1034 |
+
51195,Collagen,Blood,Hematology
|
| 1035 |
+
52087,CD15/56,Blood,Hematology
|
| 1036 |
+
52176,Rouleaux,Blood,Hematology
|
| 1037 |
+
52202,PltClmp,Blood,Hematology
|
| 1038 |
+
51183,CD45,Blood,Hematology
|
| 1039 |
+
51241,Leukocyte Alkaline Phosphatase,Blood,Hematology
|
| 1040 |
+
52085,Bleed Tm,Blood,Hematology
|
| 1041 |
+
52101,Cr,Blood,Hematology
|
| 1042 |
+
52109,dRVVT - Screen,Blood,Hematology
|
| 1043 |
+
52128,Hemoglobin H Inclusion,Blood,Hematology
|
| 1044 |
+
52141,Malaria Smear,Blood,Hematology
|
| 1045 |
+
52155,Periodic Acid Schiff Stain,Blood,Hematology
|
| 1046 |
+
52844,Factor VII,Blood,Hematology
|
| 1047 |
+
51185,CD5 %,Blood,Hematology
|
| 1048 |
+
51198,Envelope Cells,Blood,Hematology
|
| 1049 |
+
51222,Hemoglobin,Blood,Hematology
|
| 1050 |
+
51284,"Reticulocyte Count, Manual",Blood,Hematology
|
| 1051 |
+
52184,TCR Alpha-Beta,Blood,Hematology
|
| 1052 |
+
52193,Viii Ag,Blood,Hematology
|
| 1053 |
+
51243,Lupus Anticoagulant,Blood,Hematology
|
| 1054 |
+
51251,Metamyelocytes,Blood,Hematology
|
| 1055 |
+
51285,"Reticulocyte, Cellular Hemoglobin",Blood,Hematology
|
| 1056 |
+
52099,Clot Retraction,Blood,Hematology
|
| 1057 |
+
52132,HIT-Ab Numerical Result,Blood,Hematology
|
| 1058 |
+
52177,SCT - Confirmation,Blood,Hematology
|
| 1059 |
+
52838,Factor II,Blood,Hematology
|
| 1060 |
+
51131,Absolute CD4 Count,Blood,Hematology
|
| 1061 |
+
51262,Pencil Cells,Blood,Hematology
|
| 1062 |
+
51265,Platelet Count,Blood,Hematology
|
| 1063 |
+
52088,CD 1a,Blood,Hematology
|
| 1064 |
+
52089,CD30,Blood,Hematology
|
| 1065 |
+
52161,Problem Specimen,Blood,Hematology
|
| 1066 |
+
52207,TurbHbI,Blood,Hematology
|
| 1067 |
+
52842,Factor V,Blood,Hematology
|
| 1068 |
+
51207,Factor VIII Inhibitor,Blood,Hematology
|
| 1069 |
+
51221,Hematocrit,Blood,Hematology
|
| 1070 |
+
51223,Hemoglobin A2,Blood,Hematology
|
| 1071 |
+
51277,RDW,Blood,Hematology
|
| 1072 |
+
51287,Schistocytes,Blood,Hematology
|
| 1073 |
+
51292,Spherocytes,Blood,Hematology
|
| 1074 |
+
51298,Von Willebrand Factor Activity,Blood,Hematology
|
| 1075 |
+
52125,Glutathione,Blood,Hematology
|
| 1076 |
+
52157,Plasma Hemoglobin,Blood,Hematology
|
| 1077 |
+
52191,Tr- Acid,Blood,Hematology
|
| 1078 |
+
52214,AbnLymp,Blood,Hematology
|
| 1079 |
+
52846,Factor VIII,Blood,Hematology
|
| 1080 |
+
51130,Absolute CD3 Count,Blood,Hematology
|
| 1081 |
+
51271,"Protein C, Functional",Blood,Hematology
|
| 1082 |
+
51302,Young Cells,Blood,Hematology
|
| 1083 |
+
52069,Absolute Basophil Count,Blood,Hematology
|
| 1084 |
+
52122,Fsp,Blood,Hematology
|
| 1085 |
+
52148,NEUTY,Blood,Hematology
|
| 1086 |
+
52170, Rbc,Blood,Hematology
|
| 1087 |
+
52196,WAM Manual Diff,Blood,Hematology
|
| 1088 |
+
52851,Factor XI,Blood,Hematology
|
| 1089 |
+
52855,Factor XIII,Blood,Hematology
|
| 1090 |
+
51156,CD13,Blood,Hematology
|
| 1091 |
+
51175,CD3 Absolute Count,Blood,Hematology
|
| 1092 |
+
52097,Circ Ab,Blood,Hematology
|
| 1093 |
+
52106,Donath-l,Blood,Hematology
|
| 1094 |
+
52112,Euglobulin Lysis,Blood,Hematology
|
| 1095 |
+
52216,BlasFlg,Blood,Hematology
|
| 1096 |
+
51213,Fibrin Degradation Products,Blood,Hematology
|
| 1097 |
+
51257,Nucleated Red Cells,Blood,Hematology
|
| 1098 |
+
51300,WBC Count,Blood,Hematology
|
| 1099 |
+
52075,Absolute Neutrophil Count,Blood,Hematology
|
| 1100 |
+
52105,Direct Antiplatelet Antibodies,Blood,Hematology
|
| 1101 |
+
52123,"G6PD, Qualitative",Blood,Hematology
|
| 1102 |
+
52131,HIT-Ab Interpreted Result,Blood,Hematology
|
| 1103 |
+
52179,SCT - Screen,Blood,Hematology
|
| 1104 |
+
51137,Anisocytosis,Blood,Hematology
|
| 1105 |
+
51152,CD10,Blood,Hematology
|
| 1106 |
+
51200,Eosinophils,Blood,Hematology
|
| 1107 |
+
51266,Platelet Smear,Blood,Hematology
|
| 1108 |
+
52073,Absolute Eosinophil Count,Blood,Hematology
|
| 1109 |
+
52140,LS,Blood,Hematology
|
| 1110 |
+
52849,Factor X,Blood,Hematology
|
| 1111 |
+
51149,Bleeding Time,Blood,Hematology
|
| 1112 |
+
51236,Inpatient Hematology/Oncology Smear,Blood,Hematology
|
| 1113 |
+
51294,Target Cells,Blood,Hematology
|
| 1114 |
+
51296,Teardrop Cells,Blood,Hematology
|
| 1115 |
+
52175,Ristocetin Response,Blood,Hematology
|
| 1116 |
+
52197,WAM MANUAL DIFF 2,Blood,Hematology
|
| 1117 |
+
52198,ErytFlg,Blood,Hematology
|
| 1118 |
+
51144,Bands,Blood,Hematology
|
| 1119 |
+
51218,Granulocyte Count,Blood,Hematology
|
| 1120 |
+
51232,Hypersegmented Neutrophils,Blood,Hematology
|
| 1121 |
+
51238,Kappa,Blood,Hematology
|
| 1122 |
+
51239,Lambda,Blood,Hematology
|
| 1123 |
+
51256,Neutrophils,Blood,Hematology
|
| 1124 |
+
51297,Thrombin,Blood,Hematology
|
| 1125 |
+
52104,Cryoglob,Blood,Hematology
|
| 1126 |
+
52110,DSmear,Blood,Hematology
|
| 1127 |
+
52137,Inh Scr,Blood,Hematology
|
| 1128 |
+
52180,STA-CLOT,Blood,Hematology
|
| 1129 |
+
51166,CD19 Absolute Count,Blood,Hematology
|
| 1130 |
+
51191,CD64,Blood,Hematology
|
| 1131 |
+
51225,Hemoglobin F,Blood,Hematology
|
| 1132 |
+
51286,Ristocetin,Blood,Hematology
|
| 1133 |
+
51288,Sedimentation Rate,Blood,Hematology
|
| 1134 |
+
51172,CD23,Blood,Hematology
|
| 1135 |
+
51190,CD59,Blood,Hematology
|
| 1136 |
+
51247,MacroOvalocytes,Blood,Hematology
|
| 1137 |
+
52133,Hmwk,Blood,Hematology
|
| 1138 |
+
52158,Plasminogen,Blood,Hematology
|
| 1139 |
+
51165,CD19 %,Blood,Hematology
|
| 1140 |
+
51250,MCV,Blood,Hematology
|
| 1141 |
+
51274,PT,Blood,Hematology
|
| 1142 |
+
51293,Sugar Water Test,Blood,Hematology
|
| 1143 |
+
52078,Antithrombin III,Blood,Hematology
|
| 1144 |
+
52165,PTT Control,Blood,Hematology
|
| 1145 |
+
52166,PTT-LA,Blood,Hematology
|
| 1146 |
+
51220,Heinz Body Prep,Blood,Hematology
|
| 1147 |
+
51242,LUC,Blood,Hematology
|
| 1148 |
+
51263,Plasma Cells,Blood,Hematology
|
| 1149 |
+
51275,PTT,Blood,Hematology
|
| 1150 |
+
52119,Fitzgerld,Blood,Hematology
|
| 1151 |
+
52127,Helmet Cells,Blood,Hematology
|
| 1152 |
+
52183,Sulf Hgb,Blood,Hematology
|
| 1153 |
+
51204,Factor V,Blood,Hematology
|
| 1154 |
+
51219,H/O Smear,Blood,Hematology
|
| 1155 |
+
51261,Pappenheimer Bodies,Blood,Hematology
|
| 1156 |
+
52167,PTT mea,Blood,Hematology
|
| 1157 |
+
52889,Lupus Anticoagulant,Blood,Hematology
|
| 1158 |
+
52929,Reptilase Time,Blood,Hematology
|
| 1159 |
+
52070,Absolute CD19 Count,Blood,Hematology
|
| 1160 |
+
52114,Factor VIII Antigen,Blood,Hematology
|
| 1161 |
+
52117,"Fibrinogen, Immunologic",Blood,Hematology
|
| 1162 |
+
52209,EosFlg,Blood,Hematology
|
| 1163 |
+
52217,Bl/AbLy,Blood,Hematology
|
| 1164 |
+
51161,CD16,Blood,Hematology
|
| 1165 |
+
51209,Factor XI,Blood,Hematology
|
| 1166 |
+
51228,Heparin,Blood,Hematology
|
| 1167 |
+
52090,CD42,Blood,Hematology
|
| 1168 |
+
52149,NFletcher,Blood,Hematology
|
| 1169 |
+
52151,NRBC,Blood,Hematology
|
| 1170 |
+
52211,LymFlg,Blood,Hematology
|
| 1171 |
+
51159,CD15,Blood,Hematology
|
| 1172 |
+
51193,CD71,Blood,Hematology
|
| 1173 |
+
51216,Fragmented Cells,Blood,Hematology
|
| 1174 |
+
52079,ASA Tol,Blood,Hematology
|
| 1175 |
+
52143,Methemalb,Blood,Hematology
|
| 1176 |
+
52194,VIII-CIE,Blood,Hematology
|
| 1177 |
+
51148,Blasts,Blood,Hematology
|
| 1178 |
+
51192,CD7,Blood,Hematology
|
| 1179 |
+
51206,Factor VIII,Blood,Hematology
|
| 1180 |
+
51248,MCH,Blood,Hematology
|
| 1181 |
+
51282,"Reticulocyte Count, Absolute",Blood,Hematology
|
| 1182 |
+
51289,Serum Viscosity,Blood,Hematology
|
| 1183 |
+
51301,White Blood Cells,Blood,Hematology
|
| 1184 |
+
52074,Absolute Monocyte Count,Blood,Hematology
|
| 1185 |
+
52100,Clot Time,Blood,Hematology
|
| 1186 |
+
52142,Mean Platelet Volume,Blood,Hematology
|
| 1187 |
+
52923,PTT,Blood,Hematology
|
| 1188 |
+
51173,CD25,Blood,Hematology
|
| 1189 |
+
51194,"CD8 Cells, Percent",Blood,Hematology
|
| 1190 |
+
51246,Macrocytes,Blood,Hematology
|
| 1191 |
+
52076,Acid Phosphatase Stain,Blood,Hematology
|
| 1192 |
+
52121,Fletcher,Blood,Hematology
|
| 1193 |
+
52134,IG,Blood,Hematology
|
| 1194 |
+
52403,Bile,Stool,Hematology
|
| 1195 |
+
52406,Voided Specimen,Stool,Hematology
|
| 1196 |
+
52405,Prblm,Stool,Hematology
|
| 1197 |
+
52407,WBC,Stool,Hematology
|
| 1198 |
+
51460,"Blood, Occult",Stool,Hematology
|
| 1199 |
+
52404,Fat,Stool,Hematology
|
| 1200 |
+
51476,Epithelial Cells,Urine,Hematology
|
| 1201 |
+
52425,XUCU,Urine,Hematology
|
| 1202 |
+
52423,SKIP,Urine,Hematology
|
| 1203 |
+
52416,Myoglobin,Urine,Hematology
|
| 1204 |
+
51491,pH,Urine,Hematology
|
| 1205 |
+
51479,Granular Casts,Urine,Hematology
|
| 1206 |
+
51502,Trichomonas,Urine,Hematology
|
| 1207 |
+
52424,RFXUCU,Urine,Hematology
|
| 1208 |
+
52408,Bacturia,Urine,Hematology
|
| 1209 |
+
52419,Voided Specimen,Urine,Hematology
|
| 1210 |
+
51467,Broad Casts,Urine,Hematology
|
| 1211 |
+
51477,Free Fat,Urine,Hematology
|
| 1212 |
+
51483,Hyphenated Yeast,Urine,Hematology
|
| 1213 |
+
51501,Transitional Epithelial Cells,Urine,Hematology
|
| 1214 |
+
51503,Triple Phosphate Crystals,Urine,Hematology
|
| 1215 |
+
51511,Urine Fat Bodies,Urine,Hematology
|
| 1216 |
+
51474,Eosinophils,Urine,Hematology
|
| 1217 |
+
51462,Amorphous Crystals,Urine,Hematology
|
| 1218 |
+
51465,Bilirubin Crystals,Urine,Hematology
|
| 1219 |
+
51473,Cysteine Crystals,Urine,Hematology
|
| 1220 |
+
51509,Urine Comments,Urine,Hematology
|
| 1221 |
+
51514,Urobilinogen,Urine,Hematology
|
| 1222 |
+
51461,Ammonium Biurate,Urine,Hematology
|
| 1223 |
+
51478,Glucose,Urine,Hematology
|
| 1224 |
+
51485,Leucine Crystals,Urine,Hematology
|
| 1225 |
+
51496,"Reducing Substances, Urine",Urine,Hematology
|
| 1226 |
+
52426,UCU1,Urine,Hematology
|
| 1227 |
+
51510,"Urine Crystals, Other",Urine,Hematology
|
| 1228 |
+
51468,Calcium Carbonate Crystals,Urine,Hematology
|
| 1229 |
+
51463,Bacteria,Urine,Hematology
|
| 1230 |
+
51504,Tyrosine Crystals,Urine,Hematology
|
| 1231 |
+
52418,Problem Specimen,Urine,Hematology
|
| 1232 |
+
52422,RUN,Urine,Hematology
|
| 1233 |
+
51464,Bilirubin,Urine,Hematology
|
| 1234 |
+
51499,Sperm,Urine,Hematology
|
| 1235 |
+
52411,Hgb,Urine,Hematology
|
| 1236 |
+
51472,Cholesterol Crystals,Urine,Hematology
|
| 1237 |
+
51481,Hemosiderin,Urine,Hematology
|
| 1238 |
+
51512,Urine Mucous,Urine,Hematology
|
| 1239 |
+
52412,HPF,Urine,Hematology
|
| 1240 |
+
52413,Leuks,Urine,Hematology
|
| 1241 |
+
51508,Urine Color,Urine,Hematology
|
| 1242 |
+
51482,Hyaline Casts,Urine,Hematology
|
| 1243 |
+
51489,NonSquamous Epithelial Cell,Urine,Hematology
|
| 1244 |
+
52410,Fatty Casts,Urine,Hematology
|
| 1245 |
+
52409,Budding Yeast,Urine,Hematology
|
| 1246 |
+
51466,Blood,Urine,Hematology
|
| 1247 |
+
51488,Non-squamous Epithelial Cells,Urine,Hematology
|
| 1248 |
+
52427,UCU2,Urine,Hematology
|
| 1249 |
+
51487,Nitrite,Urine,Hematology
|
| 1250 |
+
51492,Protein,Urine,Hematology
|
| 1251 |
+
51500,Sulfonamides,Urine,Hematology
|
| 1252 |
+
51498,Specific Gravity,Urine,Hematology
|
| 1253 |
+
51490,Oval Fat Body,Urine,Hematology
|
| 1254 |
+
52414,LEUKS,Urine,Hematology
|
| 1255 |
+
51475,Epithelial Casts,Urine,Hematology
|
| 1256 |
+
51495,RBC Clumps,Urine,Hematology
|
| 1257 |
+
51497,Renal Epithelial Cells,Urine,Hematology
|
| 1258 |
+
51484,Ketone,Urine,Hematology
|
| 1259 |
+
51517,WBC Casts,Urine,Hematology
|
| 1260 |
+
51469,Calcium Oxalate Crystals,Urine,Hematology
|
| 1261 |
+
51493,RBC,Urine,Hematology
|
| 1262 |
+
51505,Uric Acid Crystals,Urine,Hematology
|
| 1263 |
+
51519,Yeast,Urine,Hematology
|
| 1264 |
+
51470,Calcium Phosphate Crystals,Urine,Hematology
|
| 1265 |
+
51506,Urine Appearance,Urine,Hematology
|
| 1266 |
+
52420,ZZDUMMY,Urine,Hematology
|
| 1267 |
+
52421,GATE,Urine,Hematology
|
| 1268 |
+
51471,Cellular Cast,Urine,Hematology
|
| 1269 |
+
51494,RBC Casts,Urine,Hematology
|
| 1270 |
+
52415,LPF,Urine,Hematology
|
| 1271 |
+
51513,Urine Specimen Type,Urine,Hematology
|
| 1272 |
+
51515,Waxy Casts,Urine,Hematology
|
| 1273 |
+
51507,"Urine Casts, Other",Urine,Hematology
|
| 1274 |
+
51516,WBC,Urine,Hematology
|
| 1275 |
+
51518,WBC Clumps,Urine,Hematology
|
| 1276 |
+
52417,Pku,Urine,Hematology
|
| 1277 |
+
51480,Hematocrit,Urine,Hematology
|
| 1278 |
+
51486,Leukocytes,Urine,Hematology
|
| 1279 |
+
51127,"RBC, Ascites",Ascites,Hematology
|
| 1280 |
+
51113,Blasts,Ascites,Hematology
|
| 1281 |
+
52054,Histiocyte,Ascites,Hematology
|
| 1282 |
+
52063,Polys#,Ascites,Hematology
|
| 1283 |
+
51119,Metamyelocytes,Ascites,Hematology
|
| 1284 |
+
51123,Other,Ascites,Hematology
|
| 1285 |
+
51117,Macrophage,Ascites,Hematology
|
| 1286 |
+
52067,Young#,Ascites,Hematology
|
| 1287 |
+
51116,Lymphocytes,Ascites,Hematology
|
| 1288 |
+
51125,Polys,Ascites,Hematology
|
| 1289 |
+
51110,Atypical Lymphocytes,Ascites,Hematology
|
| 1290 |
+
52062,Plasma#,Ascites,Hematology
|
| 1291 |
+
51118,Mesothelial Cell,Ascites,Hematology
|
| 1292 |
+
51111,Bands,Ascites,Hematology
|
| 1293 |
+
51120,Monocytes,Ascites,Hematology
|
| 1294 |
+
52066,Voided Specimen,Ascites,Hematology
|
| 1295 |
+
52065,"Total Nucleated Cells, Ascites",Ascites,Hematology
|
| 1296 |
+
52064,Promyelo#,Ascites,Hematology
|
| 1297 |
+
52052,Eos#,Ascites,Hematology
|
| 1298 |
+
52051,Blasts#,Ascites,Hematology
|
| 1299 |
+
52059,Monos#,Ascites,Hematology
|
| 1300 |
+
51126,Promyelocytes,Ascites,Hematology
|
| 1301 |
+
51115,"Hematocrit, Ascites",Ascites,Hematology
|
| 1302 |
+
51114,Eosinophils,Ascites,Hematology
|
| 1303 |
+
52055,Hyperseg,Ascites,Hematology
|
| 1304 |
+
52061,Nuc Rbcs#,Ascites,Hematology
|
| 1305 |
+
52053,Histio#,Ascites,Hematology
|
| 1306 |
+
52060,Myelos#,Ascites,Hematology
|
| 1307 |
+
52048,Atyps#,Ascites,Hematology
|
| 1308 |
+
52050,Basos#,Ascites,Hematology
|
| 1309 |
+
52057,Lymphs#,Ascites,Hematology
|
| 1310 |
+
51112,Basophils,Ascites,Hematology
|
| 1311 |
+
52058,Metas#,Ascites,Hematology
|
| 1312 |
+
52056,Hyperseg#,Ascites,Hematology
|
| 1313 |
+
51122,Nucleated RBC,Ascites,Hematology
|
| 1314 |
+
51129,Young,Ascites,Hematology
|
| 1315 |
+
51124,Plasma,Ascites,Hematology
|
| 1316 |
+
52049,Bands#,Ascites,Hematology
|
| 1317 |
+
51121,Myelocytes,Ascites,Hematology
|
| 1318 |
+
51448,Mesothelial Cells,Pleural,Hematology
|
| 1319 |
+
52375,Atyps#,Pleural,Hematology
|
| 1320 |
+
52388,Plasma#,Pleural,Hematology
|
| 1321 |
+
51453,Other,Pleural,Hematology
|
| 1322 |
+
52381,Histiocytes,Pleural,Hematology
|
| 1323 |
+
51454,Plasma Cells,Pleural,Hematology
|
| 1324 |
+
52384,Lymphs#,Pleural,Hematology
|
| 1325 |
+
52392,Voided Specimen,Pleural,Hematology
|
| 1326 |
+
51455,Polys,Pleural,Hematology
|
| 1327 |
+
52377,Basos#,Pleural,Hematology
|
| 1328 |
+
51449,Metamyelocytes,Pleural,Hematology
|
| 1329 |
+
51442,Basophils,Pleural,Hematology
|
| 1330 |
+
51440,Atypical Lymphocytes,Pleural,Hematology
|
| 1331 |
+
51444,Eosinophils,Pleural,Hematology
|
| 1332 |
+
52378,Blasts#,Pleural,Hematology
|
| 1333 |
+
51457,"RBC, Pleural",Pleural,Hematology
|
| 1334 |
+
51441,Bands,Pleural,Hematology
|
| 1335 |
+
51450,Monos,Pleural,Hematology
|
| 1336 |
+
51445,"Hematocrit, Pleural",Pleural,Hematology
|
| 1337 |
+
52387,Myelos#,Pleural,Hematology
|
| 1338 |
+
52390,Promyelocytes#,Pleural,Hematology
|
| 1339 |
+
51452,NRBC,Pleural,Hematology
|
| 1340 |
+
52379,Eos#,Pleural,Hematology
|
| 1341 |
+
52382,Hypersegmented Neutrophils#,Pleural,Hematology
|
| 1342 |
+
52391,"Total Nucleated Cells, Pleural",Pleural,Hematology
|
| 1343 |
+
51443,Blasts,Pleural,Hematology
|
| 1344 |
+
51459,Young Cells,Pleural,Hematology
|
| 1345 |
+
52383,Hypersegmented Neutrophils,Pleural,Hematology
|
| 1346 |
+
52389,Polys#,Pleural,Hematology
|
| 1347 |
+
51456,Promyelocytes,Pleural,Hematology
|
| 1348 |
+
51446,Lymphocytes,Pleural,Hematology
|
| 1349 |
+
52393,Young#,Pleural,Hematology
|
| 1350 |
+
51447,Macrophages,Pleural,Hematology
|
| 1351 |
+
51451,Myelocytes,Pleural,Hematology
|
| 1352 |
+
52380,Histiocyte#,Pleural,Hematology
|
| 1353 |
+
52376,Bands#,Pleural,Hematology
|
| 1354 |
+
52385,Metas#,Pleural,Hematology
|
| 1355 |
+
53083,NRBC,Pleural,Hematology
|
| 1356 |
+
52386,Monos#,Pleural,Hematology
|
| 1357 |
+
51304,CD103,Bone Marrow,Hematology
|
| 1358 |
+
51322,CD38,Bone Marrow,Hematology
|
| 1359 |
+
52324,CD62,Bone Marrow,Hematology
|
| 1360 |
+
51320,CD33,Bone Marrow,Hematology
|
| 1361 |
+
52323,CD61,Bone Marrow,Hematology
|
| 1362 |
+
52331,TCR Alpha-Beta,Bone Marrow,Hematology
|
| 1363 |
+
51314,CD2,Bone Marrow,Hematology
|
| 1364 |
+
51316,CD22,Bone Marrow,Hematology
|
| 1365 |
+
51321,CD34,Bone Marrow,Hematology
|
| 1366 |
+
51331,CD64,Bone Marrow,Hematology
|
| 1367 |
+
52318,Asd&na-f,Bone Marrow,Hematology
|
| 1368 |
+
52320,CD30,Bone Marrow,Hematology
|
| 1369 |
+
51317,CD23,Bone Marrow,Hematology
|
| 1370 |
+
51335,FMC-7,Bone Marrow,Hematology
|
| 1371 |
+
52325,Chloroacetate Esterase,Bone Marrow,Hematology
|
| 1372 |
+
52317,Asd,Bone Marrow,Hematology
|
| 1373 |
+
51339,Iron Stain,Bone Marrow,Hematology
|
| 1374 |
+
52328,Periodic Schiff Stain,Bone Marrow,Hematology
|
| 1375 |
+
51307,CD13,Bone Marrow,Hematology
|
| 1376 |
+
51330,CD59,Bone Marrow,Hematology
|
| 1377 |
+
52955,CD10,Bone Marrow,Hematology
|
| 1378 |
+
52326,Naphthol Acetate Stain,Bone Marrow,Hematology
|
| 1379 |
+
51306,CD11c,Bone Marrow,Hematology
|
| 1380 |
+
51324,CD41,Bone Marrow,Hematology
|
| 1381 |
+
51308,CD138,Bone Marrow,Hematology
|
| 1382 |
+
51328,CD56,Bone Marrow,Hematology
|
| 1383 |
+
52333,Tr-acid,Bone Marrow,Hematology
|
| 1384 |
+
51309,CD14,Bone Marrow,Hematology
|
| 1385 |
+
51312,CD16/56,Bone Marrow,Hematology
|
| 1386 |
+
52319,CD 1a,Bone Marrow,Hematology
|
| 1387 |
+
52316,Acid Phosphatase Stain,Bone Marrow,Hematology
|
| 1388 |
+
52992,Iron Stain,Bone Marrow,Hematology
|
| 1389 |
+
51305,CD117,Bone Marrow,Hematology
|
| 1390 |
+
51318,CD25,Bone Marrow,Hematology
|
| 1391 |
+
51323,CD4,Bone Marrow,Hematology
|
| 1392 |
+
51336,Glyco A,Bone Marrow,Hematology
|
| 1393 |
+
51340,Kappa,Bone Marrow,Hematology
|
| 1394 |
+
51334,CD8,Bone Marrow,Hematology
|
| 1395 |
+
52322,CD52,Bone Marrow,Hematology
|
| 1396 |
+
52321,CD42,Bone Marrow,Hematology
|
| 1397 |
+
51311,CD16,Bone Marrow,Hematology
|
| 1398 |
+
51327,CD55,Bone Marrow,Hematology
|
| 1399 |
+
52335,TdT,Bone Marrow,Hematology
|
| 1400 |
+
52332,TCR Gamma-Delta,Bone Marrow,Hematology
|
| 1401 |
+
51337,HLA-DR,Bone Marrow,Hematology
|
| 1402 |
+
52334,Voided Specimen,Bone Marrow,Hematology
|
| 1403 |
+
51303,CD10,Bone Marrow,Hematology
|
| 1404 |
+
51333,CD71,Bone Marrow,Hematology
|
| 1405 |
+
51338,Immunophenotyping,Bone Marrow,Hematology
|
| 1406 |
+
51326,CD5,Bone Marrow,Hematology
|
| 1407 |
+
51342,Wright Giemsa,Bone Marrow,Hematology
|
| 1408 |
+
52330,Sudan Black Stain,Bone Marrow,Hematology
|
| 1409 |
+
51329,CD57,Bone Marrow,Hematology
|
| 1410 |
+
51319,CD3,Bone Marrow,Hematology
|
| 1411 |
+
51341,Lambda,Bone Marrow,Hematology
|
| 1412 |
+
51313,CD19,Bone Marrow,Hematology
|
| 1413 |
+
52329,Peroxidase Stain,Bone Marrow,Hematology
|
| 1414 |
+
51310,CD15,Bone Marrow,Hematology
|
| 1415 |
+
51315,CD20,Bone Marrow,Hematology
|
| 1416 |
+
51332,CD7,Bone Marrow,Hematology
|
| 1417 |
+
52327,Naphthol Butryrate,Bone Marrow,Hematology
|
| 1418 |
+
51325,CD45,Bone Marrow,Hematology
|
| 1419 |
+
52305,Myelocytes,Joint Fluid,Hematology
|
| 1420 |
+
52300,Hypersegmented Neutrophils #,Joint Fluid,Hematology
|
| 1421 |
+
52311,Promyelocytes,Joint Fluid,Hematology
|
| 1422 |
+
52295,Blasts#,Joint Fluid,Hematology
|
| 1423 |
+
51372,"Joint Crystals, Location",Joint Fluid,Hematology
|
| 1424 |
+
52302,Lymphs#,Joint Fluid,Hematology
|
| 1425 |
+
52314,Young,Joint Fluid,Hematology
|
| 1426 |
+
51366,Bands,Joint Fluid,Hematology
|
| 1427 |
+
51375,Lymphocytes,Joint Fluid,Hematology
|
| 1428 |
+
52297,Histio#,Joint Fluid,Hematology
|
| 1429 |
+
51369,"Hematocrit, Joint Fluid",Joint Fluid,Hematology
|
| 1430 |
+
51370,"Joint Crystals, Birefringence",Joint Fluid,Hematology
|
| 1431 |
+
52294,Blasts,Joint Fluid,Hematology
|
| 1432 |
+
52291,Atyps#,Joint Fluid,Hematology
|
| 1433 |
+
51380,NRBC,Joint Fluid,Hematology
|
| 1434 |
+
51383,"RBC, Joint Fluid",Joint Fluid,Hematology
|
| 1435 |
+
52315,Young#,Joint Fluid,Hematology
|
| 1436 |
+
51376,Macrophage,Joint Fluid,Hematology
|
| 1437 |
+
52304,Monos#,Joint Fluid,Hematology
|
| 1438 |
+
52312,"Total Nucleated Cells, Joint",Joint Fluid,Hematology
|
| 1439 |
+
51379,Monocytes,Joint Fluid,Hematology
|
| 1440 |
+
51365,Atypical Lymphocytes,Joint Fluid,Hematology
|
| 1441 |
+
51371,"Joint Crystals, Comment",Joint Fluid,Hematology
|
| 1442 |
+
52306,Myelos#,Joint Fluid,Hematology
|
| 1443 |
+
53012,NRBC,Joint Fluid,Hematology
|
| 1444 |
+
52298,Histiocyte,Joint Fluid,Hematology
|
| 1445 |
+
52301,Lining Cell,Joint Fluid,Hematology
|
| 1446 |
+
51377,Mesothelial Cells,Joint Fluid,Hematology
|
| 1447 |
+
52313,Voided Specimen,Joint Fluid,Hematology
|
| 1448 |
+
51367,Basophils,Joint Fluid,Hematology
|
| 1449 |
+
51378,Metamyelocytes,Joint Fluid,Hematology
|
| 1450 |
+
52299,Hypersegmented Neutrophils,Joint Fluid,Hematology
|
| 1451 |
+
52308,Plasma#,Joint Fluid,Hematology
|
| 1452 |
+
51374,"Joint Crystals, Shape",Joint Fluid,Hematology
|
| 1453 |
+
52296,Eos#,Joint Fluid,Hematology
|
| 1454 |
+
52310,Promyelo#,Joint Fluid,Hematology
|
| 1455 |
+
51373,"Joint Crystals, Number",Joint Fluid,Hematology
|
| 1456 |
+
52309,Polys#,Joint Fluid,Hematology
|
| 1457 |
+
51368,Eosinophils,Joint Fluid,Hematology
|
| 1458 |
+
52293,Basos#,Joint Fluid,Hematology
|
| 1459 |
+
51382,Polys,Joint Fluid,Hematology
|
| 1460 |
+
52307,Plasma,Joint Fluid,Hematology
|
| 1461 |
+
51381,Other,Joint Fluid,Hematology
|
| 1462 |
+
52292,Bands#,Joint Fluid,Hematology
|
| 1463 |
+
52303,Metas#,Joint Fluid,Hematology
|
| 1464 |
+
51393,CD138,Other Body Fluid,Hematology
|
| 1465 |
+
52372,Young#,Other Body Fluid,Hematology
|
| 1466 |
+
52367,TCR Alpha-Beta,Other Body Fluid,Hematology
|
| 1467 |
+
51391,CD11c,Other Body Fluid,Hematology
|
| 1468 |
+
51403,CD25,Other Body Fluid,Hematology
|
| 1469 |
+
51409,CD4/CD8 Ratio,Other Body Fluid,Hematology
|
| 1470 |
+
51396,CD16,Other Body Fluid,Hematology
|
| 1471 |
+
51389,CD103,Other Body Fluid,Hematology
|
| 1472 |
+
52339,Blasts,Other Body Fluid,Hematology
|
| 1473 |
+
51394,CD14,Other Body Fluid,Hematology
|
| 1474 |
+
51398,CD19,Other Body Fluid,Hematology
|
| 1475 |
+
51399,CD2,Other Body Fluid,Hematology
|
| 1476 |
+
51427,Lymphocytes,Other Body Fluid,Hematology
|
| 1477 |
+
52340,Blasts#,Other Body Fluid,Hematology
|
| 1478 |
+
52349,Chloroac,Other Body Fluid,Hematology
|
| 1479 |
+
51385,Atypical Lymphocytes,Other Body Fluid,Hematology
|
| 1480 |
+
52358,Lining Cell,Other Body Fluid,Hematology
|
| 1481 |
+
51432,Myelocytes,Other Body Fluid,Hematology
|
| 1482 |
+
51412,CD5,Other Body Fluid,Hematology
|
| 1483 |
+
51410,CD41,Other Body Fluid,Hematology
|
| 1484 |
+
52364,Plasma#,Other Body Fluid,Hematology
|
| 1485 |
+
51413,CD56,Other Body Fluid,Hematology
|
| 1486 |
+
51421,Glyco A,Other Body Fluid,Hematology
|
| 1487 |
+
52336,Atyps#,Other Body Fluid,Hematology
|
| 1488 |
+
52342,CD30,Other Body Fluid,Hematology
|
| 1489 |
+
52346,CD59,Other Body Fluid,Hematology
|
| 1490 |
+
52356,Hypersegmented Neutrophils#,Other Body Fluid,Hematology
|
| 1491 |
+
52360,Metamyelocytes#,Other Body Fluid,Hematology
|
| 1492 |
+
51436,Polys,Other Body Fluid,Hematology
|
| 1493 |
+
52350,Eos#,Other Body Fluid,Hematology
|
| 1494 |
+
52359,Lymphs#,Other Body Fluid,Hematology
|
| 1495 |
+
52371,Young,Other Body Fluid,Hematology
|
| 1496 |
+
52355,Hypersegmented Neutrophils,Other Body Fluid,Hematology
|
| 1497 |
+
52363,NRBC#,Other Body Fluid,Hematology
|
| 1498 |
+
52337,Bands#,Other Body Fluid,Hematology
|
| 1499 |
+
51430,Metamyelocytes,Other Body Fluid,Hematology
|
| 1500 |
+
52354,Histiocytes,Other Body Fluid,Hematology
|
| 1501 |
+
52370,Voided Specimen,Other Body Fluid,Hematology
|
| 1502 |
+
51408,CD4,Other Body Fluid,Hematology
|
| 1503 |
+
51422,"Hematocrit, Other Fluid",Other Body Fluid,Hematology
|
| 1504 |
+
51429,Mesothelial cells,Other Body Fluid,Hematology
|
| 1505 |
+
51434,Other Cell,Other Body Fluid,Hematology
|
| 1506 |
+
52353,Histiocyte#,Other Body Fluid,Hematology
|
| 1507 |
+
52365,Polys#,Other Body Fluid,Hematology
|
| 1508 |
+
51401,CD22,Other Body Fluid,Hematology
|
| 1509 |
+
51428,Macrophage,Other Body Fluid,Hematology
|
| 1510 |
+
51437,Promyelocytes,Other Body Fluid,Hematology
|
| 1511 |
+
51404,CD3,Other Body Fluid,Hematology
|
| 1512 |
+
51386,Bands,Other Body Fluid,Hematology
|
| 1513 |
+
51417,CD71,Other Body Fluid,Hematology
|
| 1514 |
+
51424,Immunophenotyping,Other Body Fluid,Hematology
|
| 1515 |
+
51426,Lambda,Other Body Fluid,Hematology
|
| 1516 |
+
52351,Fetal Hgb,Other Body Fluid,Hematology
|
| 1517 |
+
51397,CD16/56,Other Body Fluid,Hematology
|
| 1518 |
+
52373,TdT,Other Body Fluid,Hematology
|
| 1519 |
+
51388,CD10,Other Body Fluid,Hematology
|
| 1520 |
+
51402,CD23,Other Body Fluid,Hematology
|
| 1521 |
+
51418,CD8,Other Body Fluid,Hematology
|
| 1522 |
+
51400,CD20,Other Body Fluid,Hematology
|
| 1523 |
+
51405,CD33,Other Body Fluid,Hematology
|
| 1524 |
+
52345,CD55,Other Body Fluid,Hematology
|
| 1525 |
+
51416,CD7,Other Body Fluid,Hematology
|
| 1526 |
+
51420,FMC-7,Other Body Fluid,Hematology
|
| 1527 |
+
51387,Basophils,Other Body Fluid,Hematology
|
| 1528 |
+
51423,HLA-DR,Other Body Fluid,Hematology
|
| 1529 |
+
52361,Monos#,Other Body Fluid,Hematology
|
| 1530 |
+
51407,CD38,Other Body Fluid,Hematology
|
| 1531 |
+
51415,CD64,Other Body Fluid,Hematology
|
| 1532 |
+
51395,CD15,Other Body Fluid,Hematology
|
| 1533 |
+
52366,Promyelocyte#,Other Body Fluid,Hematology
|
| 1534 |
+
51425,Kappa,Other Body Fluid,Hematology
|
| 1535 |
+
52338,Basos#,Other Body Fluid,Hematology
|
| 1536 |
+
52344,CD52,Other Body Fluid,Hematology
|
| 1537 |
+
52347,CD61,Other Body Fluid,Hematology
|
| 1538 |
+
51390,CD117,Other Body Fluid,Hematology
|
| 1539 |
+
51392,CD13,Other Body Fluid,Hematology
|
| 1540 |
+
52348,CD62,Other Body Fluid,Hematology
|
| 1541 |
+
51414,CD57,Other Body Fluid,Hematology
|
| 1542 |
+
51433,NRBC,Other Body Fluid,Hematology
|
| 1543 |
+
51438,"RBC, Other Fluid",Other Body Fluid,Hematology
|
| 1544 |
+
52362,Myelos#,Other Body Fluid,Hematology
|
| 1545 |
+
51435,Plasma,Other Body Fluid,Hematology
|
| 1546 |
+
52368,TCR Gamma-Delta,Other Body Fluid,Hematology
|
| 1547 |
+
51411,CD45,Other Body Fluid,Hematology
|
| 1548 |
+
51419,Eosinophils,Other Body Fluid,Hematology
|
| 1549 |
+
52357,Iron,Other Body Fluid,Hematology
|
| 1550 |
+
52369,"Total Nucleated Cells, Other",Other Body Fluid,Hematology
|
| 1551 |
+
52374,,Other Body Fluid,Hematology
|
| 1552 |
+
51431,Monos,Other Body Fluid,Hematology
|
| 1553 |
+
52343,CD42,Other Body Fluid,Hematology
|
| 1554 |
+
52352,FETAL LUNG MATURITY - LBC,Other Body Fluid,Hematology
|
| 1555 |
+
51406,CD34,Other Body Fluid,Hematology
|
| 1556 |
+
52341,CD 1a,Other Body Fluid,Hematology
|
| 1557 |
+
52224,Bands#,Cerebrospinal Fluid,Hematology
|
| 1558 |
+
52274,Myelocytes,Cerebrospinal Fluid,Hematology
|
| 1559 |
+
52228,Blasts#,Cerebrospinal Fluid,Hematology
|
| 1560 |
+
52241,Delete,Cerebrospinal Fluid,Hematology
|
| 1561 |
+
52283,Promyelocytes,Cerebrospinal Fluid,Hematology
|
| 1562 |
+
52289,Young#,Cerebrospinal Fluid,Hematology
|
| 1563 |
+
52248,Delete,Cerebrospinal Fluid,Hematology
|
| 1564 |
+
52258,Histiocyte,Cerebrospinal Fluid,Hematology
|
| 1565 |
+
52282,Polys#,Cerebrospinal Fluid,Hematology
|
| 1566 |
+
52244,Delete,Cerebrospinal Fluid,Hematology
|
| 1567 |
+
52271,Metas#,Cerebrospinal Fluid,Hematology
|
| 1568 |
+
52226,Basos#,Cerebrospinal Fluid,Hematology
|
| 1569 |
+
52240,Delete,Cerebrospinal Fluid,Hematology
|
| 1570 |
+
52269,Mesothelial cells #,Cerebrospinal Fluid,Hematology
|
| 1571 |
+
52222,Atyps#,Cerebrospinal Fluid,Hematology
|
| 1572 |
+
52239,Delete,Cerebrospinal Fluid,Hematology
|
| 1573 |
+
52242,Delete,Cerebrospinal Fluid,Hematology
|
| 1574 |
+
52279,Plasma,Cerebrospinal Fluid,Hematology
|
| 1575 |
+
52284,Promyelocytes#,Cerebrospinal Fluid,Hematology
|
| 1576 |
+
52237,Delete,Cerebrospinal Fluid,Hematology
|
| 1577 |
+
52288,Young,Cerebrospinal Fluid,Hematology
|
| 1578 |
+
52223,Bands,Cerebrospinal Fluid,Hematology
|
| 1579 |
+
52227,Blasts,Cerebrospinal Fluid,Hematology
|
| 1580 |
+
52254,Delete,Cerebrospinal Fluid,Hematology
|
| 1581 |
+
52277,NRBC#,Cerebrospinal Fluid,Hematology
|
| 1582 |
+
52225,Basophils,Cerebrospinal Fluid,Hematology
|
| 1583 |
+
52238,Delete,Cerebrospinal Fluid,Hematology
|
| 1584 |
+
52270,Metamyelocytes,Cerebrospinal Fluid,Hematology
|
| 1585 |
+
52261,Hypersegmented Neutrophils #,Cerebrospinal Fluid,Hematology
|
| 1586 |
+
52263,Lining Cell,Cerebrospinal Fluid,Hematology
|
| 1587 |
+
52276,NRBC,Cerebrospinal Fluid,Hematology
|
| 1588 |
+
52257,"Hematocrit, CSF",Cerebrospinal Fluid,Hematology
|
| 1589 |
+
52260,Hypersegmented Neutrophils,Cerebrospinal Fluid,Hematology
|
| 1590 |
+
52268,Mesothelial cells,Cerebrospinal Fluid,Hematology
|
| 1591 |
+
52247,Delete,Cerebrospinal Fluid,Hematology
|
| 1592 |
+
52278,Other,Cerebrospinal Fluid,Hematology
|
| 1593 |
+
52233,Delete,Cerebrospinal Fluid,Hematology
|
| 1594 |
+
52236,Delete,Cerebrospinal Fluid,Hematology
|
| 1595 |
+
52285,"RBC, CSF",Cerebrospinal Fluid,Hematology
|
| 1596 |
+
52229,Delete,Cerebrospinal Fluid,Hematology
|
| 1597 |
+
52267,Macrophage#,Cerebrospinal Fluid,Hematology
|
| 1598 |
+
52255,Eos#,Cerebrospinal Fluid,Hematology
|
| 1599 |
+
52273,Monos#,Cerebrospinal Fluid,Hematology
|
| 1600 |
+
52280,Plasma#,Cerebrospinal Fluid,Hematology
|
| 1601 |
+
52221,Atypical Lymphocytes,Cerebrospinal Fluid,Hematology
|
| 1602 |
+
52234,Delete,Cerebrospinal Fluid,Hematology
|
| 1603 |
+
52287,Voided Specimen,Cerebrospinal Fluid,Hematology
|
| 1604 |
+
52272,Monocytes,Cerebrospinal Fluid,Hematology
|
| 1605 |
+
52243,Delete,Cerebrospinal Fluid,Hematology
|
| 1606 |
+
52250,Delete,Cerebrospinal Fluid,Hematology
|
| 1607 |
+
52286,"Total Nucleated Cells, CSF",Cerebrospinal Fluid,Hematology
|
| 1608 |
+
52235,Delete,Cerebrospinal Fluid,Hematology
|
| 1609 |
+
52246,Delete,Cerebrospinal Fluid,Hematology
|
| 1610 |
+
52231,Delete,Cerebrospinal Fluid,Hematology
|
| 1611 |
+
52264,Lymphs,Cerebrospinal Fluid,Hematology
|
| 1612 |
+
52252,Delete,Cerebrospinal Fluid,Hematology
|
| 1613 |
+
52230,Delete,Cerebrospinal Fluid,Hematology
|
| 1614 |
+
52232,Delete,Cerebrospinal Fluid,Hematology
|
| 1615 |
+
52245,Delete,Cerebrospinal Fluid,Hematology
|
| 1616 |
+
52253,Delete,Cerebrospinal Fluid,Hematology
|
| 1617 |
+
52256,Eosinophils,Cerebrospinal Fluid,Hematology
|
| 1618 |
+
52281,Polys,Cerebrospinal Fluid,Hematology
|
| 1619 |
+
52249,Delete,Cerebrospinal Fluid,Hematology
|
| 1620 |
+
52251,Delete,Cerebrospinal Fluid,Hematology
|
| 1621 |
+
52266,Macrophage,Cerebrospinal Fluid,Hematology
|
| 1622 |
+
52262,Immunophenotyping,Cerebrospinal Fluid,Hematology
|
| 1623 |
+
52265,Lymphs#,Cerebrospinal Fluid,Hematology
|
data/mimic-iv-clinical-database-demo/hosp/diagnoses_icd.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/mimic-iv-clinical-database-demo/hosp/drgcodes.csv
ADDED
|
@@ -0,0 +1,455 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
subject_id,hadm_id,drg_type,drg_code,description,drg_severity,drg_mortality
|
| 2 |
+
10004235,22187210,HCFA,864,FEVER,,
|
| 3 |
+
10026255,22059910,HCFA,180,RESPIRATORY NEOPLASMS W MCC,,
|
| 4 |
+
10032725,20611640,HCFA,054,NERVOUS SYSTEM NEOPLASMS W MCC,,
|
| 5 |
+
10005866,21636229,HCFA,393,OTHER DIGESTIVE SYSTEM DIAGNOSES W MCC,,
|
| 6 |
+
10008454,20291550,HCFA,956,"LIMB REATTACHMENT, HIP & FEMUR PROC FOR MULTIPLE SIGNIFICANT TRAUMA",,
|
| 7 |
+
10035631,24912093,HCFA,839,CHEMO W ACUTE LEUKEMIA AS SDX W/O CC/MCC,,
|
| 8 |
+
10005866,23514107,HCFA,388,G.I. OBSTRUCTION W MCC,,
|
| 9 |
+
10035631,21476294,HCFA,840,LYMPHOMA & NON-ACUTE LEUKEMIA W MCC,,
|
| 10 |
+
10018081,28861356,HCFA,345,MINOR SMALL & LARGE BOWEL PROCEDURES W CC,,
|
| 11 |
+
10015272,27993466,HCFA,176,PULMONARY EMBOLISM W/O MCC,,
|
| 12 |
+
10004457,28108313,HCFA,039,EXTRACRANIAL PROCEDURES W/O CC/MCC,,
|
| 13 |
+
10037928,20192635,HCFA,918,POISONING & TOXIC EFFECTS OF DRUGS W/O MCC,,
|
| 14 |
+
10023117,29839885,HCFA,227,CARDIAC DEFIBRILLATOR IMPLANT W/O CARDIAC CATH W/O MCC,,
|
| 15 |
+
10005348,25239799,HCFA,217,CARDIAC VALVE & OTH MAJ CARDIOTHORACIC PROC W CARD CATH W CC,,
|
| 16 |
+
10020187,24104168,HCFA,022,INTRACRANIAL VASCULAR PROCEDURES W PDX HEMORRHAGE W/O CC/MCC,,
|
| 17 |
+
10016742,28506150,HCFA,939,O.R. PROC W DIAGNOSES OF OTHER CONTACT W HEALTH SERVICES W MCC,,
|
| 18 |
+
10019385,20611796,HCFA,303,ATHEROSCLEROSIS W/O MCC,,
|
| 19 |
+
10010867,22196214,HCFA,188,PLEURAL EFFUSION W/O CC/MCC,,
|
| 20 |
+
10039831,26924951,HCFA,821,LYMPHOMA & LEUKEMIA W MAJOR O.R. PROCEDURE W CC,,
|
| 21 |
+
10015860,20854119,HCFA,628,"OTHER ENDOCRINE, NUTRIT & METAB O.R. PROC W MCC",,
|
| 22 |
+
10015860,22413744,HCFA,872,SEPTICEMIA OR SEVERE SEPSIS W/O MV >96 HOURS W/O MCC,,
|
| 23 |
+
10014354,26486158,HCFA,846,CHEMOTHERAPY W/O ACUTE LEUKEMIA AS SECONDARY DIAGNOSIS W MCC,,
|
| 24 |
+
10014354,24357615,HCFA,392,"ESOPHAGITIS, GASTROENT & MISC DIGEST DISORDERS W/O MCC",,
|
| 25 |
+
10020740,25826145,HCFA,418,LAPAROSCOPIC CHOLECYSTECTOMY W/O C.D.E. W CC,,
|
| 26 |
+
10019003,21457723,HCFA,809,MAJOR HEMATOL/IMMUN DIAG EXC SICKLE CELL CRISIS & COAGUL W CC,,
|
| 27 |
+
10003046,26048429,HCFA,327,"STOMACH, ESOPHAGEAL & DUODENAL PROC W CC",,
|
| 28 |
+
10002930,28301173,HCFA,885,PSYCHOSES,,
|
| 29 |
+
10004457,28723315,HCFA,307,CARDIAC CONGENITAL & VALVULAR DISORDERS W/O MCC,,
|
| 30 |
+
10019172,21540783,HCFA,988,NON-EXTENSIVE O.R. PROC UNRELATED TO PRINCIPAL DIAGNOSIS W CC,,
|
| 31 |
+
10015931,28157142,HCFA,266,ENDOVASCULAR CARDIAC VALVE REPLACEMENT W MCC,,
|
| 32 |
+
10039708,28258130,HCFA,802,OTHER O.R. PROC OF THE BLOOD & BLOOD FORMING ORGANS W MCC,,
|
| 33 |
+
10010867,22950920,HCFA,458,SPINAL FUS EXC CERV W SPINAL CURV/MALIG/INFEC OR EXT FUS W/O CC/MCC,,
|
| 34 |
+
10022880,27708593,HCFA,460,SPINAL FUSION EXCEPT CERVICAL W/O MCC,,
|
| 35 |
+
10003400,29483621,HCFA,374,DIGESTIVE MALIGNANCY W MCC,,
|
| 36 |
+
10003400,27296885,HCFA,071,NONSPECIFIC CEREBROVASCULAR DISORDERS W CC,,
|
| 37 |
+
10023117,28872262,HCFA,261,CARDIAC PACEMAKER REVISION EXCEPT DEVICE REPLACEMENT W CC,,
|
| 38 |
+
10014354,29780751,HCFA,866,VIRAL ILLNESS W/O MCC,,
|
| 39 |
+
10012853,22539296,HCFA,684,RENAL FAILURE W/O CC/MCC,,
|
| 40 |
+
10035631,20385771,HCFA,014,ALLOGENEIC BONE MARROW TRANSPLANT,,
|
| 41 |
+
10015860,28236161,HCFA,571,SKIN DEBRIDEMENT W CC,,
|
| 42 |
+
10040025,25384176,HCFA,293,HEART FAILURE & SHOCK W/O CC/MCC,,
|
| 43 |
+
10012853,27882036,HCFA,299,PERIPHERAL VASCULAR DISORDERS W MCC,,
|
| 44 |
+
10037928,24225421,HCFA,155,"OTHER EAR, NOSE, MOUTH & THROAT DIAGNOSES W CC",,
|
| 45 |
+
10021487,26321862,HCFA,443,"DISORDERS OF LIVER EXCEPT MALIG,CIRR,ALC HEPA W/O CC/MCC",,
|
| 46 |
+
10005909,20199380,HCFA,271,OTHER MAJOR CARDIOVASCULAR PROCEDURES W CC,,
|
| 47 |
+
10019568,28710730,HCFA,184,MAJOR CHEST TRAUMA W CC,,
|
| 48 |
+
10023239,29295881,HCFA,919,COMPLICATIONS OF TREATMENT W MCC,,
|
| 49 |
+
10002495,24982426,HCFA,270,OTHER MAJOR CARDIOVASCULAR PROCEDURES W MCC,,
|
| 50 |
+
10014729,28889419,HCFA,908,OTHER O.R. PROCEDURES FOR INJURIES W CC,,
|
| 51 |
+
10014354,29600294,HCFA,202,BRONCHITIS & ASTHMA W CC/MCC,,
|
| 52 |
+
10019003,28003918,HCFA,743,UTERINE & ADNEXA PROC FOR NON-MALIGNANCY W/O CC/MCC,,
|
| 53 |
+
10004457,23251352,HCFA,221,CARDIAC VALVE & OTH MAJ CARDIOTHORACIC PROC W/O CARD CATH W/O CC/MCC,,
|
| 54 |
+
10015860,28196804,HCFA,252,OTHER VASCULAR PROCEDURES W MCC,,
|
| 55 |
+
10016810,20973395,HCFA,331,MAJOR SMALL & LARGE BOWEL PROCEDURES W/O CC/MCC,,
|
| 56 |
+
10003400,20214994,HCFA,329,MAJOR SMALL & LARGE BOWEL PROCEDURES W MCC,,
|
| 57 |
+
10014354,24980601,HCFA,880,ACUTE ADJUSTMENT REACTION & PSYCHOSOCIAL DYSFUNCTION,,
|
| 58 |
+
10026255,20437651,HCFA,199,PNEUMOTHORAX W MCC,,
|
| 59 |
+
10035631,29462354,HCFA,834,ACUTE LEUKEMIA W/O MAJOR O.R. PROCEDURE W MCC,,
|
| 60 |
+
10015860,20790339,HCFA,854,INFECTIOUS & PARASITIC DISEASES W O.R. PROCEDURE W CC,,
|
| 61 |
+
10032725,25177949,HCFA,477,BIOPSIES OF MUSCULOSKELETAL SYSTEM & CONNECTIVE TISSUE W MCC,,
|
| 62 |
+
10040025,25172300,HCFA,603,CELLULITIS W/O MCC,,
|
| 63 |
+
10002930,23688993,HCFA,881,DEPRESSIVE NEUROSES,,
|
| 64 |
+
10013049,22675517,HCFA,230,OTHER CARDIOTHORACIC PROCEDURES W/O CC/MCC,,
|
| 65 |
+
10006580,24159665,HCFA,983,EXTENSIVE O.R. PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS W/O CC/MCC,,
|
| 66 |
+
10019003,27525946,HCFA,326,"STOMACH, ESOPHAGEAL & DUODENAL PROC W MCC",,
|
| 67 |
+
10007795,20285402,HCFA,372,MAJOR GASTROINTESTINAL DISORDERS & PERITONEAL INFECTIONS W CC,,
|
| 68 |
+
10002930,22733922,HCFA,896,ALCOHOL/DRUG ABUSE OR DEPENDENCE W/O REHABILITATION THERAPY W MCC,,
|
| 69 |
+
10026354,24547356,HCFA,131,CRANIAL/FACIAL PROCEDURES W CC/MCC,,
|
| 70 |
+
10014078,25809882,HCFA,100,SEIZURES W MCC,,
|
| 71 |
+
10005866,26134779,HCFA,389,G.I. OBSTRUCTION W CC,,
|
| 72 |
+
10002930,25696644,HCFA,644,ENDOCRINE DISORDERS W CC,,
|
| 73 |
+
10014354,29757856,HCFA,381,COMPLICATED PEPTIC ULCER W CC,,
|
| 74 |
+
10037928,24885579,HCFA,395,OTHER DIGESTIVE SYSTEM DIAGNOSES W/O CC/MCC,,
|
| 75 |
+
10038999,29026789,HCFA,494,"LOWER EXTREM & HUMER PROC EXCEPT HIP,FOOT,FEMUR W/O CC/MCC",,
|
| 76 |
+
10035631,21599196,HCFA,838,CHEMO W ACUTE LEUKEMIA AS SDX W CC OR HIGH DOSE CHEMO AGENT,,
|
| 77 |
+
10002930,25922998,HCFA,897,ALCOHOL/DRUG ABUSE OR DEPENDENCE W/O REHABILITATION THERAPY W/O MCC,,
|
| 78 |
+
10005866,27167814,HCFA,335,PERITONEAL ADHESIOLYSIS W MCC,,
|
| 79 |
+
10005866,20364112,HCFA,356,OTHER DIGESTIVE SYSTEM O.R. PROCEDURES W MCC,,
|
| 80 |
+
10003400,22390287,HCFA,375,DIGESTIVE MALIGNANCY W CC,,
|
| 81 |
+
10022281,29642388,HCFA,301,PERIPHERAL VASCULAR DISORDERS W/O CC/MCC,,
|
| 82 |
+
10021666,22756440,HCFA,085,"TRAUMATIC STUPOR & COMA, COMA <1 HR W MCC",,
|
| 83 |
+
10005866,26158160,HCFA,353,HERNIA PROCEDURES EXCEPT INGUINAL & FEMORAL W MCC,,
|
| 84 |
+
10018501,28479513,HCFA,086,"TRAUMATIC STUPOR & COMA, COMA <1 HR W CC",,
|
| 85 |
+
10026406,25260176,HCFA,894,"ALCOHOL/DRUG ABUSE OR DEPENDENCE, LEFT AMA",,
|
| 86 |
+
10005866,26158160,APR,228,"INGUINAL, FEMORAL & UMBILICAL HERNIA PROCEDURES",3,1
|
| 87 |
+
10010867,22196214,APR,143,"OTHER RESPIRATORY DIAGNOSES EXCEPT SIGNS, SYMPTOMS & MINOR DIAGNOSES",2,1
|
| 88 |
+
10002930,23688993,APR,754,DEPRESSION EXCEPT MAJOR DEPRESSIVE DISORDER,2,1
|
| 89 |
+
10026406,25260176,APR,770,"DRUG & ALCOHOL ABUSE OR DEPENDENCE, LEFT AGAINST MEDICAL ADVICE",2,1
|
| 90 |
+
10038999,29026789,APR,313,KNEE & LOWER LEG PROCEDURES EXCEPT FOOT,1,1
|
| 91 |
+
10019003,28003918,APR,513,UTERINE & ADNEXA PROCEDURES FOR NON-MALIGNANCY EXCEPT LEIOMYOMA,2,1
|
| 92 |
+
10007795,22051341,APR,422,HYPOVOLEMIA & RELATED ELECTROLYTE DISORDERS,1,1
|
| 93 |
+
10004235,22187210,APR,722,FEVER,2,1
|
| 94 |
+
10023239,29295881,APR,813,OTHER COMPLICATIONS OF TREATMENT,2,1
|
| 95 |
+
10002930,28301173,APR,751,MAJOR DEPRESSIVE DISORDERS & OTHER/UNSPECIFIED PSYCHOSES,1,1
|
| 96 |
+
10002930,25922998,APR,773,OPIOID ABUSE & DEPENDENCE,2,1
|
| 97 |
+
10019385,20611796,APR,198,ANGINA PECTORIS & CORONARY ATHEROSCLEROSIS,1,1
|
| 98 |
+
10039708,20572787,APR,421,"MALNUTRITION, FAILURE TO THRIVE & OTHER NUTRITIONAL DISORDERS",2,1
|
| 99 |
+
10015860,28236161,APR,380,SKIN ULCERS,2,1
|
| 100 |
+
10004457,28723315,APR,200,CARDIAC STRUCTURAL & VALVULAR DISORDERS,2,1
|
| 101 |
+
10002930,22733922,APR,774,COCAINE ABUSE & DEPENDENCE,3,1
|
| 102 |
+
10039831,26924951,APR,680,MAJOR O.R. PROCEDURES FOR LYMPHATIC/HEMATOPOIETIC/OTHER NEOPLASMS,2,1
|
| 103 |
+
10018328,26706939,APR,204,SYNCOPE & COLLAPSE,3,2
|
| 104 |
+
10002930,25696644,APR,424,OTHER ENDOCRINE DISORDERS,1,2
|
| 105 |
+
10014354,29780751,APR,723,VIRAL ILLNESS,3,2
|
| 106 |
+
10021938,27154822,APR,425,OTHER NON-HYPOVOLEMIC ELECTROLYTE DISORDERS,3,2
|
| 107 |
+
10015860,28196804,APR,182,OTHER PERIPHERAL VASCULAR PROCEDURES,2,2
|
| 108 |
+
10029484,20764029,APR,249,"OTHER GASTROENTERITIS, NAUSEA & VOMITING",3,2
|
| 109 |
+
10014354,22741225,APR,058,OTHER DISORDERS OF NERVOUS SYSTEM,2,2
|
| 110 |
+
10016150,29374560,APR,192,CARDIAC CATHETERIZATION FOR OTHER NON-CORONARY CONDITIONS,2,2
|
| 111 |
+
10040025,25933959,APR,364,"OTHER SKIN, SUBCUTANEOUS TISSUE & RELATED PROCEDURES",2,2
|
| 112 |
+
10023117,29839885,APR,161,CARDIAC DEFIBRILLATOR & HEART ASSIST IMPLANT,1,2
|
| 113 |
+
10020740,25826145,APR,263,CHOLECYSTECTOMY,3,2
|
| 114 |
+
10018081,28861356,APR,223,OTHER SMALL & LARGE BOWEL PROCEDURES,2,2
|
| 115 |
+
10035631,21599196,APR,681,OTHER O.R. PROCEDURES FOR LYMPHATIC/HEMATOPOIETIC/OTHER NEOPLASMS,3,2
|
| 116 |
+
10003400,26090619,APR,468,"OTHER KIDNEY & URINARY TRACT DIAGNOSES, SIGNS & SYMPTOMS",1,2
|
| 117 |
+
10014354,24980601,APR,756,ACUTE ANXIETY & DELIRIUM STATES,3,2
|
| 118 |
+
10005348,25239799,APR,162,CARDIAC VALVE PROCEDURES W AMI OR COMPLEX PDX,3,2
|
| 119 |
+
10014729,28889419,APR,169,MAJOR ABDOMINAL VASCULAR PROCEDURES,2,3
|
| 120 |
+
10014354,26228185,APR,469,ACUTE KIDNEY INJURY,3,3
|
| 121 |
+
10037928,24225421,APR,115,"OTHER EAR, NOSE, MOUTH,THROAT & CRANIAL/FACIAL DIAGNOSES",3,3
|
| 122 |
+
10015272,27993466,APR,134,PULMONARY EMBOLISM,3,3
|
| 123 |
+
10005866,20364112,APR,222,"OTHER STOMACH, ESOPHAGEAL & DUODENAL PROCEDURES",3,3
|
| 124 |
+
10015860,25103777,APR,466,"MALFUNCTION, REACTION, COMPLIC OF GENITOURINARY DEVICE OR PROC",4,3
|
| 125 |
+
10024043,24717014,APR,042,DEGENERATIVE NERVOUS SYSTEM DISORDERS EXC MULT SCLEROSIS,3,3
|
| 126 |
+
10032725,25177949,APR,309,OTHER SIGNIFICANT HIP & FEMUR SURGERY,3,3
|
| 127 |
+
10037928,20192635,APR,812,POISONING OF MEDICINAL AGENTS,3,3
|
| 128 |
+
10037861,24256866,APR,191,CARDIAC CATHETERIZATION FOR CORONARY ARTERY DISEASE,3,3
|
| 129 |
+
10040025,27876215,APR,244,DIVERTICULITIS & DIVERTICULOSIS,3,3
|
| 130 |
+
10005866,27167814,APR,224,PERITONEAL ADHESIOLYSIS,3,3
|
| 131 |
+
10040025,25172300,APR,383,CELLULITIS & OTHER SKIN INFECTIONS,3,3
|
| 132 |
+
10019003,21457723,APR,660,MAJOR HEMATOLOGIC/IMMUNOLOGIC DIAG EXC SICKLE CELL CRISIS & COAGUL,3,3
|
| 133 |
+
10015860,20854119,APR,320,OTHER MUSCULOSKELETAL SYSTEM & CONNECTIVE TISSUE PROCEDURES,3,3
|
| 134 |
+
10019003,26529390,APR,663,OTHER ANEMIA & DISORDERS OF BLOOD & BLOOD-FORMING ORGANS,4,4
|
| 135 |
+
10021487,28998349,APR,911,EXTENSIVE ABDOMINAL/THORACIC PROCEDURES FOR MULT SIGNIFICANT TRAUMA,4,4
|
| 136 |
+
10023117,21133938,APR,196,CARDIAC ARREST & SHOCK,4,4
|
| 137 |
+
10040025,21791856,APR,140,CHRONIC OBSTRUCTIVE PULMONARY DISEASE,4,4
|
| 138 |
+
10038992,22797747,APR,137,MAJOR RESPIRATORY INFECTIONS & INFLAMMATIONS,4,4
|
| 139 |
+
10014078,25809882,APR,053,SEIZURE,2,4
|
| 140 |
+
10016742,28506150,APR,850,"PROCEDURE W DIAG OF REHAB, AFTERCARE OR OTH CONTACT W HEALTH SERVICE",4,4
|
| 141 |
+
10032725,20611640,APR,041,NERVOUS SYSTEM MALIGNANCY,4,4
|
| 142 |
+
10026255,22059910,APR,136,RESPIRATORY MALIGNANCY,4,4
|
| 143 |
+
10027602,28166872,HCFA,020,INTRACRANIAL VASCULAR PROCEDURES W PDX HEMORRHAGE W MCC,,
|
| 144 |
+
10018845,21101111,APR,020,CRANIOTOMY FOR TRAUMA,1,2
|
| 145 |
+
10037861,24540843,APR,020,CRANIOTOMY FOR TRAUMA,4,4
|
| 146 |
+
10027602,21477991,APR,021,CRANIOTOMY EXCEPT FOR TRAUMA,2,1
|
| 147 |
+
10008287,22168393,APR,021,CRANIOTOMY EXCEPT FOR TRAUMA,1,1
|
| 148 |
+
10039997,24294180,APR,021,CRANIOTOMY EXCEPT FOR TRAUMA,2,1
|
| 149 |
+
10001217,27703517,APR,021,CRANIOTOMY EXCEPT FOR TRAUMA,3,2
|
| 150 |
+
10025463,24470193,APR,021,CRANIOTOMY EXCEPT FOR TRAUMA,2,3
|
| 151 |
+
10001217,24597018,APR,021,CRANIOTOMY EXCEPT FOR TRAUMA,3,4
|
| 152 |
+
10027602,28166872,APR,021,CRANIOTOMY EXCEPT FOR TRAUMA,4,4
|
| 153 |
+
10001217,24597018,HCFA,023,CRANIO W MAJOR DEV IMPL/ACUTE COMPLEX CNS PDX W MCC OR CHEMO IMPLANT,,
|
| 154 |
+
10001217,27703517,HCFA,023,CRANIO W MAJOR DEV IMPL/ACUTE COMPLEX CNS PDX W MCC OR CHEMO IMPLANT,,
|
| 155 |
+
10025463,24470193,HCFA,024,CRANIO W MAJOR DEV IMPL/ACUTE COMPLEX CNS PDX W/O MCC,,
|
| 156 |
+
10004457,28108313,APR,024,EXTRACRANIAL VASCULAR PROCEDURES,2,1
|
| 157 |
+
10020187,24104168,APR,024,EXTRACRANIAL VASCULAR PROCEDURES,1,1
|
| 158 |
+
10020187,26842957,APR,024,EXTRACRANIAL VASCULAR PROCEDURES,2,1
|
| 159 |
+
10018328,23786647,APR,024,EXTRACRANIAL VASCULAR PROCEDURES,2,2
|
| 160 |
+
10037861,24540843,HCFA,025,CRANIOTOMY & ENDOVASCULAR INTRACRANIAL PROCEDURES W MCC,,
|
| 161 |
+
10018328,23786647,HCFA,025,CRANIOTOMY & ENDOVASCULAR INTRACRANIAL PROCEDURES W MCC,,
|
| 162 |
+
10020187,26842957,HCFA,026,CRANIOTOMY & ENDOVASCULAR INTRACRANIAL PROCEDURES W CC,,
|
| 163 |
+
10027602,21477991,HCFA,026,CRANIOTOMY & ENDOVASCULAR INTRACRANIAL PROCEDURES W CC,,
|
| 164 |
+
10018845,21101111,HCFA,026,CRANIOTOMY & ENDOVASCULAR INTRACRANIAL PROCEDURES W CC,,
|
| 165 |
+
10039997,24294180,HCFA,027,CRANIOTOMY & ENDOVASCULAR INTRACRANIAL PROCEDURES W/O CC/MCC,,
|
| 166 |
+
10008287,22168393,HCFA,027,CRANIOTOMY & ENDOVASCULAR INTRACRANIAL PROCEDURES W/O CC/MCC,,
|
| 167 |
+
10017492,27672872,APR,045,CVA & PRECEREBRAL OCCLUSION W INFARCT,2,2
|
| 168 |
+
10039997,22484749,APR,045,CVA & PRECEREBRAL OCCLUSION W INFARCT,2,2
|
| 169 |
+
10021938,23112364,APR,052,ALTERATION IN CONSCIOUSNESS,3,2
|
| 170 |
+
10003400,27296885,APR,052,ALTERATION IN CONSCIOUSNESS,3,2
|
| 171 |
+
10004733,27411876,APR,052,ALTERATION IN CONSCIOUSNESS,4,4
|
| 172 |
+
10018501,28479513,APR,055,HEAD TRAUMA W COMA >1 HR OR HEMORRHAGE,2,1
|
| 173 |
+
10021666,22756440,APR,055,HEAD TRAUMA W COMA >1 HR OR HEMORRHAGE,4,4
|
| 174 |
+
10014354,22741225,HCFA,057,DEGENERATIVE NERVOUS SYSTEM DISORDERS W/O MCC,,
|
| 175 |
+
10024043,24717014,HCFA,057,DEGENERATIVE NERVOUS SYSTEM DISORDERS W/O MCC,,
|
| 176 |
+
10017492,27672872,HCFA,065,INTRACRANIAL HEMORRHAGE OR CEREBRAL INFARCTION W CC,,
|
| 177 |
+
10039997,22484749,HCFA,065,INTRACRANIAL HEMORRHAGE OR CEREBRAL INFARCTION W CC OR TPA IN 24 HRS,,
|
| 178 |
+
10004733,27411876,HCFA,070,NONSPECIFIC CEREBROVASCULAR DISORDERS W MCC,,
|
| 179 |
+
10021938,23112364,HCFA,070,NONSPECIFIC CEREBROVASCULAR DISORDERS W MCC,,
|
| 180 |
+
10025612,23403708,APR,120,MAJOR RESPIRATORY & CHEST PROCEDURES,2,1
|
| 181 |
+
10005348,29496232,APR,120,MAJOR RESPIRATORY & CHEST PROCEDURES,3,2
|
| 182 |
+
10021312,25020332,APR,121,OTHER RESPIRATORY & CHEST PROCEDURES,1,1
|
| 183 |
+
10021312,28829452,APR,121,OTHER RESPIRATORY & CHEST PROCEDURES,2,2
|
| 184 |
+
10005817,28661809,APR,130,RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT 96+ HOURS,3,3
|
| 185 |
+
10038999,27189241,APR,130,RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT 96+ HOURS,4,4
|
| 186 |
+
10029291,22205327,APR,130,RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT 96+ HOURS,4,4
|
| 187 |
+
10016742,29281842,APR,130,RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT 96+ HOURS,4,4
|
| 188 |
+
10035631,29276678,APR,130,RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT 96+ HOURS,4,4
|
| 189 |
+
10016742,27568122,APR,133,RESPIRATORY FAILURE,3,3
|
| 190 |
+
10019003,26703331,APR,133,RESPIRATORY FAILURE,3,3
|
| 191 |
+
10002428,20321825,APR,133,RESPIRATORY FAILURE,3,3
|
| 192 |
+
10027445,26275841,APR,133,RESPIRATORY FAILURE,4,3
|
| 193 |
+
10019568,28710730,APR,135,MAJOR CHEST & RESPIRATORY TRAUMA,2,1
|
| 194 |
+
10026255,20437651,APR,135,MAJOR CHEST & RESPIRATORY TRAUMA,3,2
|
| 195 |
+
10020640,27984218,APR,139,OTHER PNEUMONIA,3,3
|
| 196 |
+
10037928,22326517,APR,139,OTHER PNEUMONIA,3,3
|
| 197 |
+
10014354,27487226,APR,139,OTHER PNEUMONIA,4,4
|
| 198 |
+
10014354,29600294,APR,144,"RESPIRATORY SIGNS, SYMPTOMS & MINOR DIAGNOSES",3,2
|
| 199 |
+
10035631,27496788,APR,144,"RESPIRATORY SIGNS, SYMPTOMS & MINOR DIAGNOSES",4,3
|
| 200 |
+
10019003,25508812,APR,144,"RESPIRATORY SIGNS, SYMPTOMS & MINOR DIAGNOSES",3,3
|
| 201 |
+
10021312,28829452,HCFA,163,MAJOR CHEST PROCEDURES W MCC,,
|
| 202 |
+
10009035,28324362,APR,163,CARDIAC VALVE PROCEDURES W/O AMI OR COMPLEX PDX,1,1
|
| 203 |
+
10019172,24997044,APR,163,CARDIAC VALVE PROCEDURES W/O AMI OR COMPLEX PDX,2,2
|
| 204 |
+
10004457,23251352,APR,163,CARDIAC VALVE PROCEDURES W/O AMI OR COMPLEX PDX,2,2
|
| 205 |
+
10038992,24745425,APR,163,CARDIAC VALVE PROCEDURES W/O AMI OR COMPLEX PDX,3,3
|
| 206 |
+
10025612,23403708,HCFA,164,MAJOR CHEST PROCEDURES W CC,,
|
| 207 |
+
10005348,29496232,HCFA,164,MAJOR CHEST PROCEDURES W CC,,
|
| 208 |
+
10021312,25020332,HCFA,165,MAJOR CHEST PROCEDURES W/O CC/MCC,,
|
| 209 |
+
10018423,29366372,APR,165,CORONARY BYPASS W AMI OR COMPLEX PDX,2,1
|
| 210 |
+
10004422,21255400,APR,165,CORONARY BYPASS W AMI OR COMPLEX PDX,3,2
|
| 211 |
+
10035631,27496788,HCFA,166,OTHER RESP SYSTEM O.R. PROCEDURES W MCC,,
|
| 212 |
+
10022017,22342963,APR,166,CORONARY BYPASS W/O AMI OR COMPLEX PDX,2,1
|
| 213 |
+
10019385,20297618,APR,166,CORONARY BYPASS W/O AMI OR COMPLEX PDX,2,1
|
| 214 |
+
10011398,27505812,APR,166,CORONARY BYPASS W/O AMI OR COMPLEX PDX,2,1
|
| 215 |
+
10035185,22580999,APR,166,CORONARY BYPASS W/O AMI OR COMPLEX PDX,2,1
|
| 216 |
+
10009628,25926192,APR,166,CORONARY BYPASS W/O AMI OR COMPLEX PDX,2,1
|
| 217 |
+
10012552,27089790,APR,166,CORONARY BYPASS W/O AMI OR COMPLEX PDX,2,2
|
| 218 |
+
10021118,24490144,APR,166,CORONARY BYPASS W/O AMI OR COMPLEX PDX,3,2
|
| 219 |
+
10023771,20044587,APR,166,CORONARY BYPASS W/O AMI OR COMPLEX PDX,2,2
|
| 220 |
+
10005817,20626031,APR,166,CORONARY BYPASS W/O AMI OR COMPLEX PDX,2,2
|
| 221 |
+
10019003,25508812,HCFA,167,OTHER RESP SYSTEM O.R. PROCEDURES W CC,,
|
| 222 |
+
10013049,22675517,APR,167,OTHER CARDIOTHORACIC & THORACIC VASCULAR PROCEDURES,1,1
|
| 223 |
+
10014354,28335091,APR,174,PERCUTANEOUS CORONARY INTERVENTION W AMI,2,2
|
| 224 |
+
10007058,22954658,APR,174,PERCUTANEOUS CORONARY INTERVENTION W AMI,3,3
|
| 225 |
+
10002495,24982426,APR,174,PERCUTANEOUS CORONARY INTERVENTION W AMI,4,4
|
| 226 |
+
10025463,27327816,APR,175,PERCUTANEOUS CORONARY INTERVENTION W/O AMI,1,1
|
| 227 |
+
10027445,29163082,APR,175,PERCUTANEOUS CORONARY INTERVENTION W/O AMI,3,3
|
| 228 |
+
10015931,28157142,APR,175,PERCUTANEOUS CORONARY INTERVENTION W/O AMI,4,3
|
| 229 |
+
10038992,22797747,HCFA,177,RESPIRATORY INFECTIONS & INFLAMMATIONS W MCC,,
|
| 230 |
+
10023117,28872262,APR,177,CARDIAC PACEMAKER & DEFIBRILLATOR REVISION EXCEPT DEVICE REPLACEMENT,3,3
|
| 231 |
+
10002428,20321825,HCFA,189,PULMONARY EDEMA & RESPIRATORY FAILURE,,
|
| 232 |
+
10019003,26703331,HCFA,189,PULMONARY EDEMA & RESPIRATORY FAILURE,,
|
| 233 |
+
10040025,21791856,HCFA,190,CHRONIC OBSTRUCTIVE PULMONARY DISEASE W MCC,,
|
| 234 |
+
10010471,29842315,APR,190,ACUTE MYOCARDIAL INFARCTION,4,4
|
| 235 |
+
10020640,27984218,HCFA,193,SIMPLE PNEUMONIA & PLEURISY W MCC,,
|
| 236 |
+
10014354,27487226,HCFA,193,SIMPLE PNEUMONIA & PLEURISY W MCC,,
|
| 237 |
+
10037928,22326517,HCFA,194,SIMPLE PNEUMONIA & PLEURISY W CC,,
|
| 238 |
+
10023117,29858644,APR,194,HEART FAILURE,2,1
|
| 239 |
+
10012853,26369609,APR,194,HEART FAILURE,1,2
|
| 240 |
+
10040025,25384176,APR,194,HEART FAILURE,2,2
|
| 241 |
+
10023117,28887654,APR,194,HEART FAILURE,2,2
|
| 242 |
+
10027445,27488741,APR,194,HEART FAILURE,3,3
|
| 243 |
+
10018081,25973915,APR,194,HEART FAILURE,3,3
|
| 244 |
+
10023117,21607814,APR,194,HEART FAILURE,4,3
|
| 245 |
+
10019003,26226543,APR,194,HEART FAILURE,3,4
|
| 246 |
+
10015931,24420677,APR,194,HEART FAILURE,3,4
|
| 247 |
+
10012853,27882036,APR,197,PERIPHERAL & OTHER VASCULAR DISORDERS,3,3
|
| 248 |
+
10022281,29642388,APR,197,PERIPHERAL & OTHER VASCULAR DISORDERS,2,3
|
| 249 |
+
10003400,26467376,APR,201,CARDIAC ARRHYTHMIA & CONDUCTION DISORDERS,4,3
|
| 250 |
+
10010471,21322534,APR,201,CARDIAC ARRHYTHMIA & CONDUCTION DISORDERS,3,3
|
| 251 |
+
10040025,27553957,APR,201,CARDIAC ARRHYTHMIA & CONDUCTION DISORDERS,3,3
|
| 252 |
+
10005817,28661809,HCFA,207,RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT >96 HOURS,,
|
| 253 |
+
10035631,29276678,HCFA,207,RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT >96 HOURS,,
|
| 254 |
+
10016742,29281842,HCFA,207,RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT >96 HOURS,,
|
| 255 |
+
10029291,22205327,HCFA,207,RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT >96 HOURS,,
|
| 256 |
+
10004720,22081550,HCFA,207,RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT >96 HOURS,,
|
| 257 |
+
10038999,27189241,HCFA,207,RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT >96 HOURS,,
|
| 258 |
+
10014354,23132022,APR,207,OTHER CIRCULATORY SYSTEM DIAGNOSES,3,2
|
| 259 |
+
10014354,27562275,APR,207,OTHER CIRCULATORY SYSTEM DIAGNOSES,2,2
|
| 260 |
+
10031404,21606243,APR,207,OTHER CIRCULATORY SYSTEM DIAGNOSES,3,3
|
| 261 |
+
10000032,29079034,APR,207,OTHER CIRCULATORY SYSTEM DIAGNOSES,3,3
|
| 262 |
+
10027445,26275841,HCFA,208,RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT <96 HOURS,,
|
| 263 |
+
10016742,27568122,HCFA,208,RESPIRATORY SYSTEM DIAGNOSIS W VENTILATOR SUPPORT <96 HOURS,,
|
| 264 |
+
10009035,28324362,HCFA,220,CARDIAC VALVE & OTH MAJ CARDIOTHORACIC PROC W/O CARD CATH W CC,,
|
| 265 |
+
10019172,24997044,HCFA,220,CARDIAC VALVE & OTH MAJ CARDIOTHORACIC PROC W/O CARD CATH W CC,,
|
| 266 |
+
10038992,24745425,HCFA,220,CARDIAC VALVE & OTH MAJ CARDIOTHORACIC PROC W/O CARD CATH W CC,,
|
| 267 |
+
10003046,26048429,APR,220,"MAJOR STOMACH, ESOPHAGEAL & DUODENAL PROCEDURES",3,2
|
| 268 |
+
10019003,27525946,APR,220,"MAJOR STOMACH, ESOPHAGEAL & DUODENAL PROCEDURES",4,4
|
| 269 |
+
10005866,21636229,APR,229,OTHER DIGESTIVE SYSTEM & ABDOMINAL PROCEDURES,3,2
|
| 270 |
+
10005866,22589518,APR,229,OTHER DIGESTIVE SYSTEM & ABDOMINAL PROCEDURES,3,3
|
| 271 |
+
10018423,29366372,HCFA,234,CORONARY BYPASS W CARDIAC CATH W/O MCC,,
|
| 272 |
+
10004422,21255400,HCFA,234,CORONARY BYPASS W CARDIAC CATH W/O MCC,,
|
| 273 |
+
10022017,22342963,HCFA,235,CORONARY BYPASS W/O CARDIAC CATH W MCC,,
|
| 274 |
+
10021118,24490144,HCFA,235,CORONARY BYPASS W/O CARDIAC CATH W MCC,,
|
| 275 |
+
10035185,22580999,HCFA,236,CORONARY BYPASS W/O CARDIAC CATH W/O MCC,,
|
| 276 |
+
10023771,20044587,HCFA,236,CORONARY BYPASS W/O CARDIAC CATH W/O MCC,,
|
| 277 |
+
10009628,25926192,HCFA,236,CORONARY BYPASS W/O CARDIAC CATH W/O MCC,,
|
| 278 |
+
10005817,20626031,HCFA,236,CORONARY BYPASS W/O CARDIAC CATH W/O MCC,,
|
| 279 |
+
10012552,27089790,HCFA,236,CORONARY BYPASS W/O CARDIAC CATH W/O MCC,,
|
| 280 |
+
10011398,27505812,HCFA,236,CORONARY BYPASS W/O CARDIAC CATH W/O MCC,,
|
| 281 |
+
10019385,20297618,HCFA,236,CORONARY BYPASS W/O CARDIAC CATH W/O MCC,,
|
| 282 |
+
10003400,22390287,APR,240,DIGESTIVE MALIGNANCY,3,2
|
| 283 |
+
10003400,29483621,APR,240,DIGESTIVE MALIGNANCY,3,3
|
| 284 |
+
10019917,22585261,APR,241,PEPTIC ULCER & GASTRITIS,1,1
|
| 285 |
+
10014354,29757856,APR,241,PEPTIC ULCER & GASTRITIS,3,3
|
| 286 |
+
10036156,28019404,APR,241,PEPTIC ULCER & GASTRITIS,3,3
|
| 287 |
+
10007928,20338077,APR,241,PEPTIC ULCER & GASTRITIS,4,4
|
| 288 |
+
10014354,28335091,HCFA,247,PERC CARDIOVASC PROC W DRUG-ELUTING STENT W/O MCC,,
|
| 289 |
+
10005866,26134779,APR,247,INTESTINAL OBSTRUCTION,2,2
|
| 290 |
+
10005866,23514107,APR,247,INTESTINAL OBSTRUCTION,4,3
|
| 291 |
+
10007795,20285402,APR,248,MAJOR GASTROINTESTINAL & PERITONEAL INFECTIONS,3,1
|
| 292 |
+
10038081,20755971,APR,248,MAJOR GASTROINTESTINAL & PERITONEAL INFECTIONS,3,3
|
| 293 |
+
10037928,23721604,APR,248,MAJOR GASTROINTESTINAL & PERITONEAL INFECTIONS,4,3
|
| 294 |
+
10027445,29163082,HCFA,250,PERC CARDIOVASC PROC W/O CORONARY ARTERY STENT W MCC,,
|
| 295 |
+
10007058,22954658,HCFA,250,PERC CARDIOVASC PROC W/O CORONARY ARTERY STENT W MCC,,
|
| 296 |
+
10025463,27327816,HCFA,251,PERC CARDIOVASC PROC W/O CORONARY ARTERY STENT W/O MCC,,
|
| 297 |
+
10014354,24357615,APR,251,ABDOMINAL PAIN,3,2
|
| 298 |
+
10014354,22508257,APR,253,OTHER & UNSPECIFIED GASTROINTESTINAL HEMORRHAGE,3,2
|
| 299 |
+
10002428,28295257,APR,253,OTHER & UNSPECIFIED GASTROINTESTINAL HEMORRHAGE,3,3
|
| 300 |
+
10037928,24885579,APR,254,OTHER DIGESTIVE SYSTEM DIAGNOSES,2,2
|
| 301 |
+
10015931,22130791,APR,254,OTHER DIGESTIVE SYSTEM DIAGNOSES,4,4
|
| 302 |
+
10021487,20429160,APR,260,"MAJOR PANCREAS, LIVER & SHUNT PROCEDURES",2,1
|
| 303 |
+
10007795,25135483,APR,260,"MAJOR PANCREAS, LIVER & SHUNT PROCEDURES",2,1
|
| 304 |
+
10004235,25970245,APR,260,"MAJOR PANCREAS, LIVER & SHUNT PROCEDURES",3,2
|
| 305 |
+
10006053,22942076,APR,260,"MAJOR PANCREAS, LIVER & SHUNT PROCEDURES",4,4
|
| 306 |
+
10019777,27738145,APR,264,"OTHER HEPATOBILIARY, PANCREAS & ABDOMINAL PROCEDURES",4,3
|
| 307 |
+
10007795,28477357,APR,264,"OTHER HEPATOBILIARY, PANCREAS & ABDOMINAL PROCEDURES",4,3
|
| 308 |
+
10039708,25864431,APR,264,"OTHER HEPATOBILIARY, PANCREAS & ABDOMINAL PROCEDURES",4,4
|
| 309 |
+
10007818,22987108,APR,264,"OTHER HEPATOBILIARY, PANCREAS & ABDOMINAL PROCEDURES",4,4
|
| 310 |
+
10021487,26321862,APR,279,HEPATIC COMA & OTHER MAJOR ACUTE LIVER DISORDERS,3,1
|
| 311 |
+
10000032,22841357,APR,279,HEPATIC COMA & OTHER MAJOR ACUTE LIVER DISORDERS,3,2
|
| 312 |
+
10021487,27660781,APR,279,HEPATIC COMA & OTHER MAJOR ACUTE LIVER DISORDERS,4,2
|
| 313 |
+
10039708,29488258,APR,279,HEPATIC COMA & OTHER MAJOR ACUTE LIVER DISORDERS,2,2
|
| 314 |
+
10039708,20093566,APR,280,ALCOHOLIC LIVER DISEASE,3,3
|
| 315 |
+
10039708,24928679,APR,280,ALCOHOLIC LIVER DISEASE,3,4
|
| 316 |
+
10010471,29842315,HCFA,283,"ACUTE MYOCARDIAL INFARCTION, EXPIRED W MCC",,
|
| 317 |
+
10000032,22595853,APR,283,OTHER DISORDERS OF THE LIVER,2,2
|
| 318 |
+
10000032,25742920,APR,283,OTHER DISORDERS OF THE LIVER,3,2
|
| 319 |
+
10037861,24256866,HCFA,287,"CIRCULATORY DISORDERS EXCEPT AMI, W CARD CATH W/O MCC",,
|
| 320 |
+
10016150,29374560,HCFA,287,"CIRCULATORY DISORDERS EXCEPT AMI, W CARD CATH W/O MCC",,
|
| 321 |
+
10027445,27488741,HCFA,291,HEART FAILURE & SHOCK W MCC,,
|
| 322 |
+
10019003,26226543,HCFA,291,HEART FAILURE & SHOCK W MCC,,
|
| 323 |
+
10023117,21133938,HCFA,291,HEART FAILURE & SHOCK W MCC,,
|
| 324 |
+
10015931,24420677,HCFA,291,HEART FAILURE & SHOCK W MCC,,
|
| 325 |
+
10023117,28887654,HCFA,292,HEART FAILURE & SHOCK W CC,,
|
| 326 |
+
10018081,25973915,HCFA,292,HEART FAILURE & SHOCK W CC,,
|
| 327 |
+
10023117,29858644,HCFA,292,HEART FAILURE & SHOCK W CC,,
|
| 328 |
+
10023117,21607814,HCFA,292,HEART FAILURE & SHOCK W CC,,
|
| 329 |
+
10010867,22950920,APR,304,DORSAL & LUMBAR FUSION PROC EXCEPT FOR CURVATURE OF BACK,3,1
|
| 330 |
+
10022880,27708593,APR,304,DORSAL & LUMBAR FUSION PROC EXCEPT FOR CURVATURE OF BACK,2,1
|
| 331 |
+
10010471,21322534,HCFA,308,CARDIAC ARRHYTHMIA & CONDUCTION DISORDERS W MCC,,
|
| 332 |
+
10003400,26467376,HCFA,308,CARDIAC ARRHYTHMIA & CONDUCTION DISORDERS W MCC,,
|
| 333 |
+
10040025,27553957,HCFA,308,CARDIAC ARRHYTHMIA & CONDUCTION DISORDERS W MCC,,
|
| 334 |
+
10015860,26352758,APR,308,HIP & FEMUR FRACTURE REPAIR,2,2
|
| 335 |
+
10017492,27417763,APR,308,HIP & FEMUR FRACTURE REPAIR,4,4
|
| 336 |
+
10018328,26706939,HCFA,312,SYNCOPE & COLLAPSE,,
|
| 337 |
+
10000032,29079034,HCFA,312,SYNCOPE & COLLAPSE,,
|
| 338 |
+
10015860,25103777,HCFA,314,OTHER CIRCULATORY SYSTEM DIAGNOSES W MCC,,
|
| 339 |
+
10035631,22732862,HCFA,314,OTHER CIRCULATORY SYSTEM DIAGNOSES W MCC,,
|
| 340 |
+
10015860,28613200,APR,314,FOOT & TOE PROCEDURES,2,2
|
| 341 |
+
10014354,23132022,HCFA,315,OTHER CIRCULATORY SYSTEM DIAGNOSES W CC,,
|
| 342 |
+
10031404,21606243,HCFA,315,OTHER CIRCULATORY SYSTEM DIAGNOSES W CC,,
|
| 343 |
+
10014354,27562275,HCFA,315,OTHER CIRCULATORY SYSTEM DIAGNOSES W CC,,
|
| 344 |
+
10012853,26369609,HCFA,315,OTHER CIRCULATORY SYSTEM DIAGNOSES W CC,,
|
| 345 |
+
10038081,20755971,HCFA,371,MAJOR GASTROINTESTINAL DISORDERS & PERITONEAL INFECTIONS W MCC,,
|
| 346 |
+
10037928,23721604,HCFA,371,MAJOR GASTROINTESTINAL DISORDERS & PERITONEAL INFECTIONS W MCC,,
|
| 347 |
+
10002428,28295257,HCFA,377,G.I. HEMORRHAGE W MCC,,
|
| 348 |
+
10015931,22130791,HCFA,377,G.I. HEMORRHAGE W MCC,,
|
| 349 |
+
10040025,27876215,HCFA,377,G.I. HEMORRHAGE W MCC,,
|
| 350 |
+
10007928,20338077,HCFA,377,G.I. HEMORRHAGE W MCC,,
|
| 351 |
+
10019917,22585261,HCFA,378,G.I. HEMORRHAGE W CC,,
|
| 352 |
+
10036156,28019404,HCFA,378,G.I. HEMORRHAGE W CC,,
|
| 353 |
+
10014354,22508257,HCFA,378,G.I. HEMORRHAGE W CC,,
|
| 354 |
+
10029484,20764029,HCFA,391,"ESOPHAGITIS, GASTROENT & MISC DIGEST DISORDERS W MCC",,
|
| 355 |
+
10005866,22589518,HCFA,391,"ESOPHAGITIS, GASTROENT & MISC DIGEST DISORDERS W MCC",,
|
| 356 |
+
10021487,20429160,HCFA,405,"PANCREAS, LIVER & SHUNT PROCEDURES W MCC",,
|
| 357 |
+
10006053,22942076,HCFA,405,"PANCREAS, LIVER & SHUNT PROCEDURES W MCC",,
|
| 358 |
+
10004235,25970245,HCFA,406,"PANCREAS, LIVER & SHUNT PROCEDURES W CC",,
|
| 359 |
+
10007795,25135483,HCFA,406,"PANCREAS, LIVER & SHUNT PROCEDURES W CC",,
|
| 360 |
+
10007818,22987108,HCFA,420,HEPATOBILIARY DIAGNOSTIC PROCEDURES W MCC,,
|
| 361 |
+
10037928,24656677,APR,420,DIABETES,2,2
|
| 362 |
+
10037928,22490490,APR,420,DIABETES,3,4
|
| 363 |
+
10019777,27738145,HCFA,423,OTHER HEPATOBILIARY OR PANCREAS O.R. PROCEDURES W MCC,,
|
| 364 |
+
10007795,28477357,HCFA,423,OTHER HEPATOBILIARY OR PANCREAS O.R. PROCEDURES W MCC,,
|
| 365 |
+
10039708,24928679,HCFA,432,CIRRHOSIS & ALCOHOLIC HEPATITIS W MCC,,
|
| 366 |
+
10039708,20093566,HCFA,432,CIRRHOSIS & ALCOHOLIC HEPATITIS W MCC,,
|
| 367 |
+
10039708,25864431,HCFA,441,"DISORDERS OF LIVER EXCEPT MALIG,CIRR,ALC HEPA W MCC",,
|
| 368 |
+
10021487,27660781,HCFA,441,"DISORDERS OF LIVER EXCEPT MALIG,CIRR,ALC HEPA W MCC",,
|
| 369 |
+
10039708,29488258,HCFA,441,"DISORDERS OF LIVER EXCEPT MALIG, CIRR, ALC HEPA W MCC",,
|
| 370 |
+
10000032,22841357,HCFA,442,"DISORDERS OF LIVER EXCEPT MALIG,CIRR,ALC HEPA W CC",,
|
| 371 |
+
10000032,22595853,HCFA,442,"DISORDERS OF LIVER EXCEPT MALIG,CIRR,ALC HEPA W CC",,
|
| 372 |
+
10000032,25742920,HCFA,442,"DISORDERS OF LIVER EXCEPT MALIG,CIRR,ALC HEPA W CC",,
|
| 373 |
+
10017492,27417763,HCFA,480,HIP & FEMUR PROCEDURES EXCEPT MAJOR JOINT W MCC,,
|
| 374 |
+
10015860,26352758,HCFA,480,HIP & FEMUR PROCEDURES EXCEPT MAJOR JOINT W MCC,,
|
| 375 |
+
10040025,25933959,HCFA,629,"OTHER ENDOCRINE, NUTRIT & METAB O.R. PROC W CC",,
|
| 376 |
+
10015860,28613200,HCFA,629,"OTHER ENDOCRINE, NUTRIT & METAB O.R. PROC W CC",,
|
| 377 |
+
10037928,24656677,HCFA,638,DIABETES W CC,,
|
| 378 |
+
10037928,22490490,HCFA,638,DIABETES W CC,,
|
| 379 |
+
10020306,23052851,HCFA,640,"MISC DISORDERS OF NUTRITION,METABOLISM,FLUIDS/ELECTROLYTES W MCC",,
|
| 380 |
+
10021938,27154822,HCFA,640,"MISC DISORDERS OF NUTRITION,METABOLISM,FLUIDS/ELECTROLYTES W MCC",,
|
| 381 |
+
10039708,20572787,HCFA,641,"MISC DISORDERS OF NUTRITION,METABOLISM,FLUIDS/ELECTROLYTES W/O MCC",,
|
| 382 |
+
10007795,22051341,HCFA,641,"MISC DISORDERS OF NUTRITION,METABOLISM,FLUIDS/ELECTROLYTES W/O MCC",,
|
| 383 |
+
10037928,29802992,HCFA,682,RENAL FAILURE W MCC,,
|
| 384 |
+
10023117,24244087,HCFA,682,RENAL FAILURE W MCC,,
|
| 385 |
+
10039708,26793610,HCFA,683,RENAL FAILURE W CC,,
|
| 386 |
+
10014354,26228185,HCFA,683,RENAL FAILURE W CC,,
|
| 387 |
+
10040025,22251969,HCFA,683,RENAL FAILURE W CC,,
|
| 388 |
+
10014354,26013492,HCFA,683,RENAL FAILURE W CC,,
|
| 389 |
+
10035631,29462354,APR,690,ACUTE LEUKEMIA,3,2
|
| 390 |
+
10035631,21476294,APR,690,ACUTE LEUKEMIA,4,3
|
| 391 |
+
10003400,26090619,HCFA,696,KIDNEY & URINARY TRACT SIGNS & SYMPTOMS W/O MCC,,
|
| 392 |
+
10014354,26486158,APR,696,OTHER CHEMOTHERAPY,3,3
|
| 393 |
+
10015860,25085565,APR,710,INFECTIOUS & PARASITIC DISEASES INCLUDING HIV W O.R. PROCEDURE,3,2
|
| 394 |
+
10015860,24698912,APR,710,INFECTIOUS & PARASITIC DISEASES INCLUDING HIV W O.R. PROCEDURE,3,3
|
| 395 |
+
10018081,21027282,APR,710,INFECTIOUS & PARASITIC DISEASES INCLUDING HIV W O.R. PROCEDURE,4,4
|
| 396 |
+
10014729,23300884,APR,711,"POST-OP, POST-TRAUMA, OTHER DEVICE INFECTIONS W O.R. PROCEDURE",3,2
|
| 397 |
+
10040025,27996267,APR,711,"POST-OP, POST-TRAUMA, OTHER DEVICE INFECTIONS W O.R. PROCEDURE",3,3
|
| 398 |
+
10015860,20790339,APR,720,SEPTICEMIA & DISSEMINATED INFECTIONS,3,2
|
| 399 |
+
10009049,22995465,APR,720,SEPTICEMIA & DISSEMINATED INFECTIONS,3,2
|
| 400 |
+
10015860,22413744,APR,720,SEPTICEMIA & DISSEMINATED INFECTIONS,3,3
|
| 401 |
+
10020740,23831430,APR,720,SEPTICEMIA & DISSEMINATED INFECTIONS,4,3
|
| 402 |
+
10019003,29279905,APR,720,SEPTICEMIA & DISSEMINATED INFECTIONS,3,4
|
| 403 |
+
10020944,29974575,APR,720,SEPTICEMIA & DISSEMINATED INFECTIONS,4,4
|
| 404 |
+
10039708,23819016,APR,720,SEPTICEMIA & DISSEMINATED INFECTIONS,4,4
|
| 405 |
+
10020786,23488445,APR,720,SEPTICEMIA & DISSEMINATED INFECTIONS,3,4
|
| 406 |
+
10002428,28662225,APR,720,SEPTICEMIA & DISSEMINATED INFECTIONS,4,4
|
| 407 |
+
10037975,27617929,APR,720,SEPTICEMIA & DISSEMINATED INFECTIONS,4,4
|
| 408 |
+
10002428,23473524,APR,720,SEPTICEMIA & DISSEMINATED INFECTIONS,4,4
|
| 409 |
+
10004235,24181354,APR,720,SEPTICEMIA & DISSEMINATED INFECTIONS,4,4
|
| 410 |
+
10021487,27112038,APR,721,"POST-OPERATIVE, POST-TRAUMATIC, OTHER DEVICE INFECTIONS",2,2
|
| 411 |
+
10021487,21928381,APR,721,"POST-OPERATIVE, POST-TRAUMATIC, OTHER DEVICE INFECTIONS",3,2
|
| 412 |
+
10018081,23983182,APR,721,"POST-OPERATIVE, POST-TRAUMATIC, OTHER DEVICE INFECTIONS",3,3
|
| 413 |
+
10035631,22732862,APR,721,"POST-OPERATIVE, POST-TRAUMATIC, OTHER DEVICE INFECTIONS",4,3
|
| 414 |
+
10018081,21027282,HCFA,853,INFECTIOUS & PARASITIC DISEASES W O.R. PROCEDURE W MCC,,
|
| 415 |
+
10015860,25085565,HCFA,853,INFECTIOUS & PARASITIC DISEASES W O.R. PROCEDURE W MCC,,
|
| 416 |
+
10015860,24698912,HCFA,853,INFECTIOUS & PARASITIC DISEASES W O.R. PROCEDURE W MCC,,
|
| 417 |
+
10014729,23300884,HCFA,856,POSTOPERATIVE OR POST-TRAUMATIC INFECTIONS W O.R. PROC W MCC,,
|
| 418 |
+
10040025,27996267,HCFA,856,POSTOPERATIVE OR POST-TRAUMATIC INFECTIONS W O.R. PROC W MCC,,
|
| 419 |
+
10021487,27112038,HCFA,862,POSTOPERATIVE & POST-TRAUMATIC INFECTIONS W MCC,,
|
| 420 |
+
10018081,23983182,HCFA,862,POSTOPERATIVE & POST-TRAUMATIC INFECTIONS W MCC,,
|
| 421 |
+
10021487,21928381,HCFA,862,POSTOPERATIVE & POST-TRAUMATIC INFECTIONS W MCC,,
|
| 422 |
+
10002428,23473524,HCFA,870,SEPTICEMIA OR SEVERE SEPSIS W MV 96+ HOURS,,
|
| 423 |
+
10037975,27617929,HCFA,870,SEPTICEMIA OR SEVERE SEPSIS W MV 96+ HOURS,,
|
| 424 |
+
10020944,29974575,HCFA,870,SEPTICEMIA OR SEVERE SEPSIS W MV 96+ HOURS,,
|
| 425 |
+
10039708,23819016,HCFA,871,SEPTICEMIA OR SEVERE SEPSIS W/O MV >96 HOURS W MCC,,
|
| 426 |
+
10004235,24181354,HCFA,871,SEPTICEMIA OR SEVERE SEPSIS W/O MV 96+ HOURS W MCC,,
|
| 427 |
+
10002428,28662225,HCFA,871,SEPTICEMIA OR SEVERE SEPSIS W/O MV 96+ HOURS W MCC,,
|
| 428 |
+
10019003,29279905,HCFA,871,SEPTICEMIA OR SEVERE SEPSIS W/O MV >96 HOURS W MCC,,
|
| 429 |
+
10009049,22995465,HCFA,871,SEPTICEMIA OR SEVERE SEPSIS W/O MV 96+ HOURS W MCC,,
|
| 430 |
+
10020786,23488445,HCFA,871,SEPTICEMIA OR SEVERE SEPSIS W/O MV >96 HOURS W MCC,,
|
| 431 |
+
10020740,23831430,HCFA,871,SEPTICEMIA OR SEVERE SEPSIS W/O MV 96+ HOURS W MCC,,
|
| 432 |
+
10026354,24547356,APR,912,MUSCULOSKELETAL & OTHER PROCEDURES FOR MULTIPLE SIGNIFICANT TRAUMA,2,1
|
| 433 |
+
10008454,20291550,APR,912,MUSCULOSKELETAL & OTHER PROCEDURES FOR MULTIPLE SIGNIFICANT TRAUMA,4,4
|
| 434 |
+
10010867,22429197,APR,912,MUSCULOSKELETAL & OTHER PROCEDURES FOR MULTIPLE SIGNIFICANT TRAUMA,4,4
|
| 435 |
+
10031757,28477280,APR,950,EXTENSIVE PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS,2,2
|
| 436 |
+
10004720,22081550,APR,950,EXTENSIVE PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS,4,4
|
| 437 |
+
10001725,25563031,APR,951,MODERATELY EXTENSIVE PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS,2,1
|
| 438 |
+
10022041,28909879,APR,951,MODERATELY EXTENSIVE PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS,2,1
|
| 439 |
+
10006580,24159665,APR,951,MODERATELY EXTENSIVE PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS,1,1
|
| 440 |
+
10040025,27259207,APR,951,MODERATELY EXTENSIVE PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS,3,2
|
| 441 |
+
10038933,25129047,APR,951,MODERATELY EXTENSIVE PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS,4,3
|
| 442 |
+
10039708,28258130,APR,951,MODERATELY EXTENSIVE PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS,4,4
|
| 443 |
+
10020306,23052851,APR,951,MODERATELY EXTENSIVE PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS,4,4
|
| 444 |
+
10019172,21540783,APR,952,NONEXTENSIVE PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS,2,1
|
| 445 |
+
10023239,21759936,APR,952,NONEXTENSIVE PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS,4,3
|
| 446 |
+
10021487,28998349,HCFA,957,OTHER O.R. PROCEDURES FOR MULTIPLE SIGNIFICANT TRAUMA W MCC,,
|
| 447 |
+
10010867,22429197,HCFA,957,OTHER O.R. PROCEDURES FOR MULTIPLE SIGNIFICANT TRAUMA W MCC,,
|
| 448 |
+
10038933,25129047,HCFA,981,EXTENSIVE O.R. PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS W MCC,,
|
| 449 |
+
10031757,28477280,HCFA,981,EXTENSIVE O.R. PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS W MCC,,
|
| 450 |
+
10022041,28909879,HCFA,981,EXTENSIVE O.R. PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS W MCC,,
|
| 451 |
+
10040025,27259207,HCFA,982,EXTENSIVE O.R. PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS W CC,,
|
| 452 |
+
10001725,25563031,HCFA,982,EXTENSIVE O.R. PROCEDURE UNRELATED TO PRINCIPAL DIAGNOSIS W CC,,
|
| 453 |
+
10023239,21759936,HCFA,987,NON-EXTENSIVE O.R. PROC UNRELATED TO PRINCIPAL DIAGNOSIS W MCC,,
|
| 454 |
+
10019003,26529390,HCFA,987,NON-EXTENSIVE O.R. PROC UNRELATED TO PRINCIPAL DIAGNOSIS W MCC,,
|
| 455 |
+
10003400,23559586,HCFA,987,NON-EXTENSIVE O.R. PROC UNRELATED TO PRINCIPAL DIAGNOSIS W MCC,,
|
data/mimic-iv-clinical-database-demo/hosp/emar.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/mimic-iv-clinical-database-demo/hosp/emar_detail.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/mimic-iv-clinical-database-demo/hosp/hcpcsevents.csv
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
subject_id,hadm_id,chartdate,hcpcs_cd,seq_num,short_description
|
| 2 |
+
10005348,29176490,2129-05-22,93454,1,Cardiovascular
|
| 3 |
+
10005348,29176490,2129-05-22,92921,2,Cardiovascular
|
| 4 |
+
10004457,21039249,2140-09-17,92980,1,Cardiovascular
|
| 5 |
+
10004457,25559382,2148-09-14,93455,1,Cardiovascular
|
| 6 |
+
10039708,27504040,2142-07-06,64415,2,Nervous system
|
| 7 |
+
10039708,27504040,2142-07-06,64415,1,Nervous system
|
| 8 |
+
10020740,29820177,2150-07-10,43276,3,Digestive system
|
| 9 |
+
10020740,29820177,2150-07-09,43237,1,Digestive system
|
| 10 |
+
10020740,29820177,2150-07-10,43264,4,Digestive system
|
| 11 |
+
10012853,26739864,2177-02-11,60220,1,Endocrine system
|
| 12 |
+
10012853,20457729,2177-11-03,60220,1,Endocrine system
|
| 13 |
+
10035631,29654498,2113-07-17,19301,1,Integumentary system
|
| 14 |
+
10020306,28778757,2129-10-29,19303,1,Integumentary system
|
| 15 |
+
10039708,27504040,2142-07-06,36830,4,Cardiovascular system
|
| 16 |
+
10040025,27125816,2143-03-18,36252,1,Cardiovascular system
|
| 17 |
+
10002428,28676446,2157-07-16,27235,1,Musculoskeletal system
|
| 18 |
+
10035631,29654498,2113-07-17,38500,2,Hemic and lymphatic systems
|
| 19 |
+
10020306,28778757,2129-10-29,38500,2,Hemic and lymphatic systems
|
| 20 |
+
10005348,29176490,2129-05-22,G0378,4,Hospital observation per hr
|
| 21 |
+
10024043,25561728,2117-02-04,G0378,1,Hospital observation per hr
|
| 22 |
+
10014354,26173805,2149-09-17,G0378,1,Hospital observation per hr
|
| 23 |
+
10014354,24096336,2149-06-19,G0378,1,Hospital observation per hr
|
| 24 |
+
10014354,20900955,2149-03-04,G0378,1,Hospital observation per hr
|
| 25 |
+
10014354,22502504,2147-09-12,G0378,1,Hospital observation per hr
|
| 26 |
+
10014354,27494880,2147-06-04,G0378,1,Hospital observation per hr
|
| 27 |
+
10014354,26722126,2146-11-09,G0378,1,Hospital observation per hr
|
| 28 |
+
10026406,25166559,2133-03-01,G0378,1,Hospital observation per hr
|
| 29 |
+
10037928,28543425,2175-10-26,G0378,1,Hospital observation per hr
|
| 30 |
+
10037928,22228639,2183-08-04,G0378,1,Hospital observation per hr
|
| 31 |
+
10012853,26739864,2177-02-11,G0378,2,Hospital observation per hr
|
| 32 |
+
10012853,22896692,2176-08-11,G0378,1,Hospital observation per hr
|
| 33 |
+
10039997,21390688,2135-11-07,G0378,1,Hospital observation per hr
|
| 34 |
+
10020306,28778757,2129-10-29,G0378,3,Hospital observation per hr
|
| 35 |
+
10020306,26332470,2133-05-05,G0378,1,Hospital observation per hr
|
| 36 |
+
10004457,25559382,2148-09-14,G0378,3,Hospital observation per hr
|
| 37 |
+
10004457,21039249,2140-09-17,G0378,2,Hospital observation per hr
|
| 38 |
+
10002930,22380825,2193-08-05,G0378,1,Hospital observation per hr
|
| 39 |
+
10002930,20846853,2201-02-12,G0378,1,Hospital observation per hr
|
| 40 |
+
10002930,28697806,2200-06-05,G0378,1,Hospital observation per hr
|
| 41 |
+
10002930,28477649,2197-04-07,G0378,1,Hospital observation per hr
|
| 42 |
+
10002930,25282382,2197-04-17,G0378,1,Hospital observation per hr
|
| 43 |
+
10002930,23720373,2199-02-17,G0378,1,Hospital observation per hr
|
| 44 |
+
10002930,20282368,2201-03-23,G0378,1,Hospital observation per hr
|
| 45 |
+
10007795,27962747,2136-07-24,G0378,1,Hospital observation per hr
|
| 46 |
+
10002428,25797028,2155-07-14,G0378,1,Hospital observation per hr
|
| 47 |
+
10002428,26549334,2160-07-15,G0378,1,Hospital observation per hr
|
| 48 |
+
10002428,28676446,2157-07-16,G0378,2,Hospital observation per hr
|
| 49 |
+
10005348,29176490,2129-05-22,C9600,3,Perc drug-el cor stent sing
|
| 50 |
+
10004457,25559382,2148-09-14,C9600,2,Perc drug-el cor stent sing
|
| 51 |
+
10023239,28984460,2140-10-22,99219,1,Hospital observation services
|
| 52 |
+
10015860,27670224,2187-12-14,99219,1,Hospital observation services
|
| 53 |
+
10015860,22416954,2193-05-03,99219,1,Hospital observation services
|
| 54 |
+
10015860,22607171,2190-05-15,99219,1,Hospital observation services
|
| 55 |
+
10020740,23199774,2150-09-15,99219,1,Hospital observation services
|
| 56 |
+
10020740,23143086,2151-01-15,99219,1,Hospital observation services
|
| 57 |
+
10020740,29820177,2150-07-09,99219,2,Hospital observation services
|
| 58 |
+
10039708,27504040,2142-07-06,99219,3,Hospital observation services
|
| 59 |
+
10039708,22999601,2142-05-15,99219,1,Hospital observation services
|
| 60 |
+
10035631,29654498,2113-07-17,99218,3,Hospital observation services
|
| 61 |
+
10012853,20457729,2177-11-03,99219,2,Hospital observation services
|
| 62 |
+
10040025,27125816,2143-03-18,99218,2,Hospital observation services
|
data/mimic-iv-clinical-database-demo/hosp/labevents.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f3feb488a9b7c6039e47a30d4f0ff9cd869fedf0e02df6c250d7405c0db1a8d9
|
| 3 |
+
size 12265209
|
data/mimic-iv-clinical-database-demo/hosp/microbiologyevents.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/mimic-iv-clinical-database-demo/hosp/omr.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/mimic-iv-clinical-database-demo/hosp/patients.csv
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
subject_id,gender,anchor_age,anchor_year,anchor_year_group,dod
|
| 2 |
+
10014729,F,21,2125,2011 - 2013,
|
| 3 |
+
10003400,F,72,2134,2011 - 2013,2137-09-02
|
| 4 |
+
10002428,F,80,2155,2011 - 2013,
|
| 5 |
+
10032725,F,38,2143,2011 - 2013,2143-03-30
|
| 6 |
+
10027445,F,48,2142,2011 - 2013,2146-02-09
|
| 7 |
+
10037928,F,78,2175,2011 - 2013,
|
| 8 |
+
10001725,F,46,2110,2011 - 2013,
|
| 9 |
+
10040025,F,64,2143,2011 - 2013,2148-02-07
|
| 10 |
+
10008454,F,26,2110,2011 - 2013,
|
| 11 |
+
10020640,F,91,2153,2011 - 2013,2154-02-04
|
| 12 |
+
10014078,F,60,2166,2011 - 2013,
|
| 13 |
+
10007795,F,53,2136,2011 - 2013,
|
| 14 |
+
10001217,F,55,2157,2011 - 2013,
|
| 15 |
+
10019172,F,63,2118,2011 - 2013,
|
| 16 |
+
10039831,F,57,2115,2011 - 2013,
|
| 17 |
+
10007928,F,59,2129,2011 - 2013,
|
| 18 |
+
10019003,F,65,2148,2011 - 2013,2155-12-03
|
| 19 |
+
10002930,F,48,2193,2011 - 2013,2201-12-24
|
| 20 |
+
10010471,F,89,2155,2014 - 2016,2155-12-07
|
| 21 |
+
10027602,F,71,2201,2014 - 2016,
|
| 22 |
+
10031757,F,67,2137,2014 - 2016,2137-10-31
|
| 23 |
+
10016742,F,58,2178,2014 - 2016,
|
| 24 |
+
10039997,F,67,2134,2014 - 2016,
|
| 25 |
+
10012853,F,91,2175,2014 - 2016,
|
| 26 |
+
10000032,F,52,2180,2014 - 2016,2180-09-09
|
| 27 |
+
10031404,F,82,2113,2014 - 2016,
|
| 28 |
+
10029291,F,50,2123,2014 - 2016,
|
| 29 |
+
10005909,F,40,2144,2014 - 2016,
|
| 30 |
+
10039708,F,46,2138,2014 - 2016,
|
| 31 |
+
10019568,F,59,2120,2014 - 2016,
|
| 32 |
+
10020187,F,63,2169,2014 - 2016,
|
| 33 |
+
10016810,F,66,2185,2014 - 2016,
|
| 34 |
+
10038081,F,63,2115,2014 - 2016,2115-10-12
|
| 35 |
+
10021312,F,55,2113,2014 - 2016,
|
| 36 |
+
10006580,F,63,2137,2014 - 2016,
|
| 37 |
+
10010867,F,28,2147,2014 - 2016,
|
| 38 |
+
10020786,F,86,2189,2014 - 2016,
|
| 39 |
+
10020306,F,74,2129,2014 - 2016,
|
| 40 |
+
10023239,F,29,2137,2014 - 2016,
|
| 41 |
+
10018328,F,83,2154,2014 - 2016,
|
| 42 |
+
10008287,F,43,2145,2014 - 2016,
|
| 43 |
+
10036156,F,88,2157,2014 - 2016,
|
| 44 |
+
10015272,F,78,2137,2014 - 2016,
|
| 45 |
+
10022281,M,84,2125,2011 - 2013,
|
| 46 |
+
10035631,M,63,2112,2011 - 2013,2116-03-12
|
| 47 |
+
10024043,M,67,2117,2011 - 2013,2117-06-26
|
| 48 |
+
10025612,M,82,2125,2011 - 2013,
|
| 49 |
+
10003046,M,64,2154,2011 - 2013,
|
| 50 |
+
10021666,M,87,2172,2011 - 2013,2172-04-19
|
| 51 |
+
10018423,M,37,2162,2011 - 2013,
|
| 52 |
+
10025463,M,66,2136,2011 - 2013,2137-10-09
|
| 53 |
+
10017492,M,84,2114,2011 - 2013,2116-07-05
|
| 54 |
+
10004422,M,78,2111,2011 - 2013,
|
| 55 |
+
10011398,M,67,2146,2011 - 2013,
|
| 56 |
+
10021938,M,65,2181,2011 - 2013,2182-10-16
|
| 57 |
+
10009628,M,58,2153,2011 - 2013,
|
| 58 |
+
10004457,M,65,2140,2011 - 2013,
|
| 59 |
+
10015860,M,53,2186,2011 - 2013,
|
| 60 |
+
10021487,M,43,2116,2011 - 2013,
|
| 61 |
+
10013049,M,52,2114,2011 - 2013,
|
| 62 |
+
10026255,M,66,2200,2011 - 2013,2201-07-13
|
| 63 |
+
10023771,M,70,2113,2011 - 2013,
|
| 64 |
+
10023117,M,53,2170,2011 - 2013,2175-07-20
|
| 65 |
+
10022041,M,64,2187,2011 - 2013,
|
| 66 |
+
10005348,M,76,2128,2011 - 2013,
|
| 67 |
+
10009035,M,28,2161,2011 - 2013,
|
| 68 |
+
10018081,M,79,2133,2011 - 2013,2134-10-28
|
| 69 |
+
10038933,M,34,2148,2011 - 2013,
|
| 70 |
+
10037975,M,60,2185,2014 - 2016,2185-01-22
|
| 71 |
+
10035185,M,70,2120,2014 - 2016,
|
| 72 |
+
10014354,M,60,2146,2014 - 2016,
|
| 73 |
+
10022880,M,66,2177,2014 - 2016,
|
| 74 |
+
10004720,M,61,2183,2014 - 2016,2186-11-17
|
| 75 |
+
10019385,M,44,2180,2014 - 2016,
|
| 76 |
+
10029484,M,64,2160,2014 - 2016,
|
| 77 |
+
10037861,M,77,2115,2014 - 2016,2117-03-24
|
| 78 |
+
10026406,M,45,2129,2014 - 2016,
|
| 79 |
+
10007818,M,69,2146,2014 - 2016,2146-07-12
|
| 80 |
+
10020740,M,56,2150,2014 - 2016,
|
| 81 |
+
10038999,M,45,2131,2014 - 2016,
|
| 82 |
+
10004235,M,47,2196,2014 - 2016,
|
| 83 |
+
10022017,M,59,2189,2014 - 2016,
|
| 84 |
+
10002495,M,81,2141,2014 - 2016,
|
| 85 |
+
10018845,M,91,2184,2014 - 2016,2184-11-22
|
| 86 |
+
10020944,M,72,2131,2014 - 2016,2131-04-28
|
| 87 |
+
10016150,M,69,2142,2014 - 2016,
|
| 88 |
+
10005866,M,57,2146,2014 - 2016,2149-11-21
|
| 89 |
+
10026354,M,34,2119,2014 - 2016,
|
| 90 |
+
10019917,M,44,2182,2014 - 2016,
|
| 91 |
+
10019777,M,51,2187,2014 - 2016,2187-04-29
|
| 92 |
+
10005817,M,66,2132,2014 - 2016,2135-01-19
|
| 93 |
+
10009049,M,56,2174,2014 - 2016,
|
| 94 |
+
10015931,M,87,2176,2014 - 2016,2177-03-29
|
| 95 |
+
10006053,M,52,2111,2014 - 2016,2111-11-15
|
| 96 |
+
10012552,M,78,2140,2014 - 2016,
|
| 97 |
+
10004733,M,51,2174,2014 - 2016,
|
| 98 |
+
10021118,M,62,2161,2014 - 2016,
|
| 99 |
+
10018501,M,83,2141,2014 - 2016,
|
| 100 |
+
10007058,M,48,2167,2014 - 2016,
|
| 101 |
+
10038992,M,70,2185,2014 - 2016,
|
data/mimic-iv-clinical-database-demo/hosp/pharmacy.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/mimic-iv-clinical-database-demo/hosp/poe.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/mimic-iv-clinical-database-demo/hosp/poe_detail.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/mimic-iv-clinical-database-demo/hosp/prescriptions.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/mimic-iv-clinical-database-demo/hosp/procedures_icd.csv
ADDED
|
@@ -0,0 +1,723 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
subject_id,hadm_id,seq_num,chartdate,icd_code,icd_version
|
| 2 |
+
10011398,27505812,3,2146-12-15,3961,9
|
| 3 |
+
10011398,27505812,2,2146-12-15,3615,9
|
| 4 |
+
10011398,27505812,1,2146-12-15,3614,9
|
| 5 |
+
10014729,23300884,4,2125-03-23,3897,9
|
| 6 |
+
10014729,23300884,1,2125-03-20,3403,9
|
| 7 |
+
10014729,23300884,3,2125-03-20,3404,9
|
| 8 |
+
10014729,23300884,2,2125-03-24,3452,9
|
| 9 |
+
10014729,28889419,1,2125-02-27,3845,9
|
| 10 |
+
10014729,28889419,4,2125-02-28,0390,9
|
| 11 |
+
10014729,28889419,5,2125-02-28,0391,9
|
| 12 |
+
10014729,28889419,3,2125-02-27,3961,9
|
| 13 |
+
10014729,28889419,2,2125-02-27,3959,9
|
| 14 |
+
10014729,28889419,6,2125-03-03,8605,9
|
| 15 |
+
10007818,22987108,15,2146-06-20,02H633Z,10
|
| 16 |
+
10007818,22987108,13,2146-06-22,0BH17EZ,10
|
| 17 |
+
10007818,22987108,17,2146-06-21,B211YZZ,10
|
| 18 |
+
10007818,22987108,11,2146-06-11,3E0G76Z,10
|
| 19 |
+
10007818,22987108,6,2146-06-29,0BCH8ZZ,10
|
| 20 |
+
10007818,22987108,18,2146-06-22,02HV33Z,10
|
| 21 |
+
10007818,22987108,12,2146-07-07,3E0436Z,10
|
| 22 |
+
10007818,22987108,7,2146-07-07,0BCJ8ZZ,10
|
| 23 |
+
10007818,22987108,4,2146-06-23,03LP3DZ,10
|
| 24 |
+
10007818,22987108,19,2146-06-22,B518YZA,10
|
| 25 |
+
10007818,22987108,23,2146-06-29,0BC78ZZ,10
|
| 26 |
+
10007818,22987108,3,2146-06-22,04LK3DZ,10
|
| 27 |
+
10007818,22987108,2,2146-06-19,0W9G3ZX,10
|
| 28 |
+
10007818,22987108,14,2146-06-13,0W9G3ZZ,10
|
| 29 |
+
10007818,22987108,22,2146-07-03,0B968ZX,10
|
| 30 |
+
10007818,22987108,16,2146-06-20,B214YZZ,10
|
| 31 |
+
10007818,22987108,8,2146-07-09,0BCJ8ZZ,10
|
| 32 |
+
10007818,22987108,20,2146-06-21,5A1D60Z,10
|
| 33 |
+
10007818,22987108,1,2146-06-11,0W9G3ZZ,10
|
| 34 |
+
10007818,22987108,5,2146-06-29,0BCJ8ZZ,10
|
| 35 |
+
10007818,22987108,9,2146-07-02,0W9G3ZX,10
|
| 36 |
+
10007818,22987108,10,2146-06-22,5A1955Z,10
|
| 37 |
+
10007818,22987108,21,2146-07-10,0BC78ZZ,10
|
| 38 |
+
10004235,25970245,5,2196-06-14,4029,9
|
| 39 |
+
10004235,25970245,6,2196-06-14,1742,9
|
| 40 |
+
10004235,25970245,1,2196-06-14,5123,9
|
| 41 |
+
10004235,25970245,2,2196-06-14,5022,9
|
| 42 |
+
10004235,25970245,4,2196-06-14,5137,9
|
| 43 |
+
10004235,25970245,3,2196-06-14,5169,9
|
| 44 |
+
10004235,24181354,4,2196-02-24,3891,9
|
| 45 |
+
10004235,24181354,5,2196-02-26,5187,9
|
| 46 |
+
10004235,24181354,1,2196-02-24,9671,9
|
| 47 |
+
10004235,24181354,3,2196-02-25,3897,9
|
| 48 |
+
10004235,24181354,2,2196-02-26,3995,9
|
| 49 |
+
10026255,20437651,1,2200-09-17,3409,9
|
| 50 |
+
10007058,22954658,1,2167-11-08,02C03ZZ,10
|
| 51 |
+
10007058,22954658,2,2167-11-08,B211YZZ,10
|
| 52 |
+
10039831,26924951,2,2115-12-28,3956,9
|
| 53 |
+
10039831,26924951,1,2115-12-28,403,9
|
| 54 |
+
10018328,23786647,2,2154-04-24,03VL3DZ,10
|
| 55 |
+
10018328,23786647,1,2154-04-24,03VG3DZ,10
|
| 56 |
+
10009628,25926192,2,2153-09-19,3615,9
|
| 57 |
+
10009628,25926192,3,2153-09-19,3961,9
|
| 58 |
+
10009628,25926192,1,2153-09-19,3614,9
|
| 59 |
+
10018845,21101111,1,2184-10-08,0124,9
|
| 60 |
+
10018081,23983182,1,2134-08-18,5491,9
|
| 61 |
+
10018081,23983182,2,2134-08-18,9915,9
|
| 62 |
+
10018081,25973915,1,2134-09-07,9915,9
|
| 63 |
+
10018081,28861356,3,2134-08-05,3891,9
|
| 64 |
+
10018081,28861356,1,2134-08-02,4651,9
|
| 65 |
+
10018081,28861356,4,2134-08-09,8628,9
|
| 66 |
+
10018081,28861356,2,2134-08-05,4513,9
|
| 67 |
+
10018081,28861356,6,2134-08-12,9357,9
|
| 68 |
+
10018081,28861356,5,2134-08-10,3897,9
|
| 69 |
+
10018081,21027282,6,2133-12-23,966,9
|
| 70 |
+
10018081,21027282,3,2133-12-20,4620,9
|
| 71 |
+
10018081,21027282,2,2133-12-20,5359,9
|
| 72 |
+
10018081,21027282,4,2133-12-20,9672,9
|
| 73 |
+
10018081,21027282,5,2134-01-09,4311,9
|
| 74 |
+
10018081,21027282,1,2133-12-18,4573,9
|
| 75 |
+
10021666,22756440,2,2172-03-23,9608,9
|
| 76 |
+
10021666,22756440,1,2172-03-15,966,9
|
| 77 |
+
10006053,22942076,3,2111-11-15,3893,9
|
| 78 |
+
10006053,22942076,1,2111-11-15,5491,9
|
| 79 |
+
10006053,22942076,2,2111-11-15,391,9
|
| 80 |
+
10016810,20973395,2,2185-06-16,4572,9
|
| 81 |
+
10016810,20973395,1,2185-06-16,4709,9
|
| 82 |
+
10031404,21606243,1,2113-08-04,0W9D3ZZ,10
|
| 83 |
+
10021938,27154822,1,2181-10-25,3995,9
|
| 84 |
+
10021938,23112364,1,2181-10-13,3995,9
|
| 85 |
+
10006580,24159665,1,2137-08-11,3989,9
|
| 86 |
+
10006580,24159665,2,2137-08-11,3981,9
|
| 87 |
+
10005817,28661809,6,2135-01-09,0B9B8ZX,10
|
| 88 |
+
10005817,28661809,3,2135-01-06,0BH17EZ,10
|
| 89 |
+
10005817,28661809,1,2135-01-04,0W9930Z,10
|
| 90 |
+
10005817,28661809,4,2135-01-07,DW021ZZ,10
|
| 91 |
+
10005817,28661809,2,2135-01-06,5A1955Z,10
|
| 92 |
+
10005817,28661809,5,2135-01-08,02HV33Z,10
|
| 93 |
+
10005817,20626031,3,2132-12-15,3961,9
|
| 94 |
+
10005817,20626031,2,2132-12-15,3615,9
|
| 95 |
+
10005817,20626031,1,2132-12-15,3612,9
|
| 96 |
+
10019385,20297618,2,2180-02-21,5A1221Z,10
|
| 97 |
+
10019385,20297618,1,2180-02-21,02100Z9,10
|
| 98 |
+
10001725,25563031,3,2110-04-11,7094,9
|
| 99 |
+
10001725,25563031,2,2110-04-11,7055,9
|
| 100 |
+
10001725,25563031,1,2110-04-11,8696,9
|
| 101 |
+
10002495,24982426,3,2141-05-22,4A023N7,10
|
| 102 |
+
10002495,24982426,1,2141-05-22,027034Z,10
|
| 103 |
+
10002495,24982426,2,2141-05-23,5A02210,10
|
| 104 |
+
10002495,24982426,5,2141-05-23,4A023N6,10
|
| 105 |
+
10002495,24982426,7,2141-05-23,3E1K78Z,10
|
| 106 |
+
10002495,24982426,6,2141-05-23,B211YZZ,10
|
| 107 |
+
10002495,24982426,4,2141-05-22,B211YZZ,10
|
| 108 |
+
10038081,20755971,9,2115-10-09,2101,9
|
| 109 |
+
10038081,20755971,1,2115-09-30,5491,9
|
| 110 |
+
10038081,20755971,2,2115-10-09,9671,9
|
| 111 |
+
10038081,20755971,6,2115-10-05,3893,9
|
| 112 |
+
10038081,20755971,8,2115-10-09,3142,9
|
| 113 |
+
10038081,20755971,4,2115-10-03,5491,9
|
| 114 |
+
10038081,20755971,5,2115-10-02,4513,9
|
| 115 |
+
10038081,20755971,3,2115-10-09,9604,9
|
| 116 |
+
10038081,20755971,7,2115-10-09,2121,9
|
| 117 |
+
10001217,24597018,2,2157-11-19,0331,9
|
| 118 |
+
10001217,24597018,1,2157-11-20,0139,9
|
| 119 |
+
10001217,24597018,3,2157-11-22,3897,9
|
| 120 |
+
10001217,27703517,1,2157-12-19,0139,9
|
| 121 |
+
10023239,21759936,1,2140-10-04,0B9D8ZX,10
|
| 122 |
+
10023239,21759936,3,2140-10-04,0BBD8ZX,10
|
| 123 |
+
10023239,21759936,2,2140-10-04,07B74ZX,10
|
| 124 |
+
10019917,22585261,1,2182-01-09,4516,9
|
| 125 |
+
10019917,22585261,2,2182-01-09,4523,9
|
| 126 |
+
10020944,29974575,4,2131-02-27,3323,9
|
| 127 |
+
10020944,29974575,2,2131-02-27,9604,9
|
| 128 |
+
10020944,29974575,5,2131-03-03,3891,9
|
| 129 |
+
10020944,29974575,3,2131-02-27,3893,9
|
| 130 |
+
10020944,29974575,1,2131-02-27,9672,9
|
| 131 |
+
10027602,21477991,4,2201-12-12,966,9
|
| 132 |
+
10027602,21477991,1,2201-12-11,0159,9
|
| 133 |
+
10027602,21477991,2,2201-12-11,8841,9
|
| 134 |
+
10027602,21477991,3,2201-12-11,9359,9
|
| 135 |
+
10027602,28166872,5,2201-11-08,3972,9
|
| 136 |
+
10027602,28166872,2,2201-10-30,0221,9
|
| 137 |
+
10027602,28166872,8,2201-11-07,9671,9
|
| 138 |
+
10027602,28166872,10,2201-11-04,8841,9
|
| 139 |
+
10027602,28166872,3,2201-11-16,4311,9
|
| 140 |
+
10027602,28166872,9,2201-11-03,8841,9
|
| 141 |
+
10027602,28166872,1,2201-11-04,3972,9
|
| 142 |
+
10027602,28166872,6,2201-11-06,0221,9
|
| 143 |
+
10027602,28166872,13,2201-11-07,9604,9
|
| 144 |
+
10027602,28166872,4,2201-10-30,9672,9
|
| 145 |
+
10027602,28166872,11,2201-11-08,8841,9
|
| 146 |
+
10027602,28166872,7,2201-11-01,966,9
|
| 147 |
+
10027602,28166872,12,2201-11-08,3324,9
|
| 148 |
+
10032725,20611640,2,2143-03-22,9604,9
|
| 149 |
+
10032725,20611640,3,2143-03-23,3893,9
|
| 150 |
+
10032725,20611640,1,2143-03-22,9671,9
|
| 151 |
+
10032725,25177949,1,2143-03-03,7855,9
|
| 152 |
+
10032725,25177949,2,2143-02-22,7745,9
|
| 153 |
+
10032725,25177949,4,2143-03-05,9925,9
|
| 154 |
+
10032725,25177949,3,2143-03-09,9229,9
|
| 155 |
+
10020187,26842957,1,2170-02-24,03VG3DZ,10
|
| 156 |
+
10020187,24104168,1,2169-01-20,03VG3DZ,10
|
| 157 |
+
10023771,20044587,3,2113-08-25,3961,9
|
| 158 |
+
10023771,20044587,2,2113-08-25,3613,9
|
| 159 |
+
10023771,20044587,1,2113-08-25,3615,9
|
| 160 |
+
10005348,29496232,1,2128-09-05,3241,9
|
| 161 |
+
10005348,29496232,2,2128-09-05,403,9
|
| 162 |
+
10005348,29176490,4,2129-05-22,8856,9
|
| 163 |
+
10005348,29176490,5,2129-05-22,0041,9
|
| 164 |
+
10005348,29176490,2,2129-05-22,3607,9
|
| 165 |
+
10005348,29176490,1,2129-05-22,0066,9
|
| 166 |
+
10005348,29176490,3,2129-05-22,0045,9
|
| 167 |
+
10005348,25239799,6,2130-10-27,3893,9
|
| 168 |
+
10005348,25239799,2,2130-10-26,3722,9
|
| 169 |
+
10005348,25239799,5,2130-10-27,3961,9
|
| 170 |
+
10005348,25239799,4,2130-10-26,8856,9
|
| 171 |
+
10005348,25239799,1,2130-10-27,3521,9
|
| 172 |
+
10005348,25239799,3,2130-10-27,3611,9
|
| 173 |
+
10019172,21540783,1,2118-10-09,244,9
|
| 174 |
+
10019172,21540783,2,2118-10-09,2309,9
|
| 175 |
+
10019172,24997044,2,2118-11-16,3961,9
|
| 176 |
+
10019172,24997044,1,2118-11-16,3522,9
|
| 177 |
+
10037861,24256866,1,2115-10-14,3721,9
|
| 178 |
+
10037861,24540843,6,2117-03-16,3E0G76Z,10
|
| 179 |
+
10037861,24540843,3,2117-03-14,5A1955Z,10
|
| 180 |
+
10037861,24540843,5,2117-03-18,02HV33Z,10
|
| 181 |
+
10037861,24540843,8,2117-03-20,0B938ZX,10
|
| 182 |
+
10037861,24540843,4,2117-03-14,00U20KZ,10
|
| 183 |
+
10037861,24540843,7,2117-03-20,0B978ZX,10
|
| 184 |
+
10037861,24540843,1,2117-03-14,00C40ZZ,10
|
| 185 |
+
10037861,24540843,2,2117-03-14,009600Z,10
|
| 186 |
+
10003046,26048429,2,2154-01-03,4639,9
|
| 187 |
+
10003046,26048429,1,2154-01-02,4242,9
|
| 188 |
+
10003046,26048429,3,2154-01-03,966,9
|
| 189 |
+
10010471,21322534,1,2155-05-09,5A1D60Z,10
|
| 190 |
+
10010471,29842315,1,2155-12-05,4A023N6,10
|
| 191 |
+
10010471,29842315,2,2155-12-05,B211YZZ,10
|
| 192 |
+
10005866,27167814,4,2148-03-16,0W9G3ZZ,10
|
| 193 |
+
10005866,27167814,2,2148-03-15,0W3F0ZZ,10
|
| 194 |
+
10005866,27167814,6,2148-03-10,0BH17EZ,10
|
| 195 |
+
10005866,27167814,5,2148-03-10,5A1935Z,10
|
| 196 |
+
10005866,27167814,1,2148-03-10,0DN80ZZ,10
|
| 197 |
+
10005866,27167814,3,2148-03-16,0W9G3ZX,10
|
| 198 |
+
10005866,22589518,1,2149-02-13,0W9G3ZX,10
|
| 199 |
+
10005866,26158160,1,2146-06-06,5349,9
|
| 200 |
+
10005866,20364112,3,2149-10-16,0D963ZX,10
|
| 201 |
+
10005866,20364112,1,2149-10-01,0WJP0ZZ,10
|
| 202 |
+
10005866,20364112,6,2149-10-16,0DH98UZ,10
|
| 203 |
+
10005866,20364112,5,2149-10-03,02HV33Z,10
|
| 204 |
+
10005866,20364112,8,2149-10-16,3E0G76Z,10
|
| 205 |
+
10005866,20364112,7,2149-10-01,0DJ08ZZ,10
|
| 206 |
+
10005866,20364112,2,2149-10-16,0D9630Z,10
|
| 207 |
+
10005866,20364112,4,2149-10-02,3E0336Z,10
|
| 208 |
+
10005866,21636229,1,2149-09-20,0W9G3ZX,10
|
| 209 |
+
10005866,26134779,1,2149-09-17,0W9G3ZZ,10
|
| 210 |
+
10021487,27112038,1,2117-10-26,5491,9
|
| 211 |
+
10021487,20429160,4,2117-07-21,3897,9
|
| 212 |
+
10021487,20429160,3,2117-07-16,5459,9
|
| 213 |
+
10021487,20429160,2,2117-07-16,4573,9
|
| 214 |
+
10021487,20429160,1,2117-07-16,5029,9
|
| 215 |
+
10021487,21928381,1,2117-12-03,5491,9
|
| 216 |
+
10021487,26321862,3,2117-01-29,9729,9
|
| 217 |
+
10021487,26321862,4,2117-02-05,9729,9
|
| 218 |
+
10021487,26321862,1,2117-01-29,5091,9
|
| 219 |
+
10021487,26321862,2,2117-02-05,5091,9
|
| 220 |
+
10021487,28998349,6,2116-12-03,5425,9
|
| 221 |
+
10021487,28998349,9,2116-12-11,5491,9
|
| 222 |
+
10021487,28998349,4,2116-12-03,5412,9
|
| 223 |
+
10021487,28998349,10,2116-12-11,8876,9
|
| 224 |
+
10021487,28998349,1,2116-12-03,5419,9
|
| 225 |
+
10021487,28998349,8,2116-12-03,9672,9
|
| 226 |
+
10021487,28998349,2,2116-12-03,5029,9
|
| 227 |
+
10021487,28998349,5,2116-12-03,5475,9
|
| 228 |
+
10021487,28998349,7,2116-12-03,9604,9
|
| 229 |
+
10021487,28998349,11,2116-12-03,3893,9
|
| 230 |
+
10021487,28998349,15,2116-12-12,966,9
|
| 231 |
+
10021487,28998349,13,2116-12-07,3891,9
|
| 232 |
+
10021487,28998349,14,2116-12-09,3324,9
|
| 233 |
+
10021487,28998349,12,2116-12-27,3491,9
|
| 234 |
+
10021487,28998349,3,2116-12-03,4573,9
|
| 235 |
+
10021487,27660781,4,2117-03-04,966,9
|
| 236 |
+
10021487,27660781,2,2117-03-04,5187,9
|
| 237 |
+
10021487,27660781,3,2117-03-04,5293,9
|
| 238 |
+
10021487,27660781,5,2117-03-12,5491,9
|
| 239 |
+
10021487,27660781,6,2117-03-08,9915,9
|
| 240 |
+
10021487,27660781,1,2117-03-04,5185,9
|
| 241 |
+
10021487,27660781,7,2117-03-08,3893,9
|
| 242 |
+
10026354,24547356,1,2119-10-27,0NST04Z,10
|
| 243 |
+
10026354,24547356,4,2119-10-27,0NSS35Z,10
|
| 244 |
+
10026354,24547356,3,2119-10-27,0NSV35Z,10
|
| 245 |
+
10026354,24547356,2,2119-10-26,03QY0ZZ,10
|
| 246 |
+
10015860,24698912,5,2192-05-16,5A1D70Z,10
|
| 247 |
+
10015860,24698912,2,2192-05-12,0JBQ0ZZ,10
|
| 248 |
+
10015860,24698912,3,2192-05-12,0QBN0ZZ,10
|
| 249 |
+
10015860,24698912,7,2192-05-16,02H633Z,10
|
| 250 |
+
10015860,24698912,1,2192-05-12,0Y6R0Z0,10
|
| 251 |
+
10015860,24698912,8,2192-05-18,0J2TXYZ,10
|
| 252 |
+
10015860,24698912,6,2192-05-16,0JH63XZ,10
|
| 253 |
+
10015860,24698912,4,2192-05-19,0QBN0ZZ,10
|
| 254 |
+
10015860,20790339,1,2189-05-23,8622,9
|
| 255 |
+
10015860,28613200,1,2188-03-31,7788,9
|
| 256 |
+
10015860,20854119,2,2188-08-09,7769,9
|
| 257 |
+
10015860,20854119,3,2188-08-05,8604,9
|
| 258 |
+
10015860,20854119,4,2188-08-12,3893,9
|
| 259 |
+
10015860,20854119,1,2188-08-07,7769,9
|
| 260 |
+
10015860,26352758,1,2192-09-24,0QH736Z,10
|
| 261 |
+
10015860,26352758,2,2192-09-25,5A1D70Z,10
|
| 262 |
+
10015860,25085565,1,2186-09-23,8669,9
|
| 263 |
+
10015860,25085565,2,2186-09-23,8344,9
|
| 264 |
+
10015860,25085565,6,2186-09-25,3897,9
|
| 265 |
+
10015860,25085565,4,2186-09-16,8604,9
|
| 266 |
+
10015860,25085565,5,2186-09-18,8604,9
|
| 267 |
+
10015860,25085565,3,2186-09-15,8604,9
|
| 268 |
+
10015860,28236161,1,2187-09-15,8622,9
|
| 269 |
+
10015860,25103777,2,2192-07-31,02PAX3Z,10
|
| 270 |
+
10015860,25103777,5,2192-08-05,5A1D70Z,10
|
| 271 |
+
10015860,25103777,1,2192-07-31,0JPTXXZ,10
|
| 272 |
+
10015860,25103777,3,2192-08-04,0JH63XZ,10
|
| 273 |
+
10015860,25103777,4,2192-08-04,02H633Z,10
|
| 274 |
+
10015860,22413744,1,2191-01-22,0S993ZX,10
|
| 275 |
+
10015860,28196804,3,2193-11-27,B51W1ZZ,10
|
| 276 |
+
10015860,28196804,2,2193-11-27,057F3ZZ,10
|
| 277 |
+
10015860,28196804,4,2193-11-24,5A1D70Z,10
|
| 278 |
+
10015860,28196804,1,2193-11-27,057A3ZZ,10
|
| 279 |
+
10018423,29366372,10,2167-05-05,3E080GC,10
|
| 280 |
+
10018423,29366372,8,2167-05-04,B2111ZZ,10
|
| 281 |
+
10018423,29366372,6,2167-05-05,03B14ZZ,10
|
| 282 |
+
10018423,29366372,1,2167-05-05,02100A9,10
|
| 283 |
+
10018423,29366372,7,2167-05-05,03B04ZZ,10
|
| 284 |
+
10018423,29366372,3,2167-05-05,021009W,10
|
| 285 |
+
10018423,29366372,2,2167-05-04,4A023N7,10
|
| 286 |
+
10018423,29366372,5,2167-05-05,06BP4ZZ,10
|
| 287 |
+
10018423,29366372,4,2167-05-05,02100A8,10
|
| 288 |
+
10018423,29366372,9,2167-05-05,5A1221Z,10
|
| 289 |
+
10007928,20338077,1,2129-04-06,4513,9
|
| 290 |
+
10013049,22675517,2,2114-06-20,3561,9
|
| 291 |
+
10013049,22675517,1,2114-06-20,3733,9
|
| 292 |
+
10013049,22675517,3,2114-06-20,3961,9
|
| 293 |
+
10014078,25809882,2,2166-08-22,0331,9
|
| 294 |
+
10014078,25809882,3,2166-08-22,3897,9
|
| 295 |
+
10014078,25809882,1,2166-08-21,9671,9
|
| 296 |
+
10014078,25809882,4,2166-08-22,3891,9
|
| 297 |
+
10022017,22342963,4,2189-09-10,5A1221Z,10
|
| 298 |
+
10022017,22342963,3,2189-09-10,06BQ4ZZ,10
|
| 299 |
+
10022017,22342963,2,2189-09-10,021209W,10
|
| 300 |
+
10022017,22342963,1,2189-09-10,02100Z9,10
|
| 301 |
+
10020740,29820177,3,2150-07-10,9705,9
|
| 302 |
+
10020740,29820177,2,2150-07-09,8874,9
|
| 303 |
+
10020740,29820177,1,2150-07-09,4513,9
|
| 304 |
+
10020740,29820177,4,2150-07-10,5188,9
|
| 305 |
+
10020740,25826145,3,2150-06-03,5343,9
|
| 306 |
+
10020740,25826145,2,2150-06-03,5451,9
|
| 307 |
+
10020740,25826145,1,2150-06-03,5124,9
|
| 308 |
+
10020740,23831430,8,2150-04-03,9427,9
|
| 309 |
+
10020740,23831430,15,2150-03-30,9604,9
|
| 310 |
+
10020740,23831430,2,2150-03-11,9915,9
|
| 311 |
+
10020740,23831430,3,2150-03-12,966,9
|
| 312 |
+
10020740,23831430,1,2150-03-11,9671,9
|
| 313 |
+
10020740,23831430,5,2150-03-19,9671,9
|
| 314 |
+
10020740,23831430,7,2150-04-01,9427,9
|
| 315 |
+
10020740,23831430,12,2150-04-20,9427,9
|
| 316 |
+
10020740,23831430,11,2150-04-17,9427,9
|
| 317 |
+
10020740,23831430,6,2150-03-27,9427,9
|
| 318 |
+
10020740,23831430,13,2150-04-24,9427,9
|
| 319 |
+
10020740,23831430,16,2150-03-30,9671,9
|
| 320 |
+
10020740,23831430,10,2150-04-14,9427,9
|
| 321 |
+
10020740,23831430,9,2150-04-06,9427,9
|
| 322 |
+
10020740,23831430,4,2150-03-19,9604,9
|
| 323 |
+
10020740,23831430,14,2150-03-26,3897,9
|
| 324 |
+
10008454,20291550,1,2110-11-30,7915,9
|
| 325 |
+
10012552,27089790,1,2140-03-25,3615,9
|
| 326 |
+
10012552,27089790,2,2140-03-25,3612,9
|
| 327 |
+
10012552,27089790,3,2140-03-25,3961,9
|
| 328 |
+
10022281,29642388,1,2125-06-17,3891,9
|
| 329 |
+
10025612,23403708,5,2125-09-25,3328,9
|
| 330 |
+
10025612,23403708,4,2125-09-25,4011,9
|
| 331 |
+
10025612,23403708,6,2125-09-25,4059,9
|
| 332 |
+
10025612,23403708,9,2125-09-25,3324,9
|
| 333 |
+
10025612,23403708,1,2125-09-27,3348,9
|
| 334 |
+
10025612,23403708,3,2125-09-25,3422,9
|
| 335 |
+
10025612,23403708,8,2125-09-27,3403,9
|
| 336 |
+
10025612,23403708,10,2125-09-25,0390,9
|
| 337 |
+
10025612,23403708,7,2125-09-25,3479,9
|
| 338 |
+
10025612,23403708,2,2125-09-25,3259,9
|
| 339 |
+
10031757,28477280,3,2137-10-12,8842,9
|
| 340 |
+
10031757,28477280,1,2137-10-12,3979,9
|
| 341 |
+
10031757,28477280,2,2137-10-12,8847,9
|
| 342 |
+
10031757,28477280,4,2137-10-24,3897,9
|
| 343 |
+
10014354,26486158,1,2148-09-01,3E04305,10
|
| 344 |
+
10014354,29757856,1,2150-04-11,0DD68ZX,10
|
| 345 |
+
10014354,22508257,1,2148-05-19,0DBH8ZX,10
|
| 346 |
+
10014354,22508257,2,2148-05-19,0DBM8ZX,10
|
| 347 |
+
10014354,22508257,4,2148-05-18,0DJD8ZZ,10
|
| 348 |
+
10014354,22508257,3,2148-05-12,0DJD8ZZ,10
|
| 349 |
+
10014354,28335091,1,2147-04-28,027134Z,10
|
| 350 |
+
10014354,28335091,3,2147-04-26,B211YZZ,10
|
| 351 |
+
10014354,28335091,2,2147-04-28,B211YZZ,10
|
| 352 |
+
10014354,27487226,1,2148-07-07,0W9D30Z,10
|
| 353 |
+
10038933,25129047,1,2148-09-11,3329,9
|
| 354 |
+
10038933,25129047,4,2148-09-10,966,9
|
| 355 |
+
10038933,25129047,3,2148-09-10,9671,9
|
| 356 |
+
10038933,25129047,2,2148-09-20,4311,9
|
| 357 |
+
10005909,20199380,5,2144-10-31,067D3DZ,10
|
| 358 |
+
10005909,20199380,7,2144-10-29,3E03317,10
|
| 359 |
+
10005909,20199380,4,2144-10-31,06CN3ZZ,10
|
| 360 |
+
10005909,20199380,2,2144-10-29,06H03DZ,10
|
| 361 |
+
10005909,20199380,1,2144-10-29,06CD3ZZ,10
|
| 362 |
+
10005909,20199380,3,2144-10-31,06CD3ZZ,10
|
| 363 |
+
10005909,20199380,6,2144-10-31,067G3DZ,10
|
| 364 |
+
10016150,29374560,2,2142-05-10,8853,9
|
| 365 |
+
10016150,29374560,3,2142-05-10,8856,9
|
| 366 |
+
10016150,29374560,1,2142-05-10,3722,9
|
| 367 |
+
10022041,28909879,2,2187-05-18,9671,9
|
| 368 |
+
10022041,28909879,1,2187-05-20,7931,9
|
| 369 |
+
10039708,23819016,1,2140-06-18,02HV33Z,10
|
| 370 |
+
10039708,28258130,21,2140-01-23,B54BZZA,10
|
| 371 |
+
10039708,28258130,4,2140-02-03,0B9D8ZZ,10
|
| 372 |
+
10039708,28258130,17,2140-02-18,0DJ08ZZ,10
|
| 373 |
+
10039708,28258130,18,2140-02-20,05HM33Z,10
|
| 374 |
+
10039708,28258130,7,2140-01-30,05HM33Z,10
|
| 375 |
+
10039708,28258130,11,2140-02-01,5A1935Z,10
|
| 376 |
+
10039708,28258130,1,2140-01-24,0DJD8ZZ,10
|
| 377 |
+
10039708,28258130,3,2140-02-02,0B9D8ZZ,10
|
| 378 |
+
10039708,28258130,2,2140-01-31,06H03DZ,10
|
| 379 |
+
10039708,28258130,14,2140-02-02,5A1945Z,10
|
| 380 |
+
10039708,28258130,8,2140-01-30,B543ZZ3,10
|
| 381 |
+
10039708,28258130,19,2140-02-25,0DJD8ZZ,10
|
| 382 |
+
10039708,28258130,10,2140-01-30,5A1D60Z,10
|
| 383 |
+
10039708,28258130,9,2140-01-30,3E0G76Z,10
|
| 384 |
+
10039708,28258130,12,2140-02-01,0BH17EZ,10
|
| 385 |
+
10039708,28258130,13,2140-02-02,0BH17EZ,10
|
| 386 |
+
10039708,28258130,5,2140-01-24,02HV33Z,10
|
| 387 |
+
10039708,28258130,15,2140-02-04,0BH17EZ,10
|
| 388 |
+
10039708,28258130,16,2140-02-04,5A1945Z,10
|
| 389 |
+
10039708,28258130,20,2140-01-23,06HM33Z,10
|
| 390 |
+
10039708,28258130,6,2140-01-24,B548ZZA,10
|
| 391 |
+
10039708,20093566,1,2143-09-27,5A1D70Z,10
|
| 392 |
+
10039708,29488258,1,2144-01-20,5A1D70Z,10
|
| 393 |
+
10039708,24928679,2,2143-09-21,5A1D70Z,10
|
| 394 |
+
10039708,24928679,1,2143-09-20,06L38CZ,10
|
| 395 |
+
10039708,25864431,2,2142-04-05,0DJ08ZZ,10
|
| 396 |
+
10039708,25864431,6,2142-03-31,5A1D70Z,10
|
| 397 |
+
10039708,25864431,4,2142-04-06,3E0H76Z,10
|
| 398 |
+
10039708,25864431,8,2142-04-01,0W9G3ZX,10
|
| 399 |
+
10039708,25864431,7,2142-04-08,0W9G3ZX,10
|
| 400 |
+
10039708,25864431,3,2142-04-05,0DHA8UZ,10
|
| 401 |
+
10039708,25864431,5,2142-03-30,02H633Z,10
|
| 402 |
+
10039708,25864431,1,2142-04-01,0W9G3ZZ,10
|
| 403 |
+
10000032,22841357,1,2180-06-27,5491,9
|
| 404 |
+
10000032,22595853,1,2180-05-07,5491,9
|
| 405 |
+
10000032,25742920,1,2180-08-06,5491,9
|
| 406 |
+
10037928,23721604,1,2179-04-03,3324,9
|
| 407 |
+
10037928,24225421,1,2178-09-29,2911,9
|
| 408 |
+
10037928,24225421,2,2178-09-29,9652,9
|
| 409 |
+
10037928,24225421,3,2178-09-29,2219,9
|
| 410 |
+
10035631,29276678,8,2116-03-07,0HB7XZX,10
|
| 411 |
+
10035631,29276678,5,2116-03-02,0B968ZX,10
|
| 412 |
+
10035631,29276678,6,2116-03-04,5A1D00Z,10
|
| 413 |
+
10035631,29276678,2,2116-02-29,0BH17EZ,10
|
| 414 |
+
10035631,29276678,3,2116-02-29,3E04305,10
|
| 415 |
+
10035631,29276678,1,2116-02-29,5A1955Z,10
|
| 416 |
+
10035631,29276678,7,2116-03-02,3E0G76Z,10
|
| 417 |
+
10035631,29276678,4,2116-02-29,6A551Z3,10
|
| 418 |
+
10035631,22732862,2,2112-11-15,3324,9
|
| 419 |
+
10035631,22732862,1,2112-11-14,9749,9
|
| 420 |
+
10035631,29462354,2,2112-09-18,4131,9
|
| 421 |
+
10035631,29462354,3,2112-09-19,3897,9
|
| 422 |
+
10035631,29462354,5,2112-10-17,4131,9
|
| 423 |
+
10035631,29462354,4,2112-09-20,4131,9
|
| 424 |
+
10035631,29462354,1,2112-09-20,9925,9
|
| 425 |
+
10035631,27496788,1,2113-08-28,3327,9
|
| 426 |
+
10035631,27496788,2,2113-08-28,3324,9
|
| 427 |
+
10035631,21476294,3,2115-11-09,02HV33Z,10
|
| 428 |
+
10035631,21476294,1,2115-11-10,3E04305,10
|
| 429 |
+
10035631,21476294,2,2115-11-08,07DR3ZX,10
|
| 430 |
+
10035631,21599196,2,2116-02-13,02H633Z,10
|
| 431 |
+
10035631,21599196,1,2116-02-13,3E04305,10
|
| 432 |
+
10035631,24912093,2,2112-10-22,3897,9
|
| 433 |
+
10035631,24912093,1,2112-10-22,9925,9
|
| 434 |
+
10035631,29654498,2,2113-07-17,4011,9
|
| 435 |
+
10035631,29654498,1,2113-07-17,8523,9
|
| 436 |
+
10035631,20385771,1,2112-12-11,4105,9
|
| 437 |
+
10035631,20385771,3,2112-12-04,3897,9
|
| 438 |
+
10035631,20385771,2,2112-12-11,0091,9
|
| 439 |
+
10027445,26275841,2,2142-07-31,9604,9
|
| 440 |
+
10027445,26275841,4,2142-08-01,966,9
|
| 441 |
+
10027445,26275841,1,2142-07-31,9671,9
|
| 442 |
+
10027445,26275841,3,2142-07-31,3897,9
|
| 443 |
+
10027445,29163082,2,2142-08-30,3721,9
|
| 444 |
+
10027445,29163082,3,2142-08-30,8872,9
|
| 445 |
+
10027445,29163082,4,2142-08-28,3723,9
|
| 446 |
+
10027445,29163082,1,2142-09-03,3596,9
|
| 447 |
+
10027445,29163082,5,2142-08-28,8854,9
|
| 448 |
+
10012853,27882036,1,2176-11-26,5A09557,10
|
| 449 |
+
10015931,24420677,1,2176-12-22,02HV33Z,10
|
| 450 |
+
10015931,22130791,7,2177-03-25,5A1945Z,10
|
| 451 |
+
10015931,22130791,4,2177-03-25,B415YZZ,10
|
| 452 |
+
10015931,22130791,1,2177-03-25,0DJ08ZZ,10
|
| 453 |
+
10015931,22130791,2,2177-03-26,0DC68ZZ,10
|
| 454 |
+
10015931,22130791,5,2177-03-25,B414YZZ,10
|
| 455 |
+
10015931,22130791,3,2177-03-27,0DJ08ZZ,10
|
| 456 |
+
10015931,22130791,8,2177-03-26,02HV33Z,10
|
| 457 |
+
10015931,22130791,9,2177-03-26,04HL33Z,10
|
| 458 |
+
10015931,22130791,6,2177-03-26,04L23DZ,10
|
| 459 |
+
10015931,28157142,2,2176-11-21,3E053GC,10
|
| 460 |
+
10015931,28157142,1,2176-11-19,02RF38Z,10
|
| 461 |
+
10019003,27525946,3,2153-04-15,04L33DZ,10
|
| 462 |
+
10019003,27525946,5,2153-04-13,0D598ZZ,10
|
| 463 |
+
10019003,27525946,2,2153-04-13,0DQ98ZZ,10
|
| 464 |
+
10019003,27525946,8,2153-04-14,B548ZZA,10
|
| 465 |
+
10019003,27525946,1,2153-04-13,0DJ08ZZ,10
|
| 466 |
+
10019003,27525946,6,2153-04-15,04L23DZ,10
|
| 467 |
+
10019003,27525946,4,2153-04-13,3E0G8GC,10
|
| 468 |
+
10019003,27525946,7,2153-04-14,02HV33Z,10
|
| 469 |
+
10019003,21457723,1,2155-07-11,07DR3ZX,10
|
| 470 |
+
10019003,28003918,1,2148-12-21,6563,9
|
| 471 |
+
10019003,28003918,3,2148-12-21,5732,9
|
| 472 |
+
10019003,28003918,2,2148-12-21,6841,9
|
| 473 |
+
10019003,26529390,5,2155-06-13,02HV33Z,10
|
| 474 |
+
10019003,26529390,1,2155-05-18,07DR3ZX,10
|
| 475 |
+
10019003,26529390,2,2155-05-28,0B9J8ZX,10
|
| 476 |
+
10019003,26529390,4,2155-06-12,D7021ZZ,10
|
| 477 |
+
10019003,26529390,3,2155-05-28,0B9D8ZX,10
|
| 478 |
+
10019003,29279905,1,2153-04-04,0D598ZZ,10
|
| 479 |
+
10019003,29279905,2,2153-03-27,02HV33Z,10
|
| 480 |
+
10019003,29279905,3,2153-03-27,B548ZZA,10
|
| 481 |
+
10019003,25508812,1,2155-05-28,0B9J8ZX,10
|
| 482 |
+
10019003,25508812,2,2155-05-28,0B9D8ZX,10
|
| 483 |
+
10019003,26703331,1,2155-06-12,D7021ZZ,10
|
| 484 |
+
10019003,26703331,2,2155-06-13,02HV33Z,10
|
| 485 |
+
10036156,28019404,1,2157-07-01,4444,9
|
| 486 |
+
10036156,28019404,2,2157-07-01,8847,9
|
| 487 |
+
10039997,24294180,2,2134-09-07,0039,9
|
| 488 |
+
10039997,24294180,1,2134-09-07,3951,9
|
| 489 |
+
10021312,28829452,6,2113-09-14,0BC78ZZ,10
|
| 490 |
+
10021312,28829452,4,2113-09-14,0BBF8ZZ,10
|
| 491 |
+
10021312,28829452,5,2113-09-14,0B5F8ZZ,10
|
| 492 |
+
10021312,28829452,2,2113-09-14,0B778DZ,10
|
| 493 |
+
10021312,28829452,1,2113-09-14,0B578ZZ,10
|
| 494 |
+
10021312,28829452,3,2113-09-14,0BB78ZZ,10
|
| 495 |
+
10021312,28829452,9,2113-09-16,0B978ZX,10
|
| 496 |
+
10021312,28829452,7,2113-09-15,0D738DZ,10
|
| 497 |
+
10021312,28829452,8,2113-09-16,0BB78ZZ,10
|
| 498 |
+
10021312,25020332,3,2113-08-16,0B778DZ,10
|
| 499 |
+
10021312,25020332,1,2113-08-16,0B538ZZ,10
|
| 500 |
+
10021312,25020332,5,2113-08-16,0BJ08ZZ,10
|
| 501 |
+
10021312,25020332,6,2113-08-16,0BB78ZX,10
|
| 502 |
+
10021312,25020332,7,2113-08-16,0BB38ZX,10
|
| 503 |
+
10021312,25020332,4,2113-08-16,0B738DZ,10
|
| 504 |
+
10021312,25020332,2,2113-08-16,0B578ZZ,10
|
| 505 |
+
10019777,27738145,20,2187-02-12,0040,9
|
| 506 |
+
10019777,27738145,17,2187-02-14,3897,9
|
| 507 |
+
10019777,27738145,21,2187-02-10,9672,9
|
| 508 |
+
10019777,27738145,22,2187-02-10,9604,9
|
| 509 |
+
10019777,27738145,23,2187-02-14,8849,9
|
| 510 |
+
10019777,27738145,7,2187-02-11,4443,9
|
| 511 |
+
10019777,27738145,15,2187-02-13,8847,9
|
| 512 |
+
10019777,27738145,14,2187-02-12,9910,9
|
| 513 |
+
10019777,27738145,3,2187-02-14,3979,9
|
| 514 |
+
10019777,27738145,1,2187-02-10,5211,9
|
| 515 |
+
10019777,27738145,11,2187-02-12,8847,9
|
| 516 |
+
10019777,27738145,19,2187-02-12,0045,9
|
| 517 |
+
10019777,27738145,12,2187-02-12,3893,9
|
| 518 |
+
10019777,27738145,18,2187-02-12,3990,9
|
| 519 |
+
10019777,27738145,8,2187-02-13,4513,9
|
| 520 |
+
10019777,27738145,5,2187-02-10,4513,9
|
| 521 |
+
10019777,27738145,13,2187-02-12,8864,9
|
| 522 |
+
10019777,27738145,9,2187-02-10,8847,9
|
| 523 |
+
10019777,27738145,4,2187-02-10,4444,9
|
| 524 |
+
10019777,27738145,6,2187-02-10,8874,9
|
| 525 |
+
10019777,27738145,2,2187-02-12,3950,9
|
| 526 |
+
10019777,27738145,10,2187-02-10,8848,9
|
| 527 |
+
10019777,27738145,16,2187-02-12,3897,9
|
| 528 |
+
10018501,28479513,1,2141-08-01,9462,9
|
| 529 |
+
10004422,21255400,4,2111-01-17,3961,9
|
| 530 |
+
10004422,21255400,2,2111-01-15,3722,9
|
| 531 |
+
10004422,21255400,3,2111-01-17,3613,9
|
| 532 |
+
10004422,21255400,1,2111-01-17,3615,9
|
| 533 |
+
10004422,21255400,5,2111-01-15,8856,9
|
| 534 |
+
10003400,22390287,1,2137-02-11,9229,9
|
| 535 |
+
10003400,29483621,2,2136-11-11,4523,9
|
| 536 |
+
10003400,29483621,1,2136-11-07,4923,9
|
| 537 |
+
10003400,23559586,9,2137-08-17,0BH17EZ,10
|
| 538 |
+
10003400,23559586,4,2137-08-10,BT1FYZZ,10
|
| 539 |
+
10003400,23559586,6,2137-08-10,5A1945Z,10
|
| 540 |
+
10003400,23559586,12,2137-08-20,B548ZZA,10
|
| 541 |
+
10003400,23559586,10,2137-08-17,5A1945Z,10
|
| 542 |
+
10003400,23559586,8,2137-08-18,0W9930Z,10
|
| 543 |
+
10003400,23559586,11,2137-08-20,02HV33Z,10
|
| 544 |
+
10003400,23559586,2,2137-08-10,0TP98DZ,10
|
| 545 |
+
10003400,23559586,5,2137-08-10,BT1DYZZ,10
|
| 546 |
+
10003400,23559586,1,2137-08-10,0T768DZ,10
|
| 547 |
+
10003400,23559586,7,2137-08-13,3E0G76Z,10
|
| 548 |
+
10003400,23559586,3,2137-08-10,0TJB8ZZ,10
|
| 549 |
+
10003400,20214994,5,2137-02-25,8674,9
|
| 550 |
+
10003400,20214994,3,2137-02-25,5459,9
|
| 551 |
+
10003400,20214994,8,2137-03-07,8628,9
|
| 552 |
+
10003400,20214994,10,2137-02-25,9671,9
|
| 553 |
+
10003400,20214994,7,2137-03-01,966,9
|
| 554 |
+
10003400,20214994,6,2137-02-25,9977,9
|
| 555 |
+
10003400,20214994,9,2137-02-26,3897,9
|
| 556 |
+
10003400,20214994,2,2137-02-25,4562,9
|
| 557 |
+
10003400,20214994,1,2137-02-25,4852,9
|
| 558 |
+
10003400,20214994,4,2137-02-25,5369,9
|
| 559 |
+
10009035,28324362,1,2161-04-27,3512,9
|
| 560 |
+
10009035,28324362,2,2161-04-27,3961,9
|
| 561 |
+
10023117,29839885,1,2170-10-08,0051,9
|
| 562 |
+
10023117,28872262,4,2171-11-15,3893,9
|
| 563 |
+
10023117,28872262,6,2171-11-15,8949,9
|
| 564 |
+
10023117,28872262,2,2171-11-11,3721,9
|
| 565 |
+
10023117,28872262,3,2171-11-12,3897,9
|
| 566 |
+
10023117,28872262,5,2171-11-16,3891,9
|
| 567 |
+
10023117,28872262,1,2171-11-14,3774,9
|
| 568 |
+
10023117,21133938,2,2175-03-21,0BH18EZ,10
|
| 569 |
+
10023117,21133938,4,2175-03-21,4A133B3,10
|
| 570 |
+
10023117,21133938,1,2175-03-21,5A1945Z,10
|
| 571 |
+
10023117,21133938,5,2175-03-21,4A1239Z,10
|
| 572 |
+
10023117,21133938,3,2175-03-21,02HP32Z,10
|
| 573 |
+
10023117,21607814,1,2175-07-08,02HV33Z,10
|
| 574 |
+
10023117,21607814,2,2175-07-11,02HV33Z,10
|
| 575 |
+
10038992,24745425,2,2187-07-29,5A1221Z,10
|
| 576 |
+
10038992,24745425,1,2187-07-29,02RF08Z,10
|
| 577 |
+
10020306,28778757,1,2129-10-29,8541,9
|
| 578 |
+
10020306,28778757,2,2129-10-29,4023,9
|
| 579 |
+
10020306,23052851,2,2135-02-04,3E0G76Z,10
|
| 580 |
+
10020306,23052851,4,2135-01-22,03HY32Z,10
|
| 581 |
+
10020306,23052851,3,2135-01-22,02HV33Z,10
|
| 582 |
+
10020306,23052851,1,2135-02-04,0DH63UZ,10
|
| 583 |
+
10017492,27672872,1,2114-03-23,0331,9
|
| 584 |
+
10017492,27417763,1,2116-06-27,7915,9
|
| 585 |
+
10037975,27617929,2,2185-01-18,966,9
|
| 586 |
+
10037975,27617929,3,2185-01-17,3891,9
|
| 587 |
+
10037975,27617929,1,2185-01-17,9672,9
|
| 588 |
+
10038999,29026789,1,2132-05-18,0QSG06Z,10
|
| 589 |
+
10038999,27189241,8,2131-05-26,0B988ZX,10
|
| 590 |
+
10038999,27189241,1,2131-05-29,0W9B3ZZ,10
|
| 591 |
+
10038999,27189241,6,2131-05-29,0W9B3ZX,10
|
| 592 |
+
10038999,27189241,3,2131-05-22,0W9D30Z,10
|
| 593 |
+
10038999,27189241,2,2131-05-22,5A1955Z,10
|
| 594 |
+
10038999,27189241,4,2131-05-22,0BH17EZ,10
|
| 595 |
+
10038999,27189241,7,2131-05-26,02HV33Z,10
|
| 596 |
+
10038999,27189241,5,2131-05-26,3E0H76Z,10
|
| 597 |
+
10038999,27189241,9,2131-05-26,0BB88ZX,10
|
| 598 |
+
10040025,27125816,2,2143-03-18,0069,9
|
| 599 |
+
10040025,27125816,1,2143-03-18,8845,9
|
| 600 |
+
10040025,27259207,1,2147-12-04,0LBW0ZZ,10
|
| 601 |
+
10040025,27259207,2,2147-12-17,B410ZZZ,10
|
| 602 |
+
10040025,27259207,3,2147-12-17,B41GYZZ,10
|
| 603 |
+
10040025,27996267,1,2148-01-23,0LBW0ZZ,10
|
| 604 |
+
10040025,27996267,3,2148-01-25,0JBP0ZZ,10
|
| 605 |
+
10040025,27996267,4,2148-01-31,0JDM0ZZ,10
|
| 606 |
+
10040025,27996267,2,2148-01-23,0JDM0ZZ,10
|
| 607 |
+
10040025,27996267,6,2148-01-24,02HV33Z,10
|
| 608 |
+
10040025,27996267,5,2148-01-31,0JDP0ZZ,10
|
| 609 |
+
10040025,27876215,1,2147-11-09,30283B1,10
|
| 610 |
+
10040025,27876215,2,2147-11-10,02HV33Z,10
|
| 611 |
+
10040025,25933959,3,2147-12-30,0LBW0ZZ,10
|
| 612 |
+
10040025,25933959,2,2147-12-30,06BQ0ZZ,10
|
| 613 |
+
10040025,25933959,1,2147-12-30,041L09L,10
|
| 614 |
+
10008287,22168393,1,2145-09-28,00B60ZZ,10
|
| 615 |
+
10022880,27708593,3,2177-03-12,8162,9
|
| 616 |
+
10022880,27708593,2,2177-03-12,7770,9
|
| 617 |
+
10022880,27708593,1,2177-03-12,8107,9
|
| 618 |
+
10016742,28506150,3,2178-07-14,0BCB8ZZ,10
|
| 619 |
+
10016742,28506150,1,2178-07-13,5A1945Z,10
|
| 620 |
+
10016742,28506150,2,2178-07-14,0BCF8ZZ,10
|
| 621 |
+
10016742,29281842,2,2178-07-07,02HV33Z,10
|
| 622 |
+
10016742,29281842,1,2178-07-03,5A1955Z,10
|
| 623 |
+
10016742,27568122,3,2178-07-25,3E0H76Z,10
|
| 624 |
+
10016742,27568122,1,2178-07-25,5A1945Z,10
|
| 625 |
+
10016742,27568122,2,2178-07-24,0D2DXUZ,10
|
| 626 |
+
10016742,27568122,4,2178-07-23,0BJ08ZZ,10
|
| 627 |
+
10004457,28108313,1,2147-12-19,03CM0ZZ,10
|
| 628 |
+
10004457,28108313,2,2147-12-19,03UH0KZ,10
|
| 629 |
+
10004457,28108313,3,2147-12-19,03UM0KZ,10
|
| 630 |
+
10004457,21216581,2,2143-03-09,3727,9
|
| 631 |
+
10004457,21216581,1,2143-03-09,3734,9
|
| 632 |
+
10004457,21039249,3,2140-09-17,3722,9
|
| 633 |
+
10004457,21039249,4,2140-09-17,0045,9
|
| 634 |
+
10004457,21039249,6,2140-09-17,8856,9
|
| 635 |
+
10004457,21039249,1,2140-09-17,0066,9
|
| 636 |
+
10004457,21039249,2,2140-09-17,3607,9
|
| 637 |
+
10004457,21039249,5,2140-09-17,0040,9
|
| 638 |
+
10004457,23251352,2,2141-12-17,3611,9
|
| 639 |
+
10004457,23251352,1,2141-12-17,3521,9
|
| 640 |
+
10004457,23251352,3,2141-12-17,3961,9
|
| 641 |
+
10029291,22205327,7,2123-02-24,B548ZZA,10
|
| 642 |
+
10029291,22205327,2,2123-02-20,5A1955Z,10
|
| 643 |
+
10029291,22205327,10,2123-02-24,0CJS8ZZ,10
|
| 644 |
+
10029291,22205327,5,2123-02-20,B548ZZA,10
|
| 645 |
+
10029291,22205327,1,2123-02-20,3E04317,10
|
| 646 |
+
10029291,22205327,6,2123-02-24,02HV33Z,10
|
| 647 |
+
10029291,22205327,9,2123-02-24,3E0G76Z,10
|
| 648 |
+
10029291,22205327,4,2123-02-20,02HV33Z,10
|
| 649 |
+
10029291,22205327,3,2123-02-20,0BH17EZ,10
|
| 650 |
+
10029291,22205327,8,2123-02-24,5A1D60Z,10
|
| 651 |
+
10004720,22081550,2,2186-11-12,0W9930Z,10
|
| 652 |
+
10004720,22081550,3,2186-11-12,02H633Z,10
|
| 653 |
+
10004720,22081550,4,2186-11-15,3E0G76Z,10
|
| 654 |
+
10004720,22081550,1,2186-11-12,5A1955Z,10
|
| 655 |
+
10019568,28710730,1,2120-01-30,3404,9
|
| 656 |
+
10035185,22580999,3,2120-05-13,3961,9
|
| 657 |
+
10035185,22580999,1,2120-05-13,3613,9
|
| 658 |
+
10035185,22580999,2,2120-05-13,3615,9
|
| 659 |
+
10007795,25135483,2,2136-05-05,5201,9
|
| 660 |
+
10007795,25135483,4,2136-05-08,3897,9
|
| 661 |
+
10007795,25135483,3,2136-05-06,966,9
|
| 662 |
+
10007795,25135483,1,2136-05-05,5222,9
|
| 663 |
+
10007795,27962747,1,2136-07-24,966,9
|
| 664 |
+
10007795,28477357,7,2136-04-13,8874,9
|
| 665 |
+
10007795,28477357,3,2136-04-17,4699,9
|
| 666 |
+
10007795,28477357,8,2136-04-19,5491,9
|
| 667 |
+
10007795,28477357,1,2136-04-11,9915,9
|
| 668 |
+
10007795,28477357,5,2136-04-17,8874,9
|
| 669 |
+
10007795,28477357,6,2136-04-17,4513,9
|
| 670 |
+
10007795,28477357,2,2136-04-13,4699,9
|
| 671 |
+
10007795,28477357,9,2136-04-25,966,9
|
| 672 |
+
10007795,28477357,4,2136-04-13,4513,9
|
| 673 |
+
10007795,20285402,3,2136-08-09,3897,9
|
| 674 |
+
10007795,20285402,2,2136-08-06,966,9
|
| 675 |
+
10007795,20285402,1,2136-08-10,3897,9
|
| 676 |
+
10010867,22950920,1,2148-01-26,0RG8071,10
|
| 677 |
+
10010867,22429197,5,2147-12-30,5A1955Z,10
|
| 678 |
+
10010867,22429197,4,2148-01-01,0BJ08ZZ,10
|
| 679 |
+
10010867,22429197,1,2147-12-31,0RG10A0,10
|
| 680 |
+
10010867,22429197,2,2148-01-02,0RG1071,10
|
| 681 |
+
10010867,22429197,7,2148-01-04,0B948ZX,10
|
| 682 |
+
10010867,22429197,8,2148-01-04,0B988ZX,10
|
| 683 |
+
10010867,22429197,3,2147-12-31,0RB30ZZ,10
|
| 684 |
+
10010867,22429197,9,2148-01-01,3E0G76Z,10
|
| 685 |
+
10010867,22429197,10,2148-01-06,02H633Z,10
|
| 686 |
+
10010867,22429197,6,2148-01-04,0B9B8ZX,10
|
| 687 |
+
10010867,22196214,1,2148-03-09,0W9930Z,10
|
| 688 |
+
10025463,27327816,2,2136-10-31,3727,9
|
| 689 |
+
10025463,27327816,1,2136-10-31,3734,9
|
| 690 |
+
10025463,27327816,4,2136-10-31,9962,9
|
| 691 |
+
10025463,27327816,3,2136-10-31,3726,9
|
| 692 |
+
10025463,24470193,3,2137-10-08,0096,9
|
| 693 |
+
10025463,24470193,2,2137-10-08,9671,9
|
| 694 |
+
10025463,24470193,4,2137-10-09,3893,9
|
| 695 |
+
10025463,24470193,1,2137-10-08,0221,9
|
| 696 |
+
10002428,20321825,1,2156-04-30,9390,9
|
| 697 |
+
10002428,28295257,1,2160-04-18,0DJD8ZZ,10
|
| 698 |
+
10002428,28676446,1,2157-07-16,7915,9
|
| 699 |
+
10002428,23473524,1,2156-05-11,9672,9
|
| 700 |
+
10002428,23473524,2,2156-05-11,9604,9
|
| 701 |
+
10002428,23473524,3,2156-05-11,3891,9
|
| 702 |
+
10002428,23473524,4,2156-05-11,3897,9
|
| 703 |
+
10002428,28662225,9,2156-04-17,9915,9
|
| 704 |
+
10002428,28662225,3,2156-04-19,3893,9
|
| 705 |
+
10002428,28662225,7,2156-04-20,3324,9
|
| 706 |
+
10002428,28662225,6,2156-04-21,3409,9
|
| 707 |
+
10002428,28662225,2,2156-04-19,9671,9
|
| 708 |
+
10002428,28662225,5,2156-04-21,3491,9
|
| 709 |
+
10002428,28662225,1,2156-04-19,9604,9
|
| 710 |
+
10002428,28662225,8,2156-04-14,3893,9
|
| 711 |
+
10002428,28662225,10,2156-04-24,966,9
|
| 712 |
+
10002428,28662225,4,2156-04-19,3891,9
|
| 713 |
+
10004733,27411876,6,2174-12-07,3322,9
|
| 714 |
+
10004733,27411876,4,2174-12-20,4523,9
|
| 715 |
+
10004733,27411876,1,2174-12-04,9671,9
|
| 716 |
+
10004733,27411876,2,2174-12-07,5523,9
|
| 717 |
+
10004733,27411876,7,2174-12-10,966,9
|
| 718 |
+
10004733,27411876,5,2174-12-07,3897,9
|
| 719 |
+
10004733,27411876,3,2174-12-20,4513,9
|
| 720 |
+
10021118,24490144,4,2161-11-19,5A1221Z,10
|
| 721 |
+
10021118,24490144,3,2161-11-19,06BP4ZZ,10
|
| 722 |
+
10021118,24490144,1,2161-11-19,02100Z9,10
|
| 723 |
+
10021118,24490144,2,2161-11-19,02110Z3,10
|
data/mimic-iv-clinical-database-demo/hosp/provider.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/mimic-iv-clinical-database-demo/hosp/services.csv
ADDED
|
@@ -0,0 +1,320 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
subject_id,hadm_id,transfertime,prev_service,curr_service
|
| 2 |
+
10001725,25563031,2110-04-11 15:09:36,,GYN
|
| 3 |
+
10019003,28003918,2148-12-21 03:32:53,,GYN
|
| 4 |
+
10007818,22987108,2146-06-10 16:38:18,,MED
|
| 5 |
+
10004235,24181354,2196-02-24 14:39:31,,MED
|
| 6 |
+
10026255,22059910,2201-07-07 18:16:14,,MED
|
| 7 |
+
10026255,20437651,2200-09-25 17:49:37,TRAUM,MED
|
| 8 |
+
10018328,26706939,2154-02-06 19:34:46,SURG,MED
|
| 9 |
+
10020640,27984218,2153-02-13 00:23:03,,MED
|
| 10 |
+
10021666,22756440,2172-03-17 16:36:05,NSURG,MED
|
| 11 |
+
10006053,22942076,2111-11-13 23:40:00,,MED
|
| 12 |
+
10015272,27993466,2137-06-12 18:37:22,,MED
|
| 13 |
+
10021938,27154822,2181-10-25 10:45:06,,MED
|
| 14 |
+
10021938,23112364,2181-10-13 01:49:21,,MED
|
| 15 |
+
10005817,28661809,2135-01-04 19:27:00,OMED,MED
|
| 16 |
+
10038081,20755971,2115-09-27 20:42:20,,MED
|
| 17 |
+
10023239,28984460,2140-10-22 22:05:28,,MED
|
| 18 |
+
10023239,29295881,2137-06-19 17:36:14,,MED
|
| 19 |
+
10023239,21759936,2140-10-03 09:07:56,,MED
|
| 20 |
+
10019917,22585261,2182-01-07 23:26:32,,MED
|
| 21 |
+
10020944,29974575,2131-02-27 15:35:01,,MED
|
| 22 |
+
10032725,25177949,2143-02-17 14:21:25,,MED
|
| 23 |
+
10032725,20611640,2143-03-22 05:00:23,,MED
|
| 24 |
+
10010471,21322534,2155-05-08 17:06:17,,MED
|
| 25 |
+
10005866,20364112,2149-10-22 09:16:13,SURG,MED
|
| 26 |
+
10005866,21636229,2149-09-24 18:21:40,SURG,MED
|
| 27 |
+
10005866,22589518,2149-02-11 21:50:58,,MED
|
| 28 |
+
10024043,25561728,2117-02-03 20:10:25,,MED
|
| 29 |
+
10015860,20854119,2188-08-06 00:49:59,,MED
|
| 30 |
+
10015860,28196804,2193-11-23 19:16:36,,MED
|
| 31 |
+
10015860,22607171,2190-05-15 08:17:29,,MED
|
| 32 |
+
10015860,25103777,2192-07-31 16:06:52,,MED
|
| 33 |
+
10015860,20790339,2189-05-23 02:16:04,,MED
|
| 34 |
+
10015860,24698912,2192-05-12 07:43:24,,MED
|
| 35 |
+
10015860,22413744,2191-01-15 01:57:34,,MED
|
| 36 |
+
10015860,27670224,2187-12-14 15:48:46,,MED
|
| 37 |
+
10015860,22416954,2193-05-03 22:48:05,,MED
|
| 38 |
+
10015860,25085565,2186-09-15 16:13:57,CMED,MED
|
| 39 |
+
10007928,20338077,2129-04-05 22:57:00,,MED
|
| 40 |
+
10020740,23199774,2150-09-15 14:09:59,,MED
|
| 41 |
+
10020740,23143086,2151-01-15 15:26:40,,MED
|
| 42 |
+
10020740,29820177,2150-07-09 22:10:54,,MED
|
| 43 |
+
10020740,23831430,2150-03-11 15:34:56,,MED
|
| 44 |
+
10031757,28477280,2137-10-14 17:36:40,SURG,MED
|
| 45 |
+
10014354,24980601,2150-02-04 20:13:49,,MED
|
| 46 |
+
10014354,27487226,2148-06-30 01:09:34,,MED
|
| 47 |
+
10014354,20900955,2149-03-04 23:15:10,,MED
|
| 48 |
+
10014354,26722126,2146-11-09 01:54:30,,MED
|
| 49 |
+
10014354,29600294,2148-08-16 08:57:36,OMED,MED
|
| 50 |
+
10014354,27487226,2148-07-04 20:19:52,OMED,MED
|
| 51 |
+
10014354,24096336,2149-06-19 22:55:33,,MED
|
| 52 |
+
10039708,20572787,2138-10-30 23:31:22,,MED
|
| 53 |
+
10039708,28258130,2140-01-23 16:19:58,,MED
|
| 54 |
+
10039708,20093566,2143-09-26 18:25:09,,MED
|
| 55 |
+
10039708,22999601,2142-05-15 17:15:02,,MED
|
| 56 |
+
10039708,26793610,2140-09-25 04:18:09,,MED
|
| 57 |
+
10039708,23819016,2140-06-18 00:23:15,,MED
|
| 58 |
+
10039708,29488258,2144-01-19 12:08:25,,MED
|
| 59 |
+
10039708,25864431,2142-03-26 06:09:35,,MED
|
| 60 |
+
10039708,24928679,2143-09-19 18:37:50,,MED
|
| 61 |
+
10000032,22595853,2180-05-06 22:24:57,,MED
|
| 62 |
+
10000032,25742920,2180-08-05 23:44:50,,MED
|
| 63 |
+
10000032,22841357,2180-06-26 18:28:08,,MED
|
| 64 |
+
10000032,29079034,2180-07-23 12:36:04,,MED
|
| 65 |
+
10026406,25166559,2133-03-01 19:31:03,,MED
|
| 66 |
+
10026406,25260176,2129-01-03 15:55:55,,MED
|
| 67 |
+
10037928,23721604,2179-03-27 18:28:18,,MED
|
| 68 |
+
10037928,22326517,2177-12-21 20:48:38,,MED
|
| 69 |
+
10037928,24225421,2178-09-28 23:06:20,,MED
|
| 70 |
+
10037928,28543425,2175-10-26 01:32:33,,MED
|
| 71 |
+
10037928,22228639,2183-08-04 04:07:05,,MED
|
| 72 |
+
10037928,29802992,2179-07-25 00:07:48,,MED
|
| 73 |
+
10037928,24656677,2178-12-21 05:30:41,,MED
|
| 74 |
+
10037928,20192635,2177-09-04 12:06:40,,MED
|
| 75 |
+
10037928,22490490,2177-07-14 16:56:05,,MED
|
| 76 |
+
10029484,20764029,2160-11-08 04:16:40,,MED
|
| 77 |
+
10035631,29462354,2112-09-17 19:14:01,,MED
|
| 78 |
+
10035631,29276678,2116-02-29 10:01:37,OMED,MED
|
| 79 |
+
10020786,23488445,2189-06-09 12:46:30,,MED
|
| 80 |
+
10027445,26275841,2142-07-31 00:33:06,,MED
|
| 81 |
+
10027445,27488741,2145-12-08 20:39:42,CMED,MED
|
| 82 |
+
10012853,22896692,2176-08-11 15:17:55,,MED
|
| 83 |
+
10012853,27882036,2176-11-25 21:28:30,,MED
|
| 84 |
+
10012853,22539296,2176-06-06 18:09:39,,MED
|
| 85 |
+
10015931,22130791,2177-03-24 21:48:07,,MED
|
| 86 |
+
10015931,24420677,2176-12-22 16:24:53,CMED,MED
|
| 87 |
+
10019003,29279905,2153-03-27 23:26:24,,MED
|
| 88 |
+
10036156,28019404,2157-07-01 04:52:37,,MED
|
| 89 |
+
10039997,21390688,2135-11-07 02:42:35,,MED
|
| 90 |
+
10021312,28829452,2113-09-12 14:44:10,,MED
|
| 91 |
+
10021312,25020332,2113-08-16 00:34:06,,MED
|
| 92 |
+
10019777,27738145,2187-02-10 18:58:08,,MED
|
| 93 |
+
10003400,27296885,2136-12-31 21:41:25,,MED
|
| 94 |
+
10003400,23559586,2137-08-05 00:13:22,,MED
|
| 95 |
+
10003400,26090619,2134-06-06 02:26:44,,MED
|
| 96 |
+
10003400,23559586,2137-08-22 07:58:54,CMED,MED
|
| 97 |
+
10003400,29483621,2136-11-04 20:43:36,,MED
|
| 98 |
+
10003400,26467376,2136-12-09 14:45:10,,MED
|
| 99 |
+
10023117,24244087,2174-06-07 23:26:35,,MED
|
| 100 |
+
10023117,21133938,2175-03-21 03:21:01,CMED,MED
|
| 101 |
+
10038992,22797747,2185-11-02 18:27:04,,MED
|
| 102 |
+
10020306,26332470,2133-05-05 05:44:24,,MED
|
| 103 |
+
10020306,23052851,2135-01-15 20:56:36,,MED
|
| 104 |
+
10017492,27417763,2116-07-03 22:00:43,ORTHO,MED
|
| 105 |
+
10037975,27617929,2185-01-17 19:12:12,,MED
|
| 106 |
+
10038999,27189241,2131-05-31 17:55:18,CMED,MED
|
| 107 |
+
10040025,21791856,2147-06-16 22:02:06,,MED
|
| 108 |
+
10040025,27876215,2147-11-09 08:02:52,,MED
|
| 109 |
+
10040025,25172300,2145-07-03 23:46:44,,MED
|
| 110 |
+
10040025,22251969,2147-08-03 03:01:07,,MED
|
| 111 |
+
10009049,22995465,2174-05-26 08:22:06,,MED
|
| 112 |
+
10016742,29281842,2178-07-03 21:13:51,,MED
|
| 113 |
+
10016742,28506150,2178-07-13 05:40:59,,MED
|
| 114 |
+
10016742,27568122,2178-07-22 07:20:17,,MED
|
| 115 |
+
10004720,22081550,2186-11-12 18:02:15,,MED
|
| 116 |
+
10002930,23720373,2199-02-17 21:46:40,,MED
|
| 117 |
+
10002930,20282368,2201-03-23 19:15:51,,MED
|
| 118 |
+
10002930,28477649,2197-04-07 06:56:40,,MED
|
| 119 |
+
10002930,25922998,2198-04-17 19:39:04,,MED
|
| 120 |
+
10002930,25696644,2196-04-14 12:26:15,,MED
|
| 121 |
+
10002930,22380825,2193-08-05 06:19:32,,MED
|
| 122 |
+
10002930,28697806,2200-06-05 05:43:51,,MED
|
| 123 |
+
10002930,20846853,2201-02-12 16:59:49,,MED
|
| 124 |
+
10002930,25282382,2197-04-17 02:02:06,,MED
|
| 125 |
+
10007795,28477357,2136-04-10 20:34:05,,MED
|
| 126 |
+
10002428,20321825,2156-04-30 20:36:25,,MED
|
| 127 |
+
10002428,26549334,2160-07-15 23:37:52,,MED
|
| 128 |
+
10002428,25797028,2155-07-14 19:16:22,,MED
|
| 129 |
+
10002428,28662225,2156-04-12 14:17:27,,MED
|
| 130 |
+
10002428,28295257,2160-04-14 12:31:23,,MED
|
| 131 |
+
10002428,23473524,2156-05-11 14:49:34,,MED
|
| 132 |
+
10004733,27411876,2174-12-04 11:28:24,,MED
|
| 133 |
+
10007058,22954658,2167-11-08 13:01:54,VSURG,CMED
|
| 134 |
+
10031404,21606243,2113-08-04 18:47:42,,CMED
|
| 135 |
+
10019385,20611796,2180-03-04 01:16:56,,CMED
|
| 136 |
+
10019385,20297618,2180-02-15 20:28:58,,CMED
|
| 137 |
+
10002495,24982426,2141-05-22 20:18:01,,CMED
|
| 138 |
+
10005348,25239799,2130-10-26 17:04:03,,CMED
|
| 139 |
+
10005348,29176490,2129-05-22 16:00:19,,CMED
|
| 140 |
+
10037861,24256866,2115-10-09 20:29:28,,CMED
|
| 141 |
+
10010471,29842315,2155-12-02 19:38:44,,CMED
|
| 142 |
+
10015860,25085565,2186-09-15 16:13:33,,CMED
|
| 143 |
+
10018423,29366372,2167-05-03 21:25:46,,CMED
|
| 144 |
+
10014354,22502504,2147-09-12 05:07:18,,CMED
|
| 145 |
+
10014354,23132022,2148-06-24 15:22:45,,CMED
|
| 146 |
+
10014354,28335091,2147-04-26 16:45:47,,CMED
|
| 147 |
+
10014354,27494880,2147-06-04 00:45:19,,CMED
|
| 148 |
+
10014354,27562275,2148-07-18 02:32:39,,CMED
|
| 149 |
+
10016150,29374560,2142-05-10 15:06:23,,CMED
|
| 150 |
+
10027445,27488741,2145-12-08 19:48:49,,CMED
|
| 151 |
+
10027445,29163082,2142-08-27 21:06:05,,CMED
|
| 152 |
+
10012853,26369609,2175-04-05 15:36:27,,CMED
|
| 153 |
+
10015931,24420677,2176-12-22 19:04:51,MED,CMED
|
| 154 |
+
10015931,28157142,2176-11-14 18:02:50,,CMED
|
| 155 |
+
10015931,24420677,2176-12-16 23:32:32,,CMED
|
| 156 |
+
10004422,21255400,2111-01-15 14:55:58,,CMED
|
| 157 |
+
10003400,23559586,2137-08-17 17:36:52,MED,CMED
|
| 158 |
+
10023117,21607814,2175-07-06 15:58:33,,CMED
|
| 159 |
+
10023117,29839885,2170-10-08 00:41:32,,CMED
|
| 160 |
+
10023117,28887654,2174-12-16 13:25:48,,CMED
|
| 161 |
+
10023117,28872262,2171-11-15 13:53:10,CSURG,CMED
|
| 162 |
+
10023117,24244087,2174-06-08 00:11:34,MED,CMED
|
| 163 |
+
10023117,29858644,2173-04-16 22:16:23,,CMED
|
| 164 |
+
10023117,21133938,2175-03-21 07:37:45,MED,CMED
|
| 165 |
+
10023117,21133938,2175-03-20 23:29:26,,CMED
|
| 166 |
+
10023117,28872262,2171-11-07 21:37:36,,CMED
|
| 167 |
+
10038999,27189241,2131-05-22 21:50:33,,CMED
|
| 168 |
+
10040025,27125816,2143-03-18 12:34:29,,CMED
|
| 169 |
+
10040025,25384176,2145-10-19 23:49:22,,CMED
|
| 170 |
+
10040025,27553957,2145-07-24 19:00:51,,CMED
|
| 171 |
+
10004457,25559382,2148-09-14 14:19:59,,CMED
|
| 172 |
+
10004457,21039249,2140-09-17 13:41:45,,CMED
|
| 173 |
+
10004457,28723315,2141-08-12 16:03:05,,CMED
|
| 174 |
+
10004457,21216581,2143-03-09 11:11:33,,CMED
|
| 175 |
+
10029291,22205327,2123-02-20 02:00:12,,CMED
|
| 176 |
+
10025463,27327816,2136-10-31 16:13:42,,CMED
|
| 177 |
+
10021118,24490144,2161-11-15 20:10:55,,CMED
|
| 178 |
+
10001217,24597018,2157-11-18 22:57:43,,NMED
|
| 179 |
+
10024043,24717014,2117-04-11 20:46:55,,NMED
|
| 180 |
+
10014078,25809882,2166-08-21 23:10:14,,NMED
|
| 181 |
+
10014354,22741225,2146-10-08 23:48:00,,NMED
|
| 182 |
+
10016150,29374560,2142-05-15 18:27:45,NSURG,NMED
|
| 183 |
+
10022041,28909879,2187-05-18 17:09:18,,NMED
|
| 184 |
+
10039997,22484749,2137-03-15 22:08:46,,NMED
|
| 185 |
+
10017492,27672872,2114-03-19 20:06:36,,NMED
|
| 186 |
+
10004733,27411876,2174-12-14 08:03:11,MED,NMED
|
| 187 |
+
10005817,28661809,2135-01-03 21:55:32,,OMED
|
| 188 |
+
10032725,25177949,2143-03-01 18:53:21,MED,OMED
|
| 189 |
+
10014354,26173805,2149-09-17 22:54:57,,OMED
|
| 190 |
+
10014354,29600294,2148-08-17 14:46:04,MED,OMED
|
| 191 |
+
10014354,22508257,2148-05-10 23:30:06,,OMED
|
| 192 |
+
10014354,29780751,2147-11-26 00:40:17,,OMED
|
| 193 |
+
10014354,29600294,2148-08-14 22:57:46,,OMED
|
| 194 |
+
10014354,27487226,2148-07-01 21:00:50,MED,OMED
|
| 195 |
+
10014354,26486158,2148-08-22 15:20:17,,OMED
|
| 196 |
+
10014354,24357615,2150-05-09 16:10:21,,OMED
|
| 197 |
+
10014354,29757856,2150-04-10 02:41:44,,OMED
|
| 198 |
+
10014354,26228185,2150-04-30 20:20:30,,OMED
|
| 199 |
+
10014354,26013492,2147-11-14 22:14:43,,OMED
|
| 200 |
+
10014354,24980601,2150-02-04 22:08:01,MED,OMED
|
| 201 |
+
10035631,22732862,2112-11-10 15:57:50,,OMED
|
| 202 |
+
10035631,27496788,2113-08-26 17:08:00,,OMED
|
| 203 |
+
10035631,21476294,2115-11-08 13:55:43,,OMED
|
| 204 |
+
10035631,20385771,2112-12-04 10:34:31,,OMED
|
| 205 |
+
10035631,21599196,2116-02-13 11:18:04,,OMED
|
| 206 |
+
10035631,29276678,2116-02-27 20:56:27,,OMED
|
| 207 |
+
10035631,24912093,2112-10-22 14:14:40,,OMED
|
| 208 |
+
10019003,27525946,2153-04-12 19:07:59,,OMED
|
| 209 |
+
10019003,29279905,2153-03-31 16:59:21,MED,OMED
|
| 210 |
+
10019003,25508812,2155-05-22 21:47:18,,OMED
|
| 211 |
+
10019003,26703331,2155-06-10 23:10:36,,OMED
|
| 212 |
+
10019003,26529390,2155-05-18 00:03:15,,OMED
|
| 213 |
+
10019003,26226543,2155-10-17 18:02:26,,OMED
|
| 214 |
+
10019003,21457723,2155-07-10 17:48:57,,OMED
|
| 215 |
+
10003400,22390287,2137-02-07 19:42:51,,OMED
|
| 216 |
+
10004235,22187210,2196-06-20 21:12:18,,SURG
|
| 217 |
+
10004235,25970245,2196-06-14 07:02:15,,SURG
|
| 218 |
+
10039831,26924951,2115-12-28 04:06:40,,SURG
|
| 219 |
+
10018328,26706939,2154-02-05 21:59:20,,SURG
|
| 220 |
+
10018081,25973915,2134-09-06 15:57:55,,SURG
|
| 221 |
+
10018081,23983182,2134-08-18 02:02:33,,SURG
|
| 222 |
+
10018081,21027282,2133-12-18 16:58:44,,SURG
|
| 223 |
+
10016810,20973395,2185-06-16 01:31:44,,SURG
|
| 224 |
+
10005817,20626031,2132-12-12 01:44:24,,SURG
|
| 225 |
+
10005866,26134779,2149-09-13 07:37:37,,SURG
|
| 226 |
+
10005866,26158160,2146-06-06 00:51:19,,SURG
|
| 227 |
+
10005866,21636229,2149-09-20 14:31:25,,SURG
|
| 228 |
+
10005866,27167814,2148-03-10 16:18:48,,SURG
|
| 229 |
+
10005866,23514107,2149-06-20 19:27:45,,SURG
|
| 230 |
+
10005866,20364112,2149-10-01 18:56:59,,SURG
|
| 231 |
+
10021487,20429160,2117-07-16 03:24:55,,SURG
|
| 232 |
+
10021487,27660781,2117-03-03 15:59:43,,SURG
|
| 233 |
+
10021487,21928381,2117-12-03 17:08:29,,SURG
|
| 234 |
+
10021487,27112038,2117-10-25 22:23:14,,SURG
|
| 235 |
+
10021487,26321862,2117-01-28 00:20:58,,SURG
|
| 236 |
+
10026354,24547356,2119-10-26 07:12:05,,SURG
|
| 237 |
+
10015860,28236161,2187-09-15 18:49:53,,SURG
|
| 238 |
+
10015860,25085565,2186-09-16 11:18:20,MED,SURG
|
| 239 |
+
10015860,28613200,2188-03-29 14:14:58,,SURG
|
| 240 |
+
10020740,25826145,2150-06-03 20:12:32,,SURG
|
| 241 |
+
10031757,28477280,2137-10-12 22:44:57,,SURG
|
| 242 |
+
10039708,27504040,2142-07-06 09:09:11,,SURG
|
| 243 |
+
10037928,24885579,2182-04-29 04:30:12,,SURG
|
| 244 |
+
10035631,29654498,2113-07-17 17:15:26,,SURG
|
| 245 |
+
10012853,26739864,2177-02-11 21:22:08,,SURG
|
| 246 |
+
10012853,20457729,2177-11-03 16:25:34,,SURG
|
| 247 |
+
10003400,20214994,2137-02-24 14:05:00,,SURG
|
| 248 |
+
10020306,28778757,2129-10-29 15:12:26,,SURG
|
| 249 |
+
10007795,27962747,2136-07-24 17:16:17,,SURG
|
| 250 |
+
10007795,22051341,2136-09-22 20:52:49,,SURG
|
| 251 |
+
10007795,25135483,2136-05-04 20:21:47,,SURG
|
| 252 |
+
10007795,28477357,2136-04-23 19:13:38,MED,SURG
|
| 253 |
+
10007795,20285402,2136-08-04 22:17:10,,SURG
|
| 254 |
+
10011398,27505812,2146-12-15 04:53:55,,CSURG
|
| 255 |
+
10014729,23300884,2125-03-20 10:58:51,VSURG,CSURG
|
| 256 |
+
10014729,28889419,2125-02-27 04:14:41,,CSURG
|
| 257 |
+
10009628,25926192,2153-09-17 17:08:47,,CSURG
|
| 258 |
+
10019385,20611796,2180-03-04 10:37:37,CMED,CSURG
|
| 259 |
+
10019385,20297618,2180-02-21 08:34:20,CMED,CSURG
|
| 260 |
+
10023771,20044587,2113-08-25 03:17:43,,CSURG
|
| 261 |
+
10005348,25239799,2130-10-27 12:06:16,CMED,CSURG
|
| 262 |
+
10019172,24997044,2118-11-15 14:47:26,,CSURG
|
| 263 |
+
10019172,21540783,2118-10-08 12:37:19,,CSURG
|
| 264 |
+
10018423,29366372,2167-05-05 13:00:29,CMED,CSURG
|
| 265 |
+
10013049,22675517,2114-06-20 02:41:44,,CSURG
|
| 266 |
+
10022017,22342963,2189-09-10 06:52:51,,CSURG
|
| 267 |
+
10012552,27089790,2140-03-22 17:19:37,,CSURG
|
| 268 |
+
10004422,21255400,2111-01-17 09:45:02,CMED,CSURG
|
| 269 |
+
10009035,28324362,2161-04-27 04:47:09,,CSURG
|
| 270 |
+
10023117,28872262,2171-11-14 10:06:54,CMED,CSURG
|
| 271 |
+
10038992,24745425,2187-07-29 01:06:12,,CSURG
|
| 272 |
+
10004457,23251352,2141-12-17 02:40:01,,CSURG
|
| 273 |
+
10035185,22580999,2120-05-12 12:54:35,,CSURG
|
| 274 |
+
10021118,24490144,2161-11-19 10:04:18,CMED,CSURG
|
| 275 |
+
10018328,23786647,2154-04-24 03:16:00,,NSURG
|
| 276 |
+
10018845,21101111,2184-10-08 02:29:52,,NSURG
|
| 277 |
+
10021666,22756440,2172-03-12 23:48:22,,NSURG
|
| 278 |
+
10001217,27703517,2157-12-18 16:59:25,,NSURG
|
| 279 |
+
10001217,24597018,2157-11-19 00:36:42,NMED,NSURG
|
| 280 |
+
10027602,21477991,2201-12-11 03:04:13,,NSURG
|
| 281 |
+
10027602,28166872,2201-10-30 12:07:45,,NSURG
|
| 282 |
+
10020187,26842957,2170-02-24 02:07:13,,NSURG
|
| 283 |
+
10020187,24104168,2169-01-15 04:04:33,,NSURG
|
| 284 |
+
10037861,24540843,2117-03-14 16:34:58,,NSURG
|
| 285 |
+
10038933,25129047,2148-09-10 12:10:02,,NSURG
|
| 286 |
+
10016150,29374560,2142-05-10 20:24:25,CMED,NSURG
|
| 287 |
+
10039997,24294180,2134-09-07 01:14:27,,NSURG
|
| 288 |
+
10018501,28479513,2141-07-30 22:35:25,,NSURG
|
| 289 |
+
10008287,22168393,2145-09-28 01:18:21,,NSURG
|
| 290 |
+
10022880,27708593,2177-03-12 06:19:32,,NSURG
|
| 291 |
+
10025463,24470193,2137-10-08 21:20:50,,NSURG
|
| 292 |
+
10015860,26352758,2192-09-24 09:20:21,,ORTHO
|
| 293 |
+
10017492,27417763,2116-06-27 18:28:12,TRAUM,ORTHO
|
| 294 |
+
10038999,29026789,2132-05-17 23:33:51,,ORTHO
|
| 295 |
+
10010867,22950920,2148-01-25 22:58:57,,ORTHO
|
| 296 |
+
10002428,28676446,2157-07-16 04:11:33,,ORTHO
|
| 297 |
+
10002930,22733922,2198-04-22 16:19:39,,PSYCH
|
| 298 |
+
10002930,28301173,2197-04-08 19:38:31,,PSYCH
|
| 299 |
+
10002930,23688993,2193-08-05 11:46:55,,PSYCH
|
| 300 |
+
10026255,20437651,2200-09-17 22:54:45,,TRAUM
|
| 301 |
+
10018081,28861356,2134-08-02 05:43:11,,TRAUM
|
| 302 |
+
10021487,28998349,2116-12-03 00:24:58,,TRAUM
|
| 303 |
+
10008454,20291550,2110-11-30 06:32:14,,TRAUM
|
| 304 |
+
10017492,27417763,2116-06-26 18:26:30,,TRAUM
|
| 305 |
+
10019568,28710730,2120-01-30 21:08:27,,TRAUM
|
| 306 |
+
10010867,22196214,2148-03-07 23:31:05,,TRAUM
|
| 307 |
+
10010867,22429197,2147-12-30 08:41:03,,TRAUM
|
| 308 |
+
10005348,29496232,2128-09-05 04:04:09,,TSURG
|
| 309 |
+
10003046,26048429,2154-01-02 00:15:52,,TSURG
|
| 310 |
+
10025612,23403708,2125-09-25 00:56:40,,TSURG
|
| 311 |
+
10014729,28889419,2125-02-27 16:17:02,CSURG,VSURG
|
| 312 |
+
10014729,23300884,2125-03-19 16:59:47,,VSURG
|
| 313 |
+
10007058,22954658,2167-11-07 19:05:47,,VSURG
|
| 314 |
+
10006580,24159665,2137-08-10 05:32:24,,VSURG
|
| 315 |
+
10022281,29642388,2125-06-17 04:12:54,,VSURG
|
| 316 |
+
10005909,20199380,2144-10-28 23:20:44,,VSURG
|
| 317 |
+
10040025,27996267,2148-01-23 12:18:49,,VSURG
|
| 318 |
+
10040025,25933959,2147-12-29 19:37:01,,VSURG
|
| 319 |
+
10040025,27259207,2147-12-04 20:49:51,,VSURG
|
| 320 |
+
10004457,28108313,2147-12-19 02:11:29,,VSURG
|
data/mimic-iv-clinical-database-demo/hosp/transfers.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|