[8c54ae]: / notebooks / xml_json_expt.ipynb

Download this file

234 lines (233 with data), 126.3 kB

{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [],
   "source": [
    "import os\n",
    "import json\n",
    "import xml.etree.ElementTree as ET"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "metadata": {},
   "outputs": [],
   "source": [
    "xml_path = '/Users/bharathbeeravelly/Desktop/patient-trials-matching/data/xml-exploration-2.xml'\n",
    "\n",
    "tree = ET.parse(xml_path)\n",
    "root = tree.getroot()\n",
    "\n",
    "ns = {'hl7': 'urn:hl7-org:v3'}\n",
    "\n",
    "sections = ['Allergies and Adverse Reactions', 'Medications', 'Diagnostic Results', 'Problems', 'Surgeries', 'Vital Signs', 'Immunizations']"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Find the recordTarget element and navigate inside it\n",
    "record_target = root.find('hl7:recordTarget/hl7:patientRole/hl7:patient', ns)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Initialize the patient_data dictionary\n",
    "patient_data = {}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "metadata": {},
   "outputs": [],
   "source": [
    "def extract_section_data(section_title, section):\n",
    "    \"\"\"Extracts information from a given section and appends it to the patient_data dictionary.\"\"\"\n",
    "    print(f\"Extracting Section: {section_title}\")\n",
    "\n",
    "    # Use section_title as the data_key for patient_data\n",
    "    data_key = section_title\n",
    "\n",
    "    # Initialize the list for the specified data_key if it doesn't exist\n",
    "    if data_key not in patient_data:\n",
    "        patient_data[data_key] = []\n",
    "\n",
    "    # Extract the rows from the section\n",
    "    rows = section.findall('.//hl7:tbody/hl7:tr', ns)\n",
    "\n",
    "    for row in rows:\n",
    "        # Extract relevant information from each row\n",
    "        info = {\n",
    "            'Start': row.find('hl7:td[1]', ns).text if row.find('hl7:td[1]', ns) is not None else None,\n",
    "            'Stop': row.find('hl7:td[2]', ns).text if row.find('hl7:td[2]', ns) is not None else None,\n",
    "            'Description': row.find('hl7:td[3]', ns).text if row.find('hl7:td[3]', ns) is not None else None\n",
    "        }\n",
    "        patient_data[data_key].append(info)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Extract general patient details (ID, Gender, Birth Time, Race, etc.)\n",
    "def extract_patient_details(root):\n",
    "    \"\"\"Extracts general patient details like ID, Gender, Birth Time, Race, etc., and adds them to the patient_data dictionary.\"\"\"\n",
    "\n",
    "    # Find the recordTarget element and navigate inside it\n",
    "    record_target = root.find('hl7:recordTarget/hl7:patientRole', ns)\n",
    "    \n",
    "    if record_target is not None:\n",
    "        # Extract Patient ID\n",
    "        patient_id = record_target.find('hl7:id', ns)\n",
    "        if patient_id is not None:\n",
    "            patient_data['Patient ID'] = patient_id.get('extension')\n",
    "\n",
    "        # Extract Given Name\n",
    "        given_name = record_target.find('.//hl7:name/hl7:given', ns).text if record_target.find('.//hl7:name/hl7:given', ns) is not None else None\n",
    "        patient_data['Given Name'] = given_name\n",
    "        # Extract administrativeGenderCode\n",
    "        gender_code = record_target.find('hl7:patient/hl7:administrativeGenderCode', ns)\n",
    "        if gender_code is not None:\n",
    "            patient_data['Gender'] = gender_code.get('code')\n",
    "\n",
    "        # Extract birthTime\n",
    "        birth_time = record_target.find('hl7:patient/hl7:birthTime', ns)\n",
    "        if birth_time is not None:\n",
    "            patient_data['Birth Time'] = birth_time.get('value')\n",
    "\n",
    "        # Extract raceCode displayName\n",
    "        race_code = record_target.find('hl7:patient/hl7:raceCode', ns)\n",
    "        if race_code is not None:\n",
    "            patient_data['Race'] = race_code.get('displayName')\n",
    "\n",
    "        # Extract ethnicGroupCode displayName\n",
    "        ethnic_group = record_target.find('hl7:patient/hl7:ethnicGroupCode', ns)\n",
    "        if ethnic_group is not None:\n",
    "            patient_data['Ethnic Group'] = ethnic_group.get('displayName')\n",
    "\n",
    "        # Extract languageCode code\n",
    "        language_code = record_target.find('hl7:patient/hl7:languageCommunication/hl7:languageCode', ns)\n",
    "        if language_code is not None:\n",
    "            patient_data['Language'] = language_code.get('code')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Extracting Section: Allergies and Adverse Reactions\n",
      "Extracting Section: Medications\n",
      "Extracting Section: Diagnostic Results\n",
      "{'Patient ID': '466df3cc-4a2e-70a8-5ebb-29f1ce64763f', 'Given Name': 'Carolina179 Francisca486', 'Gender': 'F', 'Birth Time': '19530616173200', 'Race': 'black', 'Ethnic Group': 'non-hispanic', 'Language': 'en-US', 'Allergies and Adverse Reactions': [{'Start': '1954-09-17T22:32:00Z', 'Stop': None, 'Description': 'Allergy to substance (finding)'}, {'Start': '1954-09-17T22:32:00Z', 'Stop': None, 'Description': 'Bee venom (substance)'}, {'Start': '1954-09-17T22:32:00Z', 'Stop': None, 'Description': 'Mold (organism)'}, {'Start': '1954-09-17T22:32:00Z', 'Stop': None, 'Description': 'House dust mite (organism)'}, {'Start': '1954-09-17T22:32:00Z', 'Stop': None, 'Description': 'Animal dander (substance)'}, {'Start': '1954-09-17T22:32:00Z', 'Stop': None, 'Description': 'Grass pollen (substance)'}, {'Start': '1954-09-17T22:32:00Z', 'Stop': None, 'Description': 'Tree pollen (substance)'}, {'Start': '1954-09-17T22:32:00Z', 'Stop': None, 'Description': \"Cow's milk (substance)\"}, {'Start': '1954-09-17T22:32:00Z', 'Stop': None, 'Description': 'Fish (substance)'}], 'Medications': [{'Start': '1957-03-30T17:32:00Z', 'Stop': None, 'Description': 'diphenhydrAMINE Hydrochloride 25 MG Oral Tablet'}, {'Start': '1997-07-29T17:32:00Z', 'Stop': '2024-01-02T17:32:00Z', 'Description': 'Simvastatin 10 MG Oral Tablet'}, {'Start': '2013-10-08T17:32:00Z', 'Stop': '2014-10-14T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2013-10-08T17:32:00Z', 'Stop': '2014-10-14T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2013-10-15T17:32:00Z', 'Stop': '2014-10-15T17:32:00Z', 'Description': 'Simvastatin 10 MG Oral Tablet'}, {'Start': '2014-10-14T17:32:00Z', 'Stop': '2015-03-24T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2014-10-14T17:32:00Z', 'Stop': '2015-03-24T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2014-10-15T17:32:00Z', 'Stop': '2015-10-27T17:32:00Z', 'Description': 'Simvastatin 10 MG Oral Tablet'}, {'Start': '2015-03-24T17:32:00Z', 'Stop': '2015-10-20T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2015-03-24T17:32:00Z', 'Stop': '2015-10-20T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2015-10-20T17:32:00Z', 'Stop': '2016-07-19T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2015-10-20T17:32:00Z', 'Stop': '2016-07-19T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2015-10-27T17:32:00Z', 'Stop': '2016-10-26T17:32:00Z', 'Description': 'Simvastatin 10 MG Oral Tablet'}, {'Start': '2016-07-19T17:32:00Z', 'Stop': '2016-08-16T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2016-07-19T17:32:00Z', 'Stop': '2016-08-16T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2016-08-02T21:09:28Z', 'Stop': '2016-08-02T21:09:28Z', 'Description': 'sodium fluoride 0.0272 MG/MG Oral Gel'}, {'Start': '2016-08-16T17:32:00Z', 'Stop': '2016-10-25T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2016-08-16T17:32:00Z', 'Stop': '2016-10-25T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2016-10-25T17:32:00Z', 'Stop': '2017-08-08T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2016-10-25T17:32:00Z', 'Stop': '2017-08-08T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2016-10-26T17:32:00Z', 'Stop': '2017-11-21T17:32:00Z', 'Description': 'Simvastatin 10 MG Oral Tablet'}, {'Start': '2016-11-08T20:07:12Z', 'Stop': '2016-11-08T20:07:12Z', 'Description': 'sodium fluoride 0.0272 MG/MG Oral Gel'}, {'Start': '2017-08-08T17:32:00Z', 'Stop': '2017-10-31T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2017-08-08T17:32:00Z', 'Stop': '2017-10-31T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2017-10-31T17:32:00Z', 'Stop': '2017-11-07T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2017-10-31T17:32:00Z', 'Stop': '2017-11-07T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2017-11-07T17:32:00Z', 'Stop': '2018-06-05T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2017-11-07T17:32:00Z', 'Stop': '2018-06-05T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2017-11-14T20:30:47Z', 'Stop': '2017-11-14T20:30:47Z', 'Description': 'sodium fluoride 0.0272 MG/MG Oral Gel'}, {'Start': '2017-11-21T17:32:00Z', 'Stop': '2018-11-21T17:32:00Z', 'Description': 'Simvastatin 10 MG Oral Tablet'}, {'Start': '2018-06-05T17:32:00Z', 'Stop': '2018-11-06T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2018-06-05T17:32:00Z', 'Stop': '2018-11-06T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2018-11-06T17:32:00Z', 'Stop': '2018-12-04T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2018-11-06T17:32:00Z', 'Stop': '2018-12-04T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2018-11-21T17:32:00Z', 'Stop': '2019-11-21T17:32:00Z', 'Description': 'Simvastatin 10 MG Oral Tablet'}, {'Start': '2018-12-04T17:32:00Z', 'Stop': '2019-01-01T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2018-12-04T17:32:00Z', 'Stop': '2019-01-01T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2018-12-18T20:36:42Z', 'Stop': '2018-12-18T20:36:42Z', 'Description': 'sodium fluoride 0.0272 MG/MG Oral Gel'}, {'Start': '2019-01-01T17:32:00Z', 'Stop': '2019-01-29T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2019-01-01T17:32:00Z', 'Stop': '2019-01-29T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2019-01-29T17:32:00Z', 'Stop': '2019-06-04T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2019-01-29T17:32:00Z', 'Stop': '2019-06-04T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2019-06-04T17:32:00Z', 'Stop': '2019-11-12T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2019-06-04T17:32:00Z', 'Stop': '2019-11-12T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2019-06-18T20:56:48Z', 'Stop': '2019-06-18T20:56:48Z', 'Description': 'sodium fluoride 0.0272 MG/MG Oral Gel'}, {'Start': '2019-06-28T22:12:53Z', 'Stop': '2019-06-28T22:12:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-07-02T01:30:53Z', 'Stop': '2019-07-02T01:30:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-07-05T05:08:53Z', 'Stop': '2019-07-05T05:08:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-07-08T08:50:53Z', 'Stop': '2019-07-08T08:50:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-07-11T11:34:53Z', 'Stop': '2019-07-11T11:34:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-07-14T13:52:53Z', 'Stop': '2019-07-14T13:52:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-07-17T16:10:53Z', 'Stop': '2019-07-17T16:10:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-07-20T19:50:53Z', 'Stop': '2019-07-20T19:50:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-07-23T22:25:53Z', 'Stop': '2019-07-23T22:25:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-07-27T01:35:53Z', 'Stop': '2019-07-27T01:35:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-07-30T05:28:53Z', 'Stop': '2019-07-30T05:28:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-08-02T07:50:53Z', 'Stop': '2019-08-02T07:50:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-08-05T09:50:53Z', 'Stop': '2019-08-05T09:50:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-08-08T12:21:53Z', 'Stop': '2019-08-08T12:21:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-08-11T15:57:53Z', 'Stop': '2019-08-11T15:57:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-08-14T19:45:53Z', 'Stop': '2019-08-14T19:45:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-08-17T23:07:53Z', 'Stop': '2019-08-17T23:07:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-08-21T02:25:53Z', 'Stop': '2019-08-21T02:25:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-08-24T06:16:53Z', 'Stop': '2019-08-24T06:16:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-08-27T09:20:53Z', 'Stop': '2019-08-27T09:20:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-08-30T12:20:53Z', 'Stop': '2019-08-30T12:20:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-09-02T14:36:53Z', 'Stop': '2019-09-02T14:36:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-09-05T16:48:53Z', 'Stop': '2019-09-05T16:48:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-09-08T19:24:53Z', 'Stop': '2019-09-08T19:24:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-09-11T21:33:53Z', 'Stop': '2019-09-11T21:33:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-09-15T00:26:53Z', 'Stop': '2019-09-15T00:26:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-09-18T02:38:53Z', 'Stop': '2019-09-18T02:38:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-09-21T05:01:53Z', 'Stop': '2019-09-21T05:01:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-09-24T07:06:53Z', 'Stop': '2019-09-24T07:06:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-09-27T10:40:53Z', 'Stop': '2019-09-27T10:40:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-09-30T12:44:53Z', 'Stop': '2019-09-30T12:44:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-10-03T15:56:53Z', 'Stop': '2019-10-03T15:56:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-10-06T19:45:53Z', 'Stop': '2019-10-06T19:45:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-10-09T22:51:53Z', 'Stop': '2019-10-09T22:51:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-10-13T01:05:53Z', 'Stop': '2019-10-13T01:05:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-10-16T03:48:53Z', 'Stop': '2019-10-16T03:48:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-10-19T06:40:53Z', 'Stop': '2019-10-19T06:40:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-10-22T10:06:53Z', 'Stop': '2019-10-22T10:06:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-10-25T12:10:53Z', 'Stop': '2019-10-25T12:10:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-10-28T15:38:53Z', 'Stop': '2019-10-28T15:38:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-10-31T17:59:53Z', 'Stop': '2019-10-31T17:59:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-11-03T21:04:53Z', 'Stop': '2019-11-03T21:04:53Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-11-12T17:32:00Z', 'Stop': '2020-11-17T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2019-11-12T17:32:00Z', 'Stop': '2020-11-17T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2019-11-19T20:41:00Z', 'Stop': '2019-11-19T20:41:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-11-22T23:01:00Z', 'Stop': '2019-11-22T23:01:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-11-26T01:09:00Z', 'Stop': '2019-11-26T01:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-11-21T17:32:00Z', 'Stop': '2020-12-01T17:32:00Z', 'Description': 'Simvastatin 10 MG Oral Tablet'}, {'Start': '2019-12-03T19:56:12Z', 'Stop': '2019-12-03T19:56:12Z', 'Description': 'sodium fluoride 0.0272 MG/MG Oral Gel'}, {'Start': '2019-12-10T20:09:00Z', 'Stop': '2019-12-10T20:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-12-13T22:17:00Z', 'Stop': '2019-12-13T22:17:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-12-17T01:59:00Z', 'Stop': '2019-12-17T01:59:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-12-20T04:14:00Z', 'Stop': '2019-12-20T04:14:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-12-23T06:26:00Z', 'Stop': '2019-12-23T06:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-12-26T08:27:00Z', 'Stop': '2019-12-26T08:27:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2019-12-29T11:45:00Z', 'Stop': '2019-12-29T11:45:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-01-01T15:01:00Z', 'Stop': '2020-01-01T15:01:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-01-04T18:24:00Z', 'Stop': '2020-01-04T18:24:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-01-07T20:42:00Z', 'Stop': '2020-01-07T20:42:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-01-10T23:03:00Z', 'Stop': '2020-01-10T23:03:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-01-14T01:19:00Z', 'Stop': '2020-01-14T01:19:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-01-17T03:24:00Z', 'Stop': '2020-01-17T03:24:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-01-20T07:20:00Z', 'Stop': '2020-01-20T07:20:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-01-23T10:12:00Z', 'Stop': '2020-01-23T10:12:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-01-26T13:13:00Z', 'Stop': '2020-01-26T13:13:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-01-29T15:58:00Z', 'Stop': '2020-01-29T15:58:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-02-01T18:14:00Z', 'Stop': '2020-02-01T18:14:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-02-04T22:02:00Z', 'Stop': '2020-02-04T22:02:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-02-08T00:41:00Z', 'Stop': '2020-02-08T00:41:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-02-11T03:02:00Z', 'Stop': '2020-02-11T03:02:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-02-14T05:40:00Z', 'Stop': '2020-02-14T05:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-02-17T08:11:00Z', 'Stop': '2020-02-17T08:11:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-02-20T10:15:00Z', 'Stop': '2020-02-20T10:15:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-02-23T13:40:00Z', 'Stop': '2020-02-23T13:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-02-26T15:47:00Z', 'Stop': '2020-02-26T15:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-02-29T17:47:00Z', 'Stop': '2020-02-29T17:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-03-03T20:59:00Z', 'Stop': '2020-03-03T20:59:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-03-07T00:09:00Z', 'Stop': '2020-03-07T00:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-03-10T02:26:00Z', 'Stop': '2020-03-10T02:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-03-13T04:41:00Z', 'Stop': '2020-03-13T04:41:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-03-16T08:37:00Z', 'Stop': '2020-03-16T08:37:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-03-19T10:43:00Z', 'Stop': '2020-03-19T10:43:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-03-22T13:20:00Z', 'Stop': '2020-03-22T13:20:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-03-25T16:29:00Z', 'Stop': '2020-03-25T16:29:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-03-28T20:00:00Z', 'Stop': '2020-03-28T20:00:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-03-31T22:01:00Z', 'Stop': '2020-03-31T22:01:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-04-04T00:50:00Z', 'Stop': '2020-04-04T00:50:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-04-07T04:35:00Z', 'Stop': '2020-04-07T04:35:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-04-10T08:14:00Z', 'Stop': '2020-04-10T08:14:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-04-13T10:16:00Z', 'Stop': '2020-04-13T10:16:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-04-16T13:46:00Z', 'Stop': '2020-04-16T13:46:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-04-19T16:23:00Z', 'Stop': '2020-04-19T16:23:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-04-22T19:12:00Z', 'Stop': '2020-04-22T19:12:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-04-25T22:40:00Z', 'Stop': '2020-04-25T22:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-04-29T01:47:00Z', 'Stop': '2020-04-29T01:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-05-02T04:42:00Z', 'Stop': '2020-05-02T04:42:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-05-05T07:15:00Z', 'Stop': '2020-05-05T07:15:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-05-08T09:32:00Z', 'Stop': '2020-05-08T09:32:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-05-11T12:34:00Z', 'Stop': '2020-05-11T12:34:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-05-14T16:07:00Z', 'Stop': '2020-05-14T16:07:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-05-17T18:53:00Z', 'Stop': '2020-05-17T18:53:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-05-20T22:26:00Z', 'Stop': '2020-05-20T22:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-05-24T02:15:00Z', 'Stop': '2020-05-24T02:15:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-05-27T04:31:00Z', 'Stop': '2020-05-27T04:31:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-05-30T06:49:00Z', 'Stop': '2020-05-30T06:49:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-06-02T09:52:00Z', 'Stop': '2020-06-02T09:52:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-06-05T12:48:00Z', 'Stop': '2020-06-05T12:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-06-08T16:01:00Z', 'Stop': '2020-06-08T16:01:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-06-11T18:58:00Z', 'Stop': '2020-06-11T18:58:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-06-14T22:41:00Z', 'Stop': '2020-06-14T22:41:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-06-18T02:10:00Z', 'Stop': '2020-06-18T02:10:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-06-21T06:04:00Z', 'Stop': '2020-06-21T06:04:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-06-24T08:56:00Z', 'Stop': '2020-06-24T08:56:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-06-27T11:09:00Z', 'Stop': '2020-06-27T11:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-06-30T14:17:00Z', 'Stop': '2020-06-30T14:17:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-07-03T16:44:00Z', 'Stop': '2020-07-03T16:44:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-07-06T18:57:00Z', 'Stop': '2020-07-06T18:57:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-07-09T22:02:00Z', 'Stop': '2020-07-09T22:02:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-07-13T01:56:00Z', 'Stop': '2020-07-13T01:56:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-07-16T05:34:00Z', 'Stop': '2020-07-16T05:34:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-07-19T08:19:00Z', 'Stop': '2020-07-19T08:19:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-07-22T11:42:00Z', 'Stop': '2020-07-22T11:42:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-07-25T14:02:00Z', 'Stop': '2020-07-25T14:02:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-07-28T16:54:00Z', 'Stop': '2020-07-28T16:54:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-07-31T19:07:00Z', 'Stop': '2020-07-31T19:07:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-08-03T21:24:00Z', 'Stop': '2020-08-03T21:24:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-08-06T23:51:00Z', 'Stop': '2020-08-06T23:51:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-08-10T02:52:00Z', 'Stop': '2020-08-10T02:52:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-08-13T05:51:00Z', 'Stop': '2020-08-13T05:51:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-08-16T08:46:00Z', 'Stop': '2020-08-16T08:46:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-08-19T11:33:00Z', 'Stop': '2020-08-19T11:33:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-08-22T14:16:00Z', 'Stop': '2020-08-22T14:16:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-08-25T16:26:00Z', 'Stop': '2020-08-25T16:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-08-28T19:15:00Z', 'Stop': '2020-08-28T19:15:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-08-31T21:30:00Z', 'Stop': '2020-08-31T21:30:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-09-04T00:43:00Z', 'Stop': '2020-09-04T00:43:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-09-07T04:40:00Z', 'Stop': '2020-09-07T04:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-09-10T08:20:00Z', 'Stop': '2020-09-10T08:20:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-09-13T11:14:00Z', 'Stop': '2020-09-13T11:14:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-09-16T14:47:00Z', 'Stop': '2020-09-16T14:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-09-19T16:56:00Z', 'Stop': '2020-09-19T16:56:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-09-22T20:19:00Z', 'Stop': '2020-09-22T20:19:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-09-25T23:44:00Z', 'Stop': '2020-09-25T23:44:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-09-29T02:03:00Z', 'Stop': '2020-09-29T02:03:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-10-02T04:09:00Z', 'Stop': '2020-10-02T04:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-10-05T07:42:00Z', 'Stop': '2020-10-05T07:42:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-10-08T11:39:00Z', 'Stop': '2020-10-08T11:39:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-10-11T13:40:00Z', 'Stop': '2020-10-11T13:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-10-14T16:28:00Z', 'Stop': '2020-10-14T16:28:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-10-17T19:09:00Z', 'Stop': '2020-10-17T19:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-10-20T21:57:00Z', 'Stop': '2020-10-20T21:57:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-10-24T01:25:00Z', 'Stop': '2020-10-24T01:25:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-10-27T04:28:00Z', 'Stop': '2020-10-27T04:28:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-10-30T07:54:00Z', 'Stop': '2020-10-30T07:54:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-11-02T11:09:00Z', 'Stop': '2020-11-02T11:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-11-05T14:51:00Z', 'Stop': '2020-11-05T14:51:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-11-08T17:47:00Z', 'Stop': '2020-11-08T17:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-11-17T17:32:00Z', 'Stop': '2021-11-23T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2020-11-17T17:32:00Z', 'Stop': '2021-11-23T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2020-11-24T19:47:00Z', 'Stop': '2020-11-24T19:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-11-27T23:27:00Z', 'Stop': '2020-11-27T23:27:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-12-01T02:15:00Z', 'Stop': '2020-12-01T02:15:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-12-01T17:32:00Z', 'Stop': '2021-12-01T17:32:00Z', 'Description': 'Simvastatin 10 MG Oral Tablet'}, {'Start': '2020-12-04T04:56:00Z', 'Stop': '2020-12-04T04:56:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-12-07T07:34:00Z', 'Stop': '2020-12-07T07:34:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-12-10T11:12:00Z', 'Stop': '2020-12-10T11:12:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-12-13T14:03:00Z', 'Stop': '2020-12-13T14:03:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-12-16T16:36:00Z', 'Stop': '2020-12-16T16:36:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-12-19T18:54:00Z', 'Stop': '2020-12-19T18:54:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-12-22T22:42:00Z', 'Stop': '2020-12-22T22:42:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-12-26T02:09:00Z', 'Stop': '2020-12-26T02:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2020-12-29T04:35:00Z', 'Stop': '2020-12-29T04:35:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-01-01T08:23:00Z', 'Stop': '2021-01-01T08:23:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-01-04T10:51:00Z', 'Stop': '2021-01-04T10:51:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-01-07T13:57:00Z', 'Stop': '2021-01-07T13:57:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-01-10T16:50:00Z', 'Stop': '2021-01-10T16:50:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-01-13T20:15:00Z', 'Stop': '2021-01-13T20:15:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-01-16T22:29:00Z', 'Stop': '2021-01-16T22:29:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-01-20T00:38:00Z', 'Stop': '2021-01-20T00:38:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-01-23T04:09:00Z', 'Stop': '2021-01-23T04:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-01-26T06:53:00Z', 'Stop': '2021-01-26T06:53:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-01-29T08:59:00Z', 'Stop': '2021-01-29T08:59:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-02-01T11:05:00Z', 'Stop': '2021-02-01T11:05:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-02-04T13:39:00Z', 'Stop': '2021-02-04T13:39:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-02-07T17:30:00Z', 'Stop': '2021-02-07T17:30:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-02-10T20:43:00Z', 'Stop': '2021-02-10T20:43:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-02-14T00:38:00Z', 'Stop': '2021-02-14T00:38:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-02-17T04:05:00Z', 'Stop': '2021-02-17T04:05:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-02-20T07:39:00Z', 'Stop': '2021-02-20T07:39:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-02-23T10:46:00Z', 'Stop': '2021-02-23T10:46:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-02-26T13:12:00Z', 'Stop': '2021-02-26T13:12:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-03-01T16:07:00Z', 'Stop': '2021-03-01T16:07:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-03-04T19:05:00Z', 'Stop': '2021-03-04T19:05:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-03-07T21:10:00Z', 'Stop': '2021-03-07T21:10:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-03-10T23:59:00Z', 'Stop': '2021-03-10T23:59:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-03-14T01:59:00Z', 'Stop': '2021-03-14T01:59:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-03-17T05:00:00Z', 'Stop': '2021-03-17T05:00:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-03-20T07:47:00Z', 'Stop': '2021-03-20T07:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-03-23T10:05:00Z', 'Stop': '2021-03-23T10:05:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-03-26T12:50:00Z', 'Stop': '2021-03-26T12:50:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-03-29T15:42:00Z', 'Stop': '2021-03-29T15:42:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-04-01T17:48:00Z', 'Stop': '2021-04-01T17:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-04-04T20:20:00Z', 'Stop': '2021-04-04T20:20:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-04-07T22:21:00Z', 'Stop': '2021-04-07T22:21:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-04-11T01:34:00Z', 'Stop': '2021-04-11T01:34:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-04-14T04:21:00Z', 'Stop': '2021-04-14T04:21:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-04-17T07:37:00Z', 'Stop': '2021-04-17T07:37:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-04-20T11:06:00Z', 'Stop': '2021-04-20T11:06:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-04-23T13:58:00Z', 'Stop': '2021-04-23T13:58:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-04-26T17:22:00Z', 'Stop': '2021-04-26T17:22:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-04-29T20:47:00Z', 'Stop': '2021-04-29T20:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-05-02T23:00:00Z', 'Stop': '2021-05-02T23:00:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-05-06T02:35:00Z', 'Stop': '2021-05-06T02:35:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-05-09T05:16:00Z', 'Stop': '2021-05-09T05:16:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-05-12T08:19:00Z', 'Stop': '2021-05-12T08:19:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-05-15T11:56:00Z', 'Stop': '2021-05-15T11:56:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-05-18T14:26:00Z', 'Stop': '2021-05-18T14:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-05-21T18:19:00Z', 'Stop': '2021-05-21T18:19:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-05-24T20:42:00Z', 'Stop': '2021-05-24T20:42:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-05-27T22:47:00Z', 'Stop': '2021-05-27T22:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-05-31T01:21:00Z', 'Stop': '2021-05-31T01:21:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-06-03T04:34:00Z', 'Stop': '2021-06-03T04:34:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-06-06T07:43:00Z', 'Stop': '2021-06-06T07:43:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-06-09T11:05:00Z', 'Stop': '2021-06-09T11:05:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-06-12T14:48:00Z', 'Stop': '2021-06-12T14:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-06-15T17:16:00Z', 'Stop': '2021-06-15T17:16:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-06-18T20:26:00Z', 'Stop': '2021-06-18T20:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-06-21T23:20:00Z', 'Stop': '2021-06-21T23:20:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-06-25T01:23:00Z', 'Stop': '2021-06-25T01:23:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-06-28T04:55:00Z', 'Stop': '2021-06-28T04:55:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-07-01T08:32:00Z', 'Stop': '2021-07-01T08:32:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-07-04T11:26:00Z', 'Stop': '2021-07-04T11:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-07-07T14:47:00Z', 'Stop': '2021-07-07T14:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-07-10T17:35:00Z', 'Stop': '2021-07-10T17:35:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-07-13T19:46:00Z', 'Stop': '2021-07-13T19:46:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-07-16T22:08:00Z', 'Stop': '2021-07-16T22:08:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-07-20T00:21:00Z', 'Stop': '2021-07-20T00:21:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-07-23T02:45:00Z', 'Stop': '2021-07-23T02:45:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-07-26T05:07:00Z', 'Stop': '2021-07-26T05:07:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-07-29T08:57:00Z', 'Stop': '2021-07-29T08:57:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-08-01T11:41:00Z', 'Stop': '2021-08-01T11:41:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-08-04T14:54:00Z', 'Stop': '2021-08-04T14:54:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-08-07T16:56:00Z', 'Stop': '2021-08-07T16:56:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-08-10T20:41:00Z', 'Stop': '2021-08-10T20:41:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-08-14T00:18:00Z', 'Stop': '2021-08-14T00:18:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-08-17T03:42:00Z', 'Stop': '2021-08-17T03:42:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-08-20T07:40:00Z', 'Stop': '2021-08-20T07:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-08-23T11:31:00Z', 'Stop': '2021-08-23T11:31:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-08-26T15:01:00Z', 'Stop': '2021-08-26T15:01:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-08-29T17:06:00Z', 'Stop': '2021-08-29T17:06:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-09-01T20:47:00Z', 'Stop': '2021-09-01T20:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-09-04T23:45:00Z', 'Stop': '2021-09-04T23:45:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-09-08T03:35:00Z', 'Stop': '2021-09-08T03:35:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-09-11T05:56:00Z', 'Stop': '2021-09-11T05:56:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-09-14T08:00:00Z', 'Stop': '2021-09-14T08:00:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-09-17T11:38:00Z', 'Stop': '2021-09-17T11:38:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-09-20T14:44:00Z', 'Stop': '2021-09-20T14:44:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-09-23T18:31:00Z', 'Stop': '2021-09-23T18:31:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-09-26T22:06:00Z', 'Stop': '2021-09-26T22:06:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-09-30T01:48:00Z', 'Stop': '2021-09-30T01:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-10-03T04:34:00Z', 'Stop': '2021-10-03T04:34:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-10-06T07:33:00Z', 'Stop': '2021-10-06T07:33:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-10-09T10:12:00Z', 'Stop': '2021-10-09T10:12:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-10-12T13:50:00Z', 'Stop': '2021-10-12T13:50:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-10-15T17:12:00Z', 'Stop': '2021-10-15T17:12:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-10-18T19:20:00Z', 'Stop': '2021-10-18T19:20:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-10-21T21:49:00Z', 'Stop': '2021-10-21T21:49:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-10-25T01:07:00Z', 'Stop': '2021-10-25T01:07:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-10-28T03:24:00Z', 'Stop': '2021-10-28T03:24:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-10-31T07:22:00Z', 'Stop': '2021-10-31T07:22:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-11-03T10:23:00Z', 'Stop': '2021-11-03T10:23:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-11-06T13:27:00Z', 'Stop': '2021-11-06T13:27:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-11-09T17:26:00Z', 'Stop': '2021-11-09T17:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-11-12T21:08:00Z', 'Stop': '2021-11-12T21:08:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-11-16T01:04:00Z', 'Stop': '2021-11-16T01:04:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-11-23T17:32:00Z', 'Stop': '2022-04-12T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2021-11-23T17:32:00Z', 'Stop': '2022-04-12T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2021-11-30T20:19:00Z', 'Stop': '2021-11-30T20:19:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-12-03T22:57:00Z', 'Stop': '2021-12-03T22:57:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-12-07T02:44:00Z', 'Stop': '2021-12-07T02:44:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-12-01T17:32:00Z', 'Stop': '2022-12-13T17:32:00Z', 'Description': 'Simvastatin 10 MG Oral Tablet'}, {'Start': '2021-12-10T05:33:00Z', 'Stop': '2021-12-10T05:33:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-12-13T09:06:00Z', 'Stop': '2021-12-13T09:06:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-12-16T13:05:00Z', 'Stop': '2021-12-16T13:05:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-12-19T17:01:00Z', 'Stop': '2021-12-19T17:01:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-12-22T20:25:00Z', 'Stop': '2021-12-22T20:25:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-12-25T23:40:00Z', 'Stop': '2021-12-25T23:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2021-12-29T03:34:00Z', 'Stop': '2021-12-29T03:34:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-01-01T07:06:00Z', 'Stop': '2022-01-01T07:06:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-01-04T09:40:00Z', 'Stop': '2022-01-04T09:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-01-07T13:36:00Z', 'Stop': '2022-01-07T13:36:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-01-10T17:33:00Z', 'Stop': '2022-01-10T17:33:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-01-13T19:47:00Z', 'Stop': '2022-01-13T19:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-01-16T21:52:00Z', 'Stop': '2022-01-16T21:52:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-01-20T00:29:00Z', 'Stop': '2022-01-20T00:29:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-01-23T03:12:00Z', 'Stop': '2022-01-23T03:12:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-01-26T06:31:00Z', 'Stop': '2022-01-26T06:31:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-01-29T09:19:00Z', 'Stop': '2022-01-29T09:19:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-02-01T13:04:00Z', 'Stop': '2022-02-01T13:04:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-02-04T15:21:00Z', 'Stop': '2022-02-04T15:21:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-02-07T18:32:00Z', 'Stop': '2022-02-07T18:32:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-02-10T22:01:00Z', 'Stop': '2022-02-10T22:01:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-02-14T01:10:00Z', 'Stop': '2022-02-14T01:10:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-02-17T04:32:00Z', 'Stop': '2022-02-17T04:32:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-02-20T07:14:00Z', 'Stop': '2022-02-20T07:14:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-02-23T09:32:00Z', 'Stop': '2022-02-23T09:32:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-02-26T12:20:00Z', 'Stop': '2022-02-26T12:20:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-03-01T15:47:00Z', 'Stop': '2022-03-01T15:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-03-04T19:10:00Z', 'Stop': '2022-03-04T19:10:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-03-07T21:50:00Z', 'Stop': '2022-03-07T21:50:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-03-11T00:17:00Z', 'Stop': '2022-03-11T00:17:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-03-14T03:16:00Z', 'Stop': '2022-03-14T03:16:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-03-17T06:30:00Z', 'Stop': '2022-03-17T06:30:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-03-20T10:18:00Z', 'Stop': '2022-03-20T10:18:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-03-23T13:10:00Z', 'Stop': '2022-03-23T13:10:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-03-26T15:50:00Z', 'Stop': '2022-03-26T15:50:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-03-29T18:03:00Z', 'Stop': '2022-03-29T18:03:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-04-01T20:23:00Z', 'Stop': '2022-04-01T20:23:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-04-04T23:27:00Z', 'Stop': '2022-04-04T23:27:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-04-12T17:32:00Z', 'Stop': '2022-04-19T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2022-04-12T17:32:00Z', 'Stop': '2022-04-19T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2022-04-19T17:32:00Z', 'Stop': '2022-04-26T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2022-04-19T17:32:00Z', 'Stop': '2022-04-26T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2022-04-26T17:32:00Z', 'Stop': '2022-11-29T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2022-04-26T17:32:00Z', 'Stop': '2022-11-29T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2022-05-10T19:43:00Z', 'Stop': '2022-05-10T19:43:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-05-13T21:56:00Z', 'Stop': '2022-05-13T21:56:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-05-17T01:32:00Z', 'Stop': '2022-05-17T01:32:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-05-20T04:07:00Z', 'Stop': '2022-05-20T04:07:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-05-23T06:17:00Z', 'Stop': '2022-05-23T06:17:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-05-26T09:08:00Z', 'Stop': '2022-05-26T09:08:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-05-29T12:18:00Z', 'Stop': '2022-05-29T12:18:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-06-01T15:51:00Z', 'Stop': '2022-06-01T15:51:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-06-04T18:14:00Z', 'Stop': '2022-06-04T18:14:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-06-07T20:24:00Z', 'Stop': '2022-06-07T20:24:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-06-10T23:31:00Z', 'Stop': '2022-06-10T23:31:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-06-14T03:15:00Z', 'Stop': '2022-06-14T03:15:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-06-20T09:02:09Z', 'Stop': '2022-06-20T09:02:09Z', 'Description': 'Leucovorin 100 MG Injection'}, {'Start': '2022-06-20T09:02:09Z', 'Stop': '2022-06-20T09:02:09Z', 'Description': '10 ML oxaliplatin 5 MG/ML Injection'}, {'Start': '2022-06-17T07:13:00Z', 'Stop': '2022-06-17T07:13:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-06-20T09:34:00Z', 'Stop': '2022-06-20T09:34:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-06-23T12:19:00Z', 'Stop': '2022-06-23T12:19:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-06-26T15:33:00Z', 'Stop': '2022-06-26T15:33:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-06-29T18:42:00Z', 'Stop': '2022-06-29T18:42:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-07-02T21:06:00Z', 'Stop': '2022-07-02T21:06:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-07-05T23:39:00Z', 'Stop': '2022-07-05T23:39:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-07-09T03:21:00Z', 'Stop': '2022-07-09T03:21:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-07-12T07:08:00Z', 'Stop': '2022-07-12T07:08:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-07-15T10:25:00Z', 'Stop': '2022-07-15T10:25:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-07-18T14:13:00Z', 'Stop': '2022-07-18T14:13:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-07-22T09:02:09Z', 'Stop': '2022-07-22T09:02:09Z', 'Description': 'Leucovorin 100 MG Injection'}, {'Start': '2022-07-22T09:02:09Z', 'Stop': '2022-07-22T09:02:09Z', 'Description': '10 ML oxaliplatin 5 MG/ML Injection'}, {'Start': '2022-07-21T16:17:00Z', 'Stop': '2022-07-21T16:17:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-07-24T19:49:00Z', 'Stop': '2022-07-24T19:49:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-07-27T22:12:00Z', 'Stop': '2022-07-27T22:12:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-07-31T02:11:00Z', 'Stop': '2022-07-31T02:11:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-08-03T04:57:00Z', 'Stop': '2022-08-03T04:57:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-08-06T08:16:00Z', 'Stop': '2022-08-06T08:16:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-08-09T11:54:00Z', 'Stop': '2022-08-09T11:54:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-08-12T14:56:00Z', 'Stop': '2022-08-12T14:56:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-08-15T17:16:00Z', 'Stop': '2022-08-15T17:16:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-08-23T00:02:09Z', 'Stop': '2022-08-23T00:02:09Z', 'Description': 'Leucovorin 100 MG Injection'}, {'Start': '2022-08-23T00:02:09Z', 'Stop': '2022-08-23T00:02:09Z', 'Description': '10 ML oxaliplatin 5 MG/ML Injection'}, {'Start': '2022-08-18T20:47:00Z', 'Stop': '2022-08-18T20:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-08-21T23:39:00Z', 'Stop': '2022-08-21T23:39:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-08-25T02:44:00Z', 'Stop': '2022-08-25T02:44:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-08-28T05:53:00Z', 'Stop': '2022-08-28T05:53:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-08-31T08:34:00Z', 'Stop': '2022-08-31T08:34:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-09-03T11:19:00Z', 'Stop': '2022-09-03T11:19:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-09-06T13:47:00Z', 'Stop': '2022-09-06T13:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-09-09T16:10:00Z', 'Stop': '2022-09-09T16:10:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-09-12T19:49:00Z', 'Stop': '2022-09-12T19:49:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-09-15T23:47:00Z', 'Stop': '2022-09-15T23:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-09-19T02:28:00Z', 'Stop': '2022-09-19T02:28:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-09-24T19:02:09Z', 'Stop': '2022-09-24T19:02:09Z', 'Description': 'Leucovorin 100 MG Injection'}, {'Start': '2022-09-24T19:02:09Z', 'Stop': '2022-09-24T19:02:09Z', 'Description': '10 ML oxaliplatin 5 MG/ML Injection'}, {'Start': '2022-09-22T04:28:00Z', 'Stop': '2022-09-22T04:28:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-09-25T06:37:00Z', 'Stop': '2022-09-25T06:37:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-09-28T10:36:00Z', 'Stop': '2022-09-28T10:36:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-10-01T13:38:00Z', 'Stop': '2022-10-01T13:38:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-10-04T16:38:00Z', 'Stop': '2022-10-04T16:38:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-10-07T20:04:00Z', 'Stop': '2022-10-07T20:04:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-10-10T23:57:00Z', 'Stop': '2022-10-10T23:57:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-10-14T02:24:00Z', 'Stop': '2022-10-14T02:24:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-10-17T05:06:00Z', 'Stop': '2022-10-17T05:06:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-10-23T09:02:09Z', 'Stop': '2022-10-23T09:02:09Z', 'Description': 'Leucovorin 100 MG Injection'}, {'Start': '2022-10-23T09:02:09Z', 'Stop': '2022-10-23T09:02:09Z', 'Description': '10 ML oxaliplatin 5 MG/ML Injection'}, {'Start': '2022-10-20T09:04:00Z', 'Stop': '2022-10-20T09:04:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-10-23T11:18:00Z', 'Stop': '2022-10-23T11:18:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-10-26T13:49:00Z', 'Stop': '2022-10-26T13:49:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-10-29T15:52:00Z', 'Stop': '2022-10-29T15:52:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-11-01T19:03:00Z', 'Stop': '2022-11-01T19:03:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-11-04T21:41:00Z', 'Stop': '2022-11-04T21:41:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-11-07T23:45:00Z', 'Stop': '2022-11-07T23:45:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-11-11T01:47:00Z', 'Stop': '2022-11-11T01:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-11-14T05:34:00Z', 'Stop': '2022-11-14T05:34:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-11-17T08:02:00Z', 'Stop': '2022-11-17T08:02:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-11-20T11:08:00Z', 'Stop': '2022-11-20T11:08:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-11-29T17:32:00Z', 'Stop': '2023-02-07T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2022-11-29T17:32:00Z', 'Stop': '2023-02-07T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2022-12-06T17:32:00Z', 'Stop': '2022-12-06T17:32:00Z', 'Description': 'Leucovorin 100 MG Injection'}, {'Start': '2022-12-06T17:32:00Z', 'Stop': '2022-12-06T17:32:00Z', 'Description': '10 ML oxaliplatin 5 MG/ML Injection'}, {'Start': '2022-12-06T21:19:00Z', 'Stop': '2022-12-06T21:19:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-12-09T23:54:00Z', 'Stop': '2022-12-09T23:54:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-12-13T03:21:00Z', 'Stop': '2022-12-13T03:21:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-12-13T17:32:00Z', 'Stop': '2024-01-02T17:32:00Z', 'Description': 'Simvastatin 10 MG Oral Tablet'}, {'Start': '2022-12-16T07:19:00Z', 'Stop': '2022-12-16T07:19:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-12-19T09:43:00Z', 'Stop': '2022-12-19T09:43:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-12-22T12:46:00Z', 'Stop': '2022-12-22T12:46:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-12-25T15:13:00Z', 'Stop': '2022-12-25T15:13:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-12-28T17:18:00Z', 'Stop': '2022-12-28T17:18:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2022-12-31T20:51:00Z', 'Stop': '2022-12-31T20:51:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-01-04T00:23:00Z', 'Stop': '2023-01-04T00:23:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-01-07T04:15:00Z', 'Stop': '2023-01-07T04:15:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-01-10T07:50:00Z', 'Stop': '2023-01-10T07:50:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-01-13T10:11:00Z', 'Stop': '2023-01-13T10:11:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-01-16T13:25:00Z', 'Stop': '2023-01-16T13:25:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-01-19T17:00:00Z', 'Stop': '2023-01-19T17:00:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-01-22T19:05:00Z', 'Stop': '2023-01-22T19:05:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-01-25T22:09:00Z', 'Stop': '2023-01-25T22:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-01-29T00:28:00Z', 'Stop': '2023-01-29T00:28:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-02-07T17:32:00Z', 'Stop': '2023-12-05T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2023-02-07T17:32:00Z', 'Stop': '2023-12-05T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2023-02-14T19:35:00Z', 'Stop': '2023-02-14T19:35:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-02-17T22:40:00Z', 'Stop': '2023-02-17T22:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-02-21T02:01:00Z', 'Stop': '2023-02-21T02:01:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-03-07T21:09:00Z', 'Stop': '2023-03-07T21:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-03-11T00:50:00Z', 'Stop': '2023-03-11T00:50:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-03-14T03:53:00Z', 'Stop': '2023-03-14T03:53:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-03-17T06:41:00Z', 'Stop': '2023-03-17T06:41:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-03-20T09:44:00Z', 'Stop': '2023-03-20T09:44:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-03-23T12:05:00Z', 'Stop': '2023-03-23T12:05:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-03-26T14:35:00Z', 'Stop': '2023-03-26T14:35:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-03-29T18:06:00Z', 'Stop': '2023-03-29T18:06:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-04-01T21:46:00Z', 'Stop': '2023-04-01T21:46:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-04-05T00:18:00Z', 'Stop': '2023-04-05T00:18:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-04-08T02:38:00Z', 'Stop': '2023-04-08T02:38:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-04-11T06:22:00Z', 'Stop': '2023-04-11T06:22:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-04-14T10:11:00Z', 'Stop': '2023-04-14T10:11:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-04-17T13:50:00Z', 'Stop': '2023-04-17T13:50:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-04-20T17:26:00Z', 'Stop': '2023-04-20T17:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-04-23T20:03:00Z', 'Stop': '2023-04-23T20:03:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-04-26T22:22:00Z', 'Stop': '2023-04-26T22:22:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-04-30T01:07:00Z', 'Stop': '2023-04-30T01:07:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-05-03T04:26:00Z', 'Stop': '2023-05-03T04:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-05-06T06:40:00Z', 'Stop': '2023-05-06T06:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-05-09T10:26:00Z', 'Stop': '2023-05-09T10:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-05-12T13:05:00Z', 'Stop': '2023-05-12T13:05:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-05-15T15:37:00Z', 'Stop': '2023-05-15T15:37:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-05-18T17:40:00Z', 'Stop': '2023-05-18T17:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-05-21T19:50:00Z', 'Stop': '2023-05-21T19:50:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-05-24T22:04:00Z', 'Stop': '2023-05-24T22:04:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-05-28T00:48:00Z', 'Stop': '2023-05-28T00:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-05-31T03:52:00Z', 'Stop': '2023-05-31T03:52:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-06-03T07:44:00Z', 'Stop': '2023-06-03T07:44:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-06-06T10:01:00Z', 'Stop': '2023-06-06T10:01:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-06-09T12:26:00Z', 'Stop': '2023-06-09T12:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-06-12T15:31:00Z', 'Stop': '2023-06-12T15:31:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-06-15T17:59:00Z', 'Stop': '2023-06-15T17:59:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-06-18T20:46:00Z', 'Stop': '2023-06-18T20:46:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-06-22T00:00:00Z', 'Stop': '2023-06-22T00:00:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-06-25T02:47:00Z', 'Stop': '2023-06-25T02:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-06-28T05:30:00Z', 'Stop': '2023-06-28T05:30:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-07-01T08:57:00Z', 'Stop': '2023-07-01T08:57:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-07-04T11:31:00Z', 'Stop': '2023-07-04T11:31:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-07-07T13:48:00Z', 'Stop': '2023-07-07T13:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-07-10T16:31:00Z', 'Stop': '2023-07-10T16:31:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-07-13T20:10:00Z', 'Stop': '2023-07-13T20:10:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-07-16T22:19:00Z', 'Stop': '2023-07-16T22:19:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-07-20T01:59:00Z', 'Stop': '2023-07-20T01:59:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-07-23T04:07:00Z', 'Stop': '2023-07-23T04:07:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-07-26T07:31:00Z', 'Stop': '2023-07-26T07:31:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-07-29T09:57:00Z', 'Stop': '2023-07-29T09:57:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-08-01T12:41:00Z', 'Stop': '2023-08-01T12:41:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-08-04T15:40:00Z', 'Stop': '2023-08-04T15:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-08-07T18:22:00Z', 'Stop': '2023-08-07T18:22:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-08-10T21:48:00Z', 'Stop': '2023-08-10T21:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-08-14T00:53:00Z', 'Stop': '2023-08-14T00:53:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-08-17T04:34:00Z', 'Stop': '2023-08-17T04:34:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-08-20T08:20:00Z', 'Stop': '2023-08-20T08:20:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-08-23T11:41:00Z', 'Stop': '2023-08-23T11:41:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-08-26T14:46:00Z', 'Stop': '2023-08-26T14:46:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-08-29T17:37:00Z', 'Stop': '2023-08-29T17:37:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-09-01T20:47:00Z', 'Stop': '2023-09-01T20:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-09-04T23:07:00Z', 'Stop': '2023-09-04T23:07:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-09-08T02:26:00Z', 'Stop': '2023-09-08T02:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-09-11T04:47:00Z', 'Stop': '2023-09-11T04:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-09-14T07:29:00Z', 'Stop': '2023-09-14T07:29:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-09-17T10:09:00Z', 'Stop': '2023-09-17T10:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-09-20T13:51:00Z', 'Stop': '2023-09-20T13:51:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-09-23T17:48:00Z', 'Stop': '2023-09-23T17:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-09-26T21:28:00Z', 'Stop': '2023-09-26T21:28:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-09-29T23:44:00Z', 'Stop': '2023-09-29T23:44:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-10-03T03:43:00Z', 'Stop': '2023-10-03T03:43:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-10-06T07:21:00Z', 'Stop': '2023-10-06T07:21:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-10-09T11:09:00Z', 'Stop': '2023-10-09T11:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-10-12T14:21:00Z', 'Stop': '2023-10-12T14:21:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-10-15T18:20:00Z', 'Stop': '2023-10-15T18:20:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-10-18T21:03:00Z', 'Stop': '2023-10-18T21:03:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-10-21T23:26:00Z', 'Stop': '2023-10-21T23:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-10-25T03:02:00Z', 'Stop': '2023-10-25T03:02:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-10-28T06:45:00Z', 'Stop': '2023-10-28T06:45:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-10-31T10:11:00Z', 'Stop': '2023-10-31T10:11:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-11-03T13:06:00Z', 'Stop': '2023-11-03T13:06:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-11-06T15:36:00Z', 'Stop': '2023-11-06T15:36:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-11-09T18:14:00Z', 'Stop': '2023-11-09T18:14:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-11-12T20:40:00Z', 'Stop': '2023-11-12T20:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-11-15T22:49:00Z', 'Stop': '2023-11-15T22:49:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-11-19T01:39:00Z', 'Stop': '2023-11-19T01:39:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-11-22T03:48:00Z', 'Stop': '2023-11-22T03:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-11-25T06:18:00Z', 'Stop': '2023-11-25T06:18:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-11-28T09:06:00Z', 'Stop': '2023-11-28T09:06:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-12-05T17:32:00Z', 'Stop': '2023-12-12T17:32:00Z', 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2023-12-05T17:32:00Z', 'Stop': '2023-12-12T17:32:00Z', 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2023-12-12T17:32:00Z', 'Stop': None, 'Description': 'Hydrochlorothiazide 25 MG Oral Tablet'}, {'Start': '2023-12-12T17:32:00Z', 'Stop': None, 'Description': 'lisinopril 10 MG Oral Tablet'}, {'Start': '2023-12-19T19:49:28Z', 'Stop': '2023-12-19T19:49:28Z', 'Description': 'sodium fluoride 0.0272 MG/MG Oral Gel'}, {'Start': '2023-12-26T21:09:00Z', 'Stop': '2023-12-26T21:09:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2023-12-30T00:51:00Z', 'Stop': '2023-12-30T00:51:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-01-02T03:21:00Z', 'Stop': '2024-01-02T03:21:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-01-02T17:32:00Z', 'Stop': None, 'Description': 'Simvastatin 10 MG Oral Tablet'}, {'Start': '2024-01-05T05:27:00Z', 'Stop': '2024-01-05T05:27:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-01-08T08:10:00Z', 'Stop': '2024-01-08T08:10:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-01-11T10:36:00Z', 'Stop': '2024-01-11T10:36:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-01-14T14:08:00Z', 'Stop': '2024-01-14T14:08:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-01-17T16:55:00Z', 'Stop': '2024-01-17T16:55:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-01-20T19:36:00Z', 'Stop': '2024-01-20T19:36:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-01-23T22:48:00Z', 'Stop': '2024-01-23T22:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-01-27T02:18:00Z', 'Stop': '2024-01-27T02:18:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-01-30T04:41:00Z', 'Stop': '2024-01-30T04:41:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-02-02T08:05:00Z', 'Stop': '2024-02-02T08:05:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-02-05T11:07:00Z', 'Stop': '2024-02-05T11:07:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-02-08T14:45:00Z', 'Stop': '2024-02-08T14:45:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-02-11T18:30:00Z', 'Stop': '2024-02-11T18:30:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-02-14T22:22:00Z', 'Stop': '2024-02-14T22:22:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-02-18T01:56:00Z', 'Stop': '2024-02-18T01:56:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-02-21T04:47:00Z', 'Stop': '2024-02-21T04:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-02-24T07:26:00Z', 'Stop': '2024-02-24T07:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-02-27T10:57:00Z', 'Stop': '2024-02-27T10:57:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-03-01T14:41:00Z', 'Stop': '2024-03-01T14:41:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-03-04T17:35:00Z', 'Stop': '2024-03-04T17:35:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-03-07T20:48:00Z', 'Stop': '2024-03-07T20:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-03-10T23:26:00Z', 'Stop': '2024-03-10T23:26:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-03-14T02:55:00Z', 'Stop': '2024-03-14T02:55:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-03-17T06:32:00Z', 'Stop': '2024-03-17T06:32:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-03-20T09:48:00Z', 'Stop': '2024-03-20T09:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-03-23T12:35:00Z', 'Stop': '2024-03-23T12:35:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-03-26T14:57:00Z', 'Stop': '2024-03-26T14:57:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-03-29T17:30:00Z', 'Stop': '2024-03-29T17:30:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-04-01T20:30:00Z', 'Stop': '2024-04-01T20:30:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-04-04T23:55:00Z', 'Stop': '2024-04-04T23:55:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-04-08T02:16:00Z', 'Stop': '2024-04-08T02:16:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-04-11T04:54:00Z', 'Stop': '2024-04-11T04:54:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-04-14T07:01:00Z', 'Stop': '2024-04-14T07:01:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-04-17T10:25:00Z', 'Stop': '2024-04-17T10:25:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-04-20T14:24:00Z', 'Stop': '2024-04-20T14:24:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-04-23T17:54:00Z', 'Stop': '2024-04-23T17:54:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-04-26T20:23:00Z', 'Stop': '2024-04-26T20:23:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-04-29T22:40:00Z', 'Stop': '2024-04-29T22:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-05-03T01:37:00Z', 'Stop': '2024-05-03T01:37:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-05-06T03:46:00Z', 'Stop': '2024-05-06T03:46:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-05-09T06:37:00Z', 'Stop': '2024-05-09T06:37:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-05-12T09:59:00Z', 'Stop': '2024-05-12T09:59:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-05-15T13:07:00Z', 'Stop': '2024-05-15T13:07:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-05-18T16:11:00Z', 'Stop': '2024-05-18T16:11:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-05-21T19:43:00Z', 'Stop': '2024-05-21T19:43:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-05-24T22:36:00Z', 'Stop': '2024-05-24T22:36:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-05-28T01:18:00Z', 'Stop': '2024-05-28T01:18:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-05-31T04:10:00Z', 'Stop': '2024-05-31T04:10:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-06-03T06:29:00Z', 'Stop': '2024-06-03T06:29:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-06-06T09:27:00Z', 'Stop': '2024-06-06T09:27:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-06-09T11:56:00Z', 'Stop': '2024-06-09T11:56:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-06-12T14:38:00Z', 'Stop': '2024-06-12T14:38:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-06-15T18:35:00Z', 'Stop': '2024-06-15T18:35:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-06-18T21:13:00Z', 'Stop': '2024-06-18T21:13:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-06-22T00:49:00Z', 'Stop': '2024-06-22T00:49:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-06-25T03:57:00Z', 'Stop': '2024-06-25T03:57:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-06-28T06:43:00Z', 'Stop': '2024-06-28T06:43:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-07-01T10:05:00Z', 'Stop': '2024-07-01T10:05:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-07-04T13:20:00Z', 'Stop': '2024-07-04T13:20:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-07-07T15:48:00Z', 'Stop': '2024-07-07T15:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-07-10T19:01:00Z', 'Stop': '2024-07-10T19:01:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-07-13T22:05:00Z', 'Stop': '2024-07-13T22:05:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-07-17T00:20:00Z', 'Stop': '2024-07-17T00:20:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-07-20T03:48:00Z', 'Stop': '2024-07-20T03:48:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-07-23T05:55:00Z', 'Stop': '2024-07-23T05:55:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-07-26T08:32:00Z', 'Stop': '2024-07-26T08:32:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-07-29T10:39:00Z', 'Stop': '2024-07-29T10:39:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-08-01T14:21:00Z', 'Stop': '2024-08-01T14:21:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-08-04T16:47:00Z', 'Stop': '2024-08-04T16:47:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-08-07T20:33:00Z', 'Stop': '2024-08-07T20:33:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-08-10T23:22:00Z', 'Stop': '2024-08-10T23:22:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-08-14T02:49:00Z', 'Stop': '2024-08-14T02:49:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-08-17T05:28:00Z', 'Stop': '2024-08-17T05:28:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-08-20T07:40:00Z', 'Stop': '2024-08-20T07:40:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-08-23T10:00:00Z', 'Stop': '2024-08-23T10:00:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-08-26T12:59:00Z', 'Stop': '2024-08-26T12:59:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-08-29T16:42:00Z', 'Stop': '2024-08-29T16:42:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}, {'Start': '2024-09-01T18:57:00Z', 'Stop': '2024-09-01T18:57:00Z', 'Description': '1 ML Epoetin Alfa 4000 UNT/ML Injection [Epogen]'}], 'Diagnostic Results': [{'Start': '2014-10-14T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2014-10-14T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2014-10-14T18:29:48Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2014-10-14T19:03:34Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2014-10-15T17:32:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2014-10-15T17:32:00Z', 'Stop': None, 'Description': 'Lipid panel with direct LDL - Serum or Plasma'}, {'Start': '2015-03-24T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2015-03-24T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2015-03-24T18:18:56Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2015-03-24T18:55:44Z', 'Stop': None, 'Description': 'Humiliation, Afraid, Rape, and Kick questionnaire [HARK]'}, {'Start': '2015-03-24T19:34:22Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2015-03-24T20:14:28Z', 'Stop': None, 'Description': 'Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]'}, {'Start': '2015-10-20T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2015-10-20T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2015-10-20T18:35:59Z', 'Stop': None, 'Description': 'Drug Abuse Screening Test-10 [DAST-10]'}, {'Start': '2015-10-27T17:32:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2015-10-27T17:32:00Z', 'Stop': None, 'Description': 'Lipid panel with direct LDL - Serum or Plasma'}, {'Start': '2016-07-19T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2016-07-19T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2016-07-19T18:46:33Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2016-07-19T19:17:29Z', 'Stop': None, 'Description': 'Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]'}, {'Start': '2016-08-16T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2016-08-16T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2016-08-16T19:01:34Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2016-08-16T19:41:44Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2016-10-25T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2016-10-25T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2016-10-25T17:32:00Z', 'Stop': None, 'Description': 'Lipid panel with direct LDL - Serum or Plasma'}, {'Start': '2016-10-25T18:58:56Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2016-10-25T19:40:59Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2016-10-26T17:32:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2016-10-26T17:32:00Z', 'Stop': None, 'Description': 'Lipid panel with direct LDL - Serum or Plasma'}, {'Start': '2017-08-08T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2017-08-08T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2017-08-08T19:06:33Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2017-08-08T19:45:30Z', 'Stop': None, 'Description': 'Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]'}, {'Start': '2017-10-31T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2017-10-31T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2017-10-31T18:43:26Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2017-10-31T19:17:20Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2017-11-07T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2017-11-07T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2017-11-21T17:32:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2017-11-21T17:32:00Z', 'Stop': None, 'Description': 'Lipid panel with direct LDL - Serum or Plasma'}, {'Start': '2018-06-05T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2018-06-05T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2018-06-05T18:57:33Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2018-06-05T19:31:51Z', 'Stop': None, 'Description': 'Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]'}, {'Start': '2018-11-06T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2018-11-06T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2018-11-06T17:32:00Z', 'Stop': None, 'Description': 'CBC panel - Blood by Automated count'}, {'Start': '2018-11-06T18:36:16Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2018-11-06T19:01:39Z', 'Stop': None, 'Description': 'Morse Fall Scale panel'}, {'Start': '2018-11-06T19:34:53Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2018-11-06T20:16:45Z', 'Stop': None, 'Description': 'Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]'}, {'Start': '2018-11-21T17:32:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2018-11-21T17:32:00Z', 'Stop': None, 'Description': 'Lipid panel with direct LDL - Serum or Plasma'}, {'Start': '2018-12-04T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2018-12-04T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2018-12-04T18:46:33Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2018-12-04T19:02:58Z', 'Stop': None, 'Description': 'Morse Fall Scale panel'}, {'Start': '2018-12-04T19:38:04Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2019-01-01T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2019-01-01T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2019-01-01T18:58:56Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2019-01-01T19:20:30Z', 'Stop': None, 'Description': 'Morse Fall Scale panel'}, {'Start': '2019-01-01T19:51:54Z', 'Stop': None, 'Description': 'Humiliation, Afraid, Rape, and Kick questionnaire [HARK]'}, {'Start': '2019-01-01T20:25:20Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2019-01-01T21:01:21Z', 'Stop': None, 'Description': 'Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]'}, {'Start': '2019-01-29T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2019-01-29T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2019-01-29T18:20:01Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2019-01-29T18:47:55Z', 'Stop': None, 'Description': 'Morse Fall Scale panel'}, {'Start': '2019-01-29T19:22:59Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2019-01-29T19:52:50Z', 'Stop': None, 'Description': 'PHQ-9 quick depression assessment panel [Reported.PHQ]'}, {'Start': '2019-01-29T20:28:57Z', 'Stop': None, 'Description': 'Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]'}, {'Start': '2019-06-04T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2019-06-04T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2019-06-04T18:49:55Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2019-06-04T19:07:10Z', 'Stop': None, 'Description': 'Morse Fall Scale panel'}, {'Start': '2019-06-04T19:34:25Z', 'Stop': None, 'Description': 'Humiliation, Afraid, Rape, and Kick questionnaire [HARK]'}, {'Start': '2019-06-04T20:15:08Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2019-06-04T20:58:53Z', 'Stop': None, 'Description': 'Drug Abuse Screening Test-10 [DAST-10]'}, {'Start': '2019-06-25T17:32:00Z', 'Stop': None, 'Description': 'CBC panel - Blood by Automated count'}, {'Start': '2019-06-28T22:12:53Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2019-06-28T22:12:53Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2019-07-30T05:28:53Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2019-07-30T05:28:53Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2019-08-30T12:20:53Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2019-08-30T12:20:53Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2019-09-23T17:32:00Z', 'Stop': None, 'Description': 'Basic Metabolic 2000 Panel'}, {'Start': '2019-09-23T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2019-09-30T12:44:53Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2019-09-30T12:44:53Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2019-10-31T17:59:53Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2019-10-31T17:59:53Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2019-11-12T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2019-11-12T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2019-11-12T17:32:00Z', 'Stop': None, 'Description': 'Lipid panel with direct LDL - Serum or Plasma'}, {'Start': '2019-11-12T18:34:05Z', 'Stop': None, 'Description': 'Morse Fall Scale panel'}, {'Start': '2019-11-12T19:02:29Z', 'Stop': None, 'Description': 'Humiliation, Afraid, Rape, and Kick questionnaire [HARK]'}, {'Start': '2019-11-12T19:38:16Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2019-11-12T20:09:14Z', 'Stop': None, 'Description': 'Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]'}, {'Start': '2019-11-21T17:32:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2019-11-21T17:32:00Z', 'Stop': None, 'Description': 'Lipid panel with direct LDL - Serum or Plasma'}, {'Start': '2019-12-10T20:09:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2019-12-10T20:09:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2020-01-10T23:03:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-01-10T23:03:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2020-02-11T03:02:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-02-11T03:02:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2020-03-13T04:41:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-03-13T04:41:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2020-04-13T10:16:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-04-13T10:16:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2020-05-14T16:07:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-05-14T16:07:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2020-06-14T22:41:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-06-14T22:41:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2020-07-16T05:34:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-07-16T05:34:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2020-08-16T08:46:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-08-16T08:46:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2020-09-16T14:47:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-09-16T14:47:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2020-10-17T19:09:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-10-17T19:09:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2020-11-17T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-11-17T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2020-11-17T18:39:10Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2020-11-17T18:55:01Z', 'Stop': None, 'Description': 'Morse Fall Scale panel'}, {'Start': '2020-11-17T19:32:46Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2020-11-17T20:15:29Z', 'Stop': None, 'Description': 'Drug Abuse Screening Test-10 [DAST-10]'}, {'Start': '2020-11-24T19:47:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-11-24T19:47:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2020-12-01T17:32:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-12-01T17:32:00Z', 'Stop': None, 'Description': 'Lipid panel with direct LDL - Serum or Plasma'}, {'Start': '2020-12-26T02:09:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2020-12-26T02:09:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2021-01-22T17:44:47Z', 'Stop': None, 'Description': 'Respiratory pathogens DNA and RNA panel - Respiratory specimen by NAA with probe detection'}, {'Start': '2021-01-22T19:13:37Z', 'Stop': None, 'Description': 'SARS-CoV-2 RNA Pnl Resp NAA+probe'}, {'Start': '2021-01-26T06:53:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2021-01-26T06:53:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2021-02-26T13:12:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2021-02-26T13:12:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2021-03-29T15:42:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2021-03-29T15:42:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2021-04-29T20:47:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2021-04-29T20:47:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2021-05-31T01:21:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2021-05-31T01:21:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2021-07-01T08:32:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2021-07-01T08:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2021-08-01T11:41:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2021-08-01T11:41:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2021-09-01T20:47:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2021-09-01T20:47:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2021-10-03T04:34:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2021-10-03T04:34:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2021-11-03T10:23:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2021-11-03T10:23:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2021-11-23T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2021-11-23T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2021-11-23T18:36:19Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2021-11-23T19:03:27Z', 'Stop': None, 'Description': 'Morse Fall Scale panel'}, {'Start': '2021-11-23T19:44:38Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2021-12-03T22:57:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2021-12-03T22:57:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2021-12-01T17:32:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2021-12-01T17:32:00Z', 'Stop': None, 'Description': 'Lipid panel with direct LDL - Serum or Plasma'}, {'Start': '2022-01-04T09:40:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-01-04T09:40:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-02-04T15:21:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-02-04T15:21:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-03-07T21:50:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-03-07T21:50:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-04-12T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-04-12T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-04-12T19:04:33Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2022-04-12T19:46:37Z', 'Stop': None, 'Description': 'Drug Abuse Screening Test-10 [DAST-10]'}, {'Start': '2022-04-19T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-04-19T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-04-26T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-04-26T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-04-26T18:44:41Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2022-04-26T19:17:59Z', 'Stop': None, 'Description': 'Humiliation, Afraid, Rape, and Kick questionnaire [HARK]'}, {'Start': '2022-04-26T19:57:33Z', 'Stop': None, 'Description': 'Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]'}, {'Start': '2022-05-10T19:43:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-05-10T19:43:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-06-10T23:31:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-06-10T23:31:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-06-20T09:02:09Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-06-20T09:02:09Z', 'Stop': None, 'Description': 'CBC panel - Blood by Automated count'}, {'Start': '2022-07-12T07:08:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-07-12T07:08:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-07-22T09:02:09Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-07-22T09:02:09Z', 'Stop': None, 'Description': 'CBC panel - Blood by Automated count'}, {'Start': '2022-08-12T14:56:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-08-12T14:56:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-08-23T00:02:09Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-08-23T00:02:09Z', 'Stop': None, 'Description': 'CBC panel - Blood by Automated count'}, {'Start': '2022-09-12T19:49:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-09-12T19:49:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-09-24T19:02:09Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-09-24T19:02:09Z', 'Stop': None, 'Description': 'CBC panel - Blood by Automated count'}, {'Start': '2022-10-14T02:24:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-10-14T02:24:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-10-23T09:02:09Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-10-23T09:02:09Z', 'Stop': None, 'Description': 'CBC panel - Blood by Automated count'}, {'Start': '2022-11-14T05:34:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-11-14T05:34:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-11-29T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-11-29T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2022-11-29T17:32:00Z', 'Stop': None, 'Description': 'Lipid panel with direct LDL - Serum or Plasma'}, {'Start': '2022-11-29T18:46:49Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2022-11-29T19:11:50Z', 'Stop': None, 'Description': 'Morse Fall Scale panel'}, {'Start': '2022-11-29T19:47:24Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2022-11-29T20:29:08Z', 'Stop': None, 'Description': 'Drug Abuse Screening Test-10 [DAST-10]'}, {'Start': '2022-12-06T17:32:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-12-06T17:32:00Z', 'Stop': None, 'Description': 'CBC panel - Blood by Automated count'}, {'Start': '2022-12-13T17:32:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-12-13T17:32:00Z', 'Stop': None, 'Description': 'Lipid panel with direct LDL - Serum or Plasma'}, {'Start': '2022-12-16T07:19:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2022-12-16T07:19:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-01-16T13:25:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-01-16T13:25:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-02-07T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-02-07T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-02-07T18:41:09Z', 'Stop': None, 'Description': 'Morse Fall Scale panel'}, {'Start': '2023-02-07T19:06:40Z', 'Stop': None, 'Description': 'Humiliation, Afraid, Rape, and Kick questionnaire [HARK]'}, {'Start': '2023-02-07T19:45:51Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2023-02-07T20:24:41Z', 'Stop': None, 'Description': 'Alcohol Use Disorder Identification Test - Consumption [AUDIT-C]'}, {'Start': '2023-02-17T22:40:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-02-17T22:40:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-03-20T09:44:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-03-20T09:44:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-04-20T17:26:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-04-20T17:26:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-05-21T19:50:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-05-21T19:50:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-06-22T00:00:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-06-22T00:00:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-07-23T04:07:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-07-23T04:07:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-08-23T11:41:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-08-23T11:41:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-09-23T17:48:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-09-23T17:48:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-10-25T03:02:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-10-25T03:02:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-11-25T06:18:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-11-25T06:18:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-12-05T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-12-05T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-12-05T17:32:00Z', 'Stop': None, 'Description': 'CBC panel - Blood by Automated count'}, {'Start': '2023-12-05T18:35:35Z', 'Stop': None, 'Description': 'Generalized anxiety disorder 7 item (GAD-7)'}, {'Start': '2023-12-05T19:19:20Z', 'Stop': None, 'Description': 'Patient Health Questionnaire 2 item (PHQ-2) [Reported]'}, {'Start': '2023-12-05T19:39:59Z', 'Stop': None, 'Description': 'PHQ-9 quick depression assessment panel [Reported.PHQ]'}, {'Start': '2023-12-05T20:21:42Z', 'Stop': None, 'Description': 'Drug Abuse Screening Test-10 [DAST-10]'}, {'Start': '2023-12-12T17:32:00Z', 'Stop': None, 'Description': 'Basic metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-12-12T17:32:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2023-12-26T21:09:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2023-12-26T21:09:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2024-01-02T17:32:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2024-01-02T17:32:00Z', 'Stop': None, 'Description': 'Lipid panel with direct LDL - Serum or Plasma'}, {'Start': '2024-01-27T02:18:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2024-01-27T02:18:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2024-02-27T10:57:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2024-02-27T10:57:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2024-03-29T17:30:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2024-03-29T17:30:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2024-04-29T22:40:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2024-04-29T22:40:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2024-05-31T04:10:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2024-05-31T04:10:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2024-07-01T10:05:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2024-07-01T10:05:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2024-08-01T14:21:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2024-08-01T14:21:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}, {'Start': '2024-09-01T18:57:00Z', 'Stop': None, 'Description': 'Comprehensive metabolic 2000 panel - Serum or Plasma'}, {'Start': '2024-09-01T18:57:00Z', 'Stop': None, 'Description': 'Urinalysis macro (dipstick) panel - Urine'}]}\n"
     ]
    }
   ],
   "source": [
    "# Main logic for parsing the XML and capturing all data\n",
    "def parse_patient_data(root):\n",
    "    \"\"\"Main function to parse patient data and section information from the XML.\"\"\"\n",
    "\n",
    "    # Extract general patient details\n",
    "    extract_patient_details(root)\n",
    "\n",
    "    # List of sections to extract (these are the section names we are looking for in the XML)\n",
    "    sections = ['Allergies', 'Medications', 'Diagnostic Results']  # Add more section names if needed\n",
    "\n",
    "    # Navigate to the structuredBody and then to the component sections\n",
    "    structured_body = root.find('.//hl7:structuredBody', ns)\n",
    "\n",
    "    # Now loop through all components within the structuredBody\n",
    "    for component in structured_body.findall('hl7:component', ns):\n",
    "        section = component.find('hl7:section', ns)\n",
    "        if section is not None:\n",
    "            title = section.find('hl7:title', ns)\n",
    "            \n",
    "            if title is not None:\n",
    "                section_title = title.text.strip()  # Get the section title and strip whitespace\n",
    "\n",
    "                # Iterate over the list of sections we're interested in\n",
    "                for section_name in sections:\n",
    "                    if section_name in section_title:\n",
    "                        # Call the function to extract data if the section matches\n",
    "                        extract_section_data(section_title, section)\n",
    "\n",
    "# Call the main parsing function\n",
    "parse_patient_data(root)\n",
    "\n",
    "# Output the extracted patient data\n",
    "print(patient_data)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Patient data has been written to /Users/bharathbeeravelly/Desktop/patient-trials-matching/data/patient_data.json\n"
     ]
    }
   ],
   "source": [
    "# Define the path for the output JSON file\n",
    "output_json_path = '/Users/bharathbeeravelly/Desktop/patient-trials-matching/data/patient_data.json'\n",
    "\n",
    "# Write the patient_data dictionary to a JSON file\n",
    "with open(output_json_path, 'w') as json_file:\n",
    "    json.dump(patient_data, json_file, indent=4)\n",
    "\n",
    "print(f\"Patient data has been written to {output_json_path}\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Scraping Environment",
   "language": "python",
   "name": "scraping_env"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.9.19"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 2
}