-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Sep 08, 2025 at 04:53 AM
-- Server version: 10.6.23-MariaDB-cll-lve-log
-- PHP Version: 8.3.25

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `democa_hmz_v2`
--

-- --------------------------------------------------------

--
-- Table structure for table `accountant`
--

CREATE TABLE `accountant` (
  `id` int(100) NOT NULL,
  `img_url` varchar(200) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `address` varchar(100) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `ion_user_id` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `signature` varchar(1000) DEFAULT NULL,
  `profile` varchar(1000) DEFAULT NULL,
  `available` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `accountant`
--

INSERT INTO `accountant` (`id`, `img_url`, `name`, `email`, `address`, `phone`, `x`, `ion_user_id`, `hospital_id`, `signature`, `profile`, `available`) VALUES
(8, 'uploads/userIcon.png', 'Mr Accountant', 'accountant@hms.com', 'Ka, 3/I, Bashundhara Main Road', '01777024443', NULL, '1067', '98', NULL, '<p>Accountant details</p>', '0');

-- --------------------------------------------------------

--
-- Table structure for table `advice`
--

CREATE TABLE `advice` (
  `id` int(100) NOT NULL,
  `name` varchar(500) DEFAULT NULL,
  `description` varchar(1000) DEFAULT NULL,
  `hospital_id` int(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `advice`
--

INSERT INTO `advice` (`id`, `name`, `description`, `hospital_id`) VALUES
(16, 'Rest', NULL, 98);

-- --------------------------------------------------------

--
-- Table structure for table `ai_image_analyses`
--

CREATE TABLE `ai_image_analyses` (
  `id` int(11) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `hospital_id` int(11) NOT NULL,
  `image_type` enum('xray','ct_scan','mri','ultrasound','endoscopy','dermatology','ophthalmology','pathology','other') NOT NULL,
  `description` text DEFAULT NULL,
  `image_path` varchar(255) NOT NULL,
  `analysis_result` longtext DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `ai_patient_overviews`
--

CREATE TABLE `ai_patient_overviews` (
  `id` int(11) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `hospital_id` int(11) NOT NULL,
  `analysis_result` longtext NOT NULL,
  `created_by` int(11) NOT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `alloted_bed`
--

CREATE TABLE `alloted_bed` (
  `id` int(100) NOT NULL,
  `number` varchar(100) DEFAULT NULL,
  `category` varchar(100) DEFAULT NULL,
  `patient` varchar(100) DEFAULT NULL,
  `a_time` varchar(100) DEFAULT NULL,
  `d_time` varchar(100) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `bed_id` varchar(100) DEFAULT NULL,
  `patientname` varchar(1000) DEFAULT NULL,
  `category_status` varchar(1000) DEFAULT NULL,
  `reaksione` varchar(1000) DEFAULT NULL,
  `covid_19` varchar(1000) DEFAULT NULL,
  `transferred_from` varchar(1000) DEFAULT NULL,
  `anamneza` varchar(1000) DEFAULT NULL,
  `accepting_doctor` varchar(1000) DEFAULT NULL,
  `doctor` varchar(1000) DEFAULT NULL,
  `diagnosis` varchar(1000) DEFAULT NULL,
  `diagnoza_a_shtrimit` varchar(1000) DEFAULT NULL,
  `blood_group` varchar(1000) DEFAULT NULL,
  `other_illnesses` varchar(1000) DEFAULT NULL,
  `a_timestamp` varchar(1000) DEFAULT NULL,
  `d_timestamp` varchar(1000) DEFAULT NULL,
  `bed_display_id` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `appointment`
--

CREATE TABLE `appointment` (
  `id` int(100) NOT NULL,
  `patient` varchar(100) DEFAULT NULL,
  `doctor` varchar(100) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `time_slot` varchar(100) DEFAULT NULL,
  `s_time` varchar(100) DEFAULT NULL,
  `e_time` varchar(100) DEFAULT NULL,
  `remarks` varchar(500) DEFAULT NULL,
  `add_date` varchar(100) DEFAULT NULL,
  `registration_time` varchar(100) DEFAULT NULL,
  `s_time_key` varchar(100) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `request` varchar(100) DEFAULT NULL,
  `patientname` varchar(1000) DEFAULT NULL,
  `doctorname` varchar(1000) DEFAULT NULL,
  `meeting_id` varchar(100) DEFAULT NULL,
  `room_id` varchar(500) DEFAULT NULL,
  `live_meeting_link` varchar(1000) DEFAULT NULL,
  `cron_job` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `app_time` varchar(300) DEFAULT NULL,
  `app_time_full_format` varchar(300) DEFAULT NULL,
  `payment_status` varchar(300) DEFAULT NULL,
  `visit_description` varchar(300) DEFAULT NULL,
  `visit_charges` varchar(300) DEFAULT NULL,
  `payment_id` varchar(300) DEFAULT NULL,
  `discount` varchar(300) DEFAULT NULL,
  `grand_total` varchar(300) DEFAULT NULL,
  `start_url` varchar(1000) DEFAULT NULL,
  `join_url` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `attendance`
--

CREATE TABLE `attendance` (
  `id` int(100) NOT NULL,
  `staff` varchar(100) DEFAULT NULL,
  `month` varchar(100) DEFAULT NULL,
  `year` varchar(100) DEFAULT NULL,
  `log` varchar(1000) DEFAULT NULL,
  `details` mediumtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `attendance`
--

INSERT INTO `attendance` (`id`, `staff`, `month`, `year`, `log`, `details`) VALUES
(16, '998', 'January', '2022', 'no_no_no_no_no_no_no_no_yes_yes_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#02:32 PM_NONE_NONE_NONE_office#03:26 PM_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(17, '997', 'January', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(18, '999', 'January', '2022', 'no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(19, '996', 'January', '2022', 'no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(20, '995', 'January', '2022', 'no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(21, '994', 'January', '2022', 'no_no_no_no_no_no_no_no_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#05:17 PM_NONE_NONE_NONE_office'),
(22, '1004', 'January', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(23, '1005', 'January', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(24, '998', 'April', '2022', 'no_no_no_no_no_no_no_no_no_no_yes_no_no_yes_no_no_no_no_no_no_yes_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#11:14 AM_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#08:42 PM_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#03:22 PM_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(25, '1011', 'April', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(26, '997', 'April', '2022', 'no_no_no_no_yes_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_yes_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#04:18 PM_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#03:36 PM_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(27, '1015', 'April', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(28, '999', 'April', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(29, '1013', 'April', '2022', 'no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(30, '996', 'April', '2022', 'no_no_no_no_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#08:37 PM_NONE_NONE_NONE_office'),
(31, '1014', 'April', '2022', 'no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(32, '995', 'April', '2022', 'no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(33, '1012', 'April', '2022', 'no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(34, '994', 'April', '2022', 'no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(35, '1004', 'April', '2022', 'no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(36, '1005', 'April', '2022', 'no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(37, '1008', 'April', '2022', 'no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(38, '1009', 'April', '2022', 'no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(39, '1010', 'April', '2022', 'no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(40, '1020', 'April', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(41, '998', 'June', '2022', 'no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(42, '997', 'June', '2022', 'no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(43, '999', 'June', '2022', 'no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(44, '996', 'June', '2022', 'no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(45, '1037', 'June', '2022', 'no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(46, '994', 'June', '2022', 'no_no_no_no_no_no_no_no_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#06:53 PM_NONE_NONE_NONE_office'),
(47, '998', 'July', '2022', 'yes_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', '10:45_18:45_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(48, '997', 'July', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_yes_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#13:30_16:30_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(49, '999', 'July', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(50, '996', 'July', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(51, '1040', 'July', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(52, '1037', 'July', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(53, '994', 'July', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#10:40 AM_NONE_NONE_NONE_office'),
(54, '1039', 'July', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(55, '1041', 'July', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(56, '1043', 'July', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(57, '998', 'October', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(58, '997', 'October', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(59, '999', 'October', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(60, '996', 'October', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(61, '1040', 'October', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(62, '1037', 'October', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(63, '994', 'October', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(64, '998', 'December', '2022', 'no_no_no_no_no_no_no_no_yes_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#19:30_21:15_late_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(65, '997', 'December', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(66, '999', 'December', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(67, '996', 'December', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(68, '1040', 'December', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(69, '1037', 'December', '2022', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(70, '994', 'December', '2022', 'no_no_no_no_no_no_yes_yes_yes_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#17:30_19:30_late_NONE_office#16:00_18:00_NONE_halfday_office#15:15_17:15_late_halfday_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(71, '998', 'January', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(72, '997', 'January', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(73, '999', 'January', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(74, '996', 'January', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(75, '1040', 'January', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(76, '1037', 'January', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(77, '994', 'January', '2023', 'no_no_no_no_no_no_no_no_yes_no_no_yes_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#10:30_11:45_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#10:15_12:45_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(78, '998', 'April', '2023', 'no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(79, '1062', 'April', '2023', 'no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(80, '997', 'April', '2023', 'no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(81, '1061', 'April', '2023', 'no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(82, '999', 'April', '2023', 'no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(83, '1063', 'April', '2023', 'no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(84, '996', 'April', '2023', 'no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(85, '1060', 'April', '2023', 'no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(86, '1059', 'April', '2023', 'no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(87, '1037', 'April', '2023', 'no_no_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#01:59 PM_NONE_NONE_NONE_office#01:59 PM_NONE_NONE_NONE_office'),
(88, '994', 'April', '2023', 'no_no_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#01:36 PM_NONE_NONE_NONE_office'),
(89, '1067', 'May', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(90, '997', 'May', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(91, '1061', 'May', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(92, '999', 'May', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(93, '1063', 'May', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(94, '996', 'May', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(95, '1060', 'May', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(96, '1037', 'May', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(97, '994', 'May', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(98, '1067', 'August', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(99, '997', 'August', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(100, '999', 'August', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(101, '996', 'August', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(102, '1037', 'August', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office');
INSERT INTO `attendance` (`id`, `staff`, `month`, `year`, `log`, `details`) VALUES
(103, '994', 'August', '2023', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#07:10 PM_NONE_NONE_NONE_office'),
(104, '1067', 'September', '2023', 'no', 'NONE_NONE_NONE_NONE_office'),
(105, '997', 'September', '2023', 'no', 'NONE_NONE_NONE_NONE_office'),
(106, '999', 'September', '2023', 'no', 'NONE_NONE_NONE_NONE_office'),
(107, '996', 'September', '2023', 'no', 'NONE_NONE_NONE_NONE_office'),
(108, '1037', 'September', '2023', 'no', 'NONE_NONE_NONE_NONE_office'),
(109, '994', 'September', '2023', 'yes', '06:43 PM_NONE_NONE_NONE_office'),
(110, '1067', 'January', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(111, '997', 'January', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(112, '999', 'January', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(113, '996', 'January', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(114, '1037', 'January', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(115, '1073', 'January', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(116, '994', 'January', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(117, '1067', 'February', '2024', 'no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(118, '997', 'February', '2024', 'no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(119, '999', 'February', '2024', 'no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(120, '996', 'February', '2024', 'no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(121, '1037', 'February', '2024', 'no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(122, '1073', 'February', '2024', 'no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(123, '994', 'February', '2024', 'no_no_no_no_no_no_yes_yes_yes_yes_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#02:01 PM_NONE_NONE_NONE_office#06:36 PM_NONE_NONE_NONE_office#06:36 PM_NONE_NONE_NONE_office#06:36 PM_NONE_NONE_NONE_office#06:37 PM_NONE_NONE_NONE_office#06:39 PM_NONE_NONE_NONE_office'),
(124, '1067', 'August', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(125, '997', 'August', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(126, '999', 'August', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(127, '996', 'August', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(128, '1037', 'August', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(129, '1073', 'August', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(130, '994', 'August', '2024', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#01:18 PM_NONE_NONE_NONE_office#12:08 PM_NONE_NONE_NONE_office#06:25 PM_NONE_NONE_NONE_office#06:27 PM_NONE_NONE_NONE_office#06:28 PM_NONE_NONE_NONE_office#06:57 PM_NONE_NONE_NONE_office#07:05 PM_NONE_NONE_NONE_office#07:21 PM_NONE_NONE_NONE_office#07:22 PM_NONE_NONE_NONE_office#09:31 AM_NONE_NONE_NONE_office#10:26 AM_NONE_NONE_NONE_office#10:35 AM_NONE_NONE_NONE_office#10:45 AM_NONE_NONE_NONE_office#10:52 AM_NONE_NONE_NONE_office'),
(131, '1067', 'September', '2024', 'no_no_no_no_no_no_yes_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#02:11 PM_NONE_NONE_NONE_office#02:26 PM_NONE_NONE_NONE_office#01:53 PM_NONE_NONE_NONE_office'),
(132, '997', 'September', '2024', 'no_no_no_no_no_yes_yes_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#02:53 PM_NONE_NONE_NONE_office#02:17 PM_NONE_NONE_NONE_office#02:26 PM_NONE_NONE_NONE_office#01:52 PM_NONE_NONE_NONE_office'),
(133, '999', 'September', '2024', 'no_no_no_no_no_no_yes_yes_yes_yes_yes_yes_yes_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#02:15 PM_NONE_NONE_NONE_office#02:22 PM_NONE_NONE_NONE_office#10:13 AM_NONE_NONE_NONE_office#10:13 AM_NONE_NONE_NONE_office#12:06 PM_NONE_NONE_NONE_office#04:08 PM_NONE_NONE_NONE_office#04:09 PM_NONE_NONE_NONE_office#04:10 PM_NONE_NONE_NONE_office#04:11 PM_NONE_NONE_NONE_office'),
(134, '996', 'September', '2024', 'no_no_no_no_no_no_yes_yes_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#01:56 PM_NONE_NONE_NONE_office#02:25 PM_NONE_NONE_NONE_office#04:58 PM_NONE_NONE_NONE_office#01:50 PM_NONE_NONE_NONE_office'),
(135, '1037', 'September', '2024', 'no_no_no_no_no_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#02:52 PM_NONE_NONE_NONE_office#12:01 PM_NONE_NONE_NONE_office#02:24 PM_NONE_NONE_NONE_office#04:57 PM_NONE_NONE_NONE_office#04:58 PM_NONE_NONE_NONE_office#04:58 PM_NONE_NONE_NONE_office#03:18 PM_NONE_NONE_NONE_office#03:18 PM_NONE_NONE_NONE_office#03:18 PM_NONE_NONE_NONE_office#10:10 AM_NONE_NONE_NONE_office#10:10 AM_NONE_NONE_NONE_office#10:10 AM_NONE_NONE_NONE_office#10:10 AM_NONE_NONE_NONE_office#09:09 AM_NONE_NONE_NONE_office#12:03 PM_NONE_NONE_NONE_office#12:04 PM_NONE_NONE_NONE_office#12:06 PM_NONE_NONE_NONE_office'),
(136, '1073', 'September', '2024', 'no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(137, '994', 'September', '2024', 'no_no_no_no_no_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#02:50 PM_NONE_NONE_NONE_office#11:46 AM_NONE_NONE_NONE_office#12:14 PM_NONE_NONE_NONE_office#04:55 PM_NONE_NONE_NONE_office#04:55 PM_NONE_NONE_NONE_office#05:00 PM_NONE_NONE_NONE_office#05:11 PM_NONE_NONE_NONE_office#05:18 PM_NONE_NONE_NONE_office#06:01 PM_NONE_NONE_NONE_office#04:31 PM_NONE_NONE_NONE_office#04:31 PM_NONE_NONE_NONE_office#10:09 AM_NONE_NONE_NONE_office#10:09 AM_NONE_NONE_NONE_office#10:30 AM_NONE_NONE_NONE_office#09:13 AM_NONE_NONE_NONE_office#11:57 AM_NONE_NONE_NONE_office#04:08 PM_NONE_NONE_NONE_office#04:38 PM_NONE_NONE_NONE_office#12:28 PM_NONE_NONE_NONE_office#12:29 PM_NONE_NONE_NONE_office#12:32 PM_NONE_NONE_NONE_office#11:09 AM_NONE_NONE_NONE_office'),
(138, '1067', 'October', '2024', 'no_no_no_no_no_no_yes_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#02:00 AM_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(139, '1110', 'October', '2024', 'no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(140, '997', 'October', '2024', 'no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(141, '999', 'October', '2024', 'no_no_no_no_no_no_no_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#07:45 PM_NONE_NONE_NONE_office#08:57 PM_NONE_NONE_NONE_office'),
(142, '996', 'October', '2024', 'no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(143, '1037', 'October', '2024', 'no_no_no_no_no_no_no_yes_yes_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#03:47 PM_NONE_NONE_NONE_office#03:47 PM_NONE_NONE_NONE_office#03:47 PM_NONE_NONE_NONE_office#05:11 PM_NONE_NONE_NONE_office'),
(144, '994', 'October', '2024', 'no_no_no_no_no_no_no_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#11:54 AM_NONE_NONE_NONE_office#11:55 AM_NONE_NONE_NONE_office#11:56 AM_NONE_NONE_NONE_office#10:03 AM_NONE_NONE_NONE_office#10:03 AM_NONE_NONE_NONE_office#10:07 AM_NONE_NONE_NONE_office#10:33 AM_NONE_NONE_NONE_office#03:46 PM_NONE_NONE_NONE_office#05:11 PM_NONE_NONE_NONE_office#07:04 PM_NONE_NONE_NONE_office#07:21 PM_NONE_NONE_NONE_office#05:57 PM_NONE_NONE_NONE_office#06:00 PM_NONE_NONE_NONE_office#06:01 PM_NONE_NONE_NONE_office#06:01 PM_NONE_NONE_NONE_office#06:02 PM_NONE_NONE_NONE_office#06:03 PM_NONE_NONE_NONE_office'),
(145, '1067', 'November', '2024', 'no_no_no_no_no_no_no_no_no_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#12:45 AM_01:15 AM_NONE_halfday_office#12:17 PM_NONE_NONE_NONE_office'),
(146, '997', 'November', '2024', 'no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(147, '999', 'November', '2024', 'no_no_no_no_no_no_no_no_no_no_yes_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#12:07 PM_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(148, '996', 'November', '2024', 'no_no_no_no_no_no_no_no_no_no_yes_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#12:12 PM_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(149, '1037', 'November', '2024', 'no_no_no_no_no_no_no_no_no_no_yes_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#12:13 PM_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(150, '994', 'November', '2024', 'no_no_no_yes_yes_no_yes_no_no_no_yes_no_no_yes_yes_yes', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#03:13 PM_NONE_NONE_NONE_office#02:23 PM_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#12:07 PM_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#12:00 PM_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#10:53 AM_NONE_NONE_NONE_office#10:53 AM_NONE_NONE_NONE_office#01:49 PM_NONE_NONE_NONE_office'),
(151, '1067', 'December', '2024', 'no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(152, '997', 'December', '2024', 'no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(153, '999', 'December', '2024', 'no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(154, '996', 'December', '2024', 'no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(155, '1037', 'December', '2024', 'no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(156, '1067', 'January', '2025', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(157, '997', 'January', '2025', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(158, '999', 'January', '2025', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(159, '996', 'January', '2025', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(160, '1037', 'January', '2025', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office'),
(161, '1131', 'January', '2025', 'no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no_no', 'NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office#NONE_NONE_NONE_NONE_office');

-- --------------------------------------------------------

--
-- Table structure for table `autoemailshortcode`
--

CREATE TABLE `autoemailshortcode` (
  `id` int(100) NOT NULL,
  `name` varchar(1000) DEFAULT NULL,
  `type` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `autoemailshortcode`
--

INSERT INTO `autoemailshortcode` (`id`, `name`, `type`) VALUES
(1, '{firstname}', 'payment'),
(2, '{lastname}', 'payment'),
(3, '{name}', 'payment'),
(4, '{amount}', 'payment'),
(52, '{doctorname}', 'appoinment_confirmation'),
(42, '{firstname}', 'appoinment_creation'),
(51, '{name}', 'appoinment_confirmation'),
(50, '{lastname}', 'appoinment_confirmation'),
(49, '{firstname}', 'appoinment_confirmation'),
(48, '{hospital_name}', 'appoinment_creation'),
(47, '{time_slot}', 'appoinment_creation'),
(46, '{appoinmentdate}', 'appoinment_creation'),
(45, '{doctorname}', 'appoinment_creation'),
(44, '{name}', 'appoinment_creation'),
(43, '{lastname}', 'appoinment_creation'),
(26, '{name}', 'doctor'),
(27, '{firstname}', 'doctor'),
(28, '{lastname}', 'doctor'),
(29, '{company}', 'doctor'),
(41, '{doctor}', 'patient'),
(40, '{company}', 'patient'),
(39, '{lastname}', 'patient'),
(38, '{firstname}', 'patient'),
(37, '{name}', 'patient'),
(36, '{department}', 'doctor'),
(53, '{appoinmentdate}', 'appoinment_confirmation'),
(54, '{time_slot}', 'appoinment_confirmation'),
(55, '{hospital_name}', 'appoinment_confirmation'),
(56, '{start_time}', 'meeting_creation'),
(57, '{patient_name}', 'meeting_creation'),
(58, '{doctor_name}', 'meeting_creation'),
(59, '{hospital_name}', 'meeting_creation'),
(60, '{meeting_link}', 'meeting_creation'),
(61, '{lastname}', 'appoinment_remainder'),
(62, '{hospital_name}', 'appoinment_remainder'),
(63, '{time_slot}', 'appoinment_remainder'),
(64, '{appoinmentdate}', 'appoinment_remainder'),
(65, '{doctorname}', 'appoinment_remainder'),
(66, '{name}', 'appoinment_remainder'),
(67, '{name}', 'appoinment_creation_to_doctor'),
(68, '{firstname}', 'appoinment_creation_to_doctor'),
(69, '{lastname}', 'appoinment_creation_to_doctor'),
(70, '{appoinmentdate}', 'appoinment_creation_to_doctor'),
(71, '{time_slot}', 'appoinment_creation_to_doctor'),
(72, '{patientname}', 'appoinment_creation_to_doctor'),
(73, '{hospital_name}', 'appoinment_creation_to_doctor');

-- --------------------------------------------------------

--
-- Table structure for table `autoemailtemplate`
--

CREATE TABLE `autoemailtemplate` (
  `id` int(100) NOT NULL,
  `name` varchar(1000) DEFAULT NULL,
  `message` varchar(1000) DEFAULT NULL,
  `type` varchar(1000) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `autoemailtemplate`
--

INSERT INTO `autoemailtemplate` (`id`, `name`, `message`, `type`, `status`, `hospital_id`) VALUES
(813, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '77'),
(811, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '77'),
(812, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '77'),
(810, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '76'),
(102, 'Hospital Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Hospital.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'hospital', 'Active', 'superadmin'),
(809, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '76'),
(808, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '76'),
(807, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '76'),
(806, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '76'),
(805, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '76'),
(804, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '76'),
(803, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '76'),
(802, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '76'),
(115, 'Superadmin Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Superadmin.<br><br> Your Details:<br>Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'superadmin', 'Active', 'superadmin'),
(801, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '76'),
(800, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '76'),
(799, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '76'),
(798, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '75'),
(797, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '75'),
(796, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '75'),
(795, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '75'),
(794, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '75'),
(793, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '75'),
(792, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '75'),
(791, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '75'),
(790, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '75'),
(789, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '75'),
(133, 'Contact Email', 'Name: {name}<br> Email: {other_email}<br>Phone Number: {phone}<br>Hospital Name: {hospital_name}<br><br> {msg}.', 'contactus', 'Active', 'superadmin'),
(511, 'Payment successful email to patient', '<p>Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.</p>', 'payment', 'Active', '4'),
(512, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '4'),
(513, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '4'),
(514, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '4'),
(515, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '4'),
(516, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '4'),
(517, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '4'),
(518, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '4'),
(519, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '4'),
(520, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '4'),
(521, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '4'),
(788, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '75'),
(787, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '75'),
(786, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '74'),
(785, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '74'),
(784, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '74'),
(783, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '74'),
(782, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '74'),
(781, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '74'),
(780, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '74'),
(779, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '74'),
(778, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '74'),
(777, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '74'),
(776, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '74'),
(775, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '74'),
(774, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '73'),
(773, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '73'),
(772, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '73'),
(771, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '73'),
(770, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '73'),
(769, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '73'),
(768, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '73'),
(767, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '73'),
(766, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '73'),
(765, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '73'),
(764, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '73'),
(763, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '73'),
(762, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '72'),
(761, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '72'),
(760, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '72'),
(759, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '72'),
(758, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '72'),
(757, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '72'),
(756, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '72'),
(755, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '72'),
(754, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '72'),
(753, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '72'),
(752, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '72'),
(751, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '72'),
(750, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '71'),
(749, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '71'),
(748, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '71'),
(747, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '71'),
(746, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '71'),
(745, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '71'),
(744, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '71'),
(743, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '71'),
(742, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '71'),
(741, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '71'),
(740, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '71'),
(739, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '71'),
(738, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '70'),
(737, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '70'),
(736, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '70'),
(735, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '70'),
(734, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '70'),
(733, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '70'),
(732, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '70'),
(731, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '70'),
(730, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '70'),
(729, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '70'),
(728, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '70'),
(727, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '70'),
(726, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '69'),
(725, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '69'),
(724, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '69'),
(723, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '69'),
(722, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '69'),
(721, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '69'),
(720, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '69'),
(719, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '69'),
(718, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '69'),
(717, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '69'),
(716, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '69'),
(715, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '69'),
(714, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(713, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', NULL),
(712, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', NULL),
(711, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', NULL),
(710, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', NULL),
(709, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', NULL),
(708, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', NULL),
(707, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', NULL),
(706, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(705, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(703, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL),
(704, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(702, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(701, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', NULL),
(700, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', NULL),
(699, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', NULL),
(698, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', NULL),
(697, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', NULL),
(696, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', NULL),
(694, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(695, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', NULL),
(693, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(692, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(691, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL),
(690, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '65'),
(689, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '65'),
(688, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '65'),
(687, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '65'),
(686, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '65'),
(685, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '65'),
(684, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '65'),
(683, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '65'),
(682, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '65'),
(680, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '65'),
(681, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '65'),
(679, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '65'),
(678, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '64'),
(677, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '64'),
(676, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '64'),
(675, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '64'),
(674, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '64'),
(673, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '64'),
(672, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '64'),
(670, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '64'),
(671, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '64'),
(668, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '64'),
(669, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '64'),
(667, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '64'),
(666, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(665, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', NULL),
(664, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', NULL),
(663, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', NULL),
(662, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', NULL),
(661, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', NULL),
(660, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', NULL),
(659, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', NULL),
(658, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(657, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(656, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(655, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL),
(654, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '15'),
(653, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '15'),
(652, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '15'),
(651, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '15'),
(650, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '15'),
(649, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '15'),
(648, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '15'),
(647, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '15'),
(646, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '15'),
(645, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '15'),
(644, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '15');
INSERT INTO `autoemailtemplate` (`id`, `name`, `message`, `type`, `status`, `hospital_id`) VALUES
(643, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '15'),
(642, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '14'),
(641, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '14'),
(640, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '14'),
(639, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '14'),
(638, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '14'),
(637, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '14'),
(636, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '14'),
(635, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '14'),
(634, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '14'),
(633, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '14'),
(632, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '14'),
(631, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '14'),
(630, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '13'),
(629, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '13'),
(628, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '13'),
(627, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '13'),
(626, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '13'),
(625, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '13'),
(624, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '13'),
(623, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '13'),
(622, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '13'),
(621, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '13'),
(620, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '13'),
(619, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '13'),
(618, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '12'),
(617, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '12'),
(616, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '12'),
(615, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '12'),
(614, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '12'),
(613, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '12'),
(612, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '12'),
(611, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '12'),
(610, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '12'),
(609, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '12'),
(608, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '12'),
(607, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '12'),
(606, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '11'),
(605, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '11'),
(604, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '11'),
(603, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '11'),
(602, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '11'),
(601, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '11'),
(600, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '11'),
(599, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '11'),
(598, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '11'),
(597, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '11'),
(596, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '11'),
(595, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '11'),
(594, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '10'),
(593, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '10'),
(592, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '10'),
(591, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '10'),
(590, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '10'),
(589, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '10'),
(588, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '10'),
(587, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '10'),
(586, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '10'),
(585, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '10'),
(583, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '10'),
(584, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '10'),
(582, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '9'),
(581, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '9'),
(580, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '9'),
(579, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '9'),
(578, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '9'),
(577, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '9'),
(576, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '9'),
(575, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '9'),
(574, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '9'),
(573, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '9'),
(572, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '9'),
(571, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '9'),
(570, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '8'),
(569, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '8'),
(568, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '8'),
(567, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '8'),
(566, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '8'),
(565, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '8'),
(564, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '8'),
(563, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '8'),
(562, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '8'),
(561, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '8'),
(560, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '8'),
(559, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '8'),
(558, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '7'),
(557, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '7'),
(556, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '7'),
(555, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '7'),
(554, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '7'),
(553, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '7'),
(552, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '7'),
(551, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '7'),
(550, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '7'),
(549, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '7'),
(548, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '7'),
(547, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '7'),
(546, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '6'),
(545, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '6'),
(544, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '6'),
(543, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '6'),
(542, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '6'),
(541, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '6'),
(540, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '6'),
(539, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '6'),
(538, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '6'),
(537, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '6'),
(536, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '6'),
(535, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '6'),
(534, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '5'),
(533, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '5'),
(532, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '5'),
(531, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '5'),
(530, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '5'),
(529, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '5'),
(528, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '5'),
(527, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '5'),
(526, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '5'),
(525, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '5'),
(524, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '5'),
(522, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '4'),
(523, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '5'),
(510, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '2'),
(509, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '1'),
(508, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '3'),
(507, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '3'),
(506, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '3'),
(505, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '3'),
(504, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '3'),
(503, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '3'),
(502, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '3'),
(501, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '3'),
(500, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '3'),
(499, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '3'),
(497, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '3'),
(498, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '3'),
(496, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '2'),
(495, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '2'),
(494, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '2'),
(493, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '2'),
(492, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '2'),
(491, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '2'),
(490, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '2'),
(489, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '2'),
(488, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '2'),
(486, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '2'),
(487, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '2'),
(485, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '1'),
(484, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '1'),
(483, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '1'),
(482, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '1'),
(481, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '1'),
(480, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '1'),
(479, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '1'),
(478, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '1'),
(477, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '1'),
(475, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '1'),
(476, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '1'),
(814, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '77'),
(815, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '77'),
(816, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '77'),
(817, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '77'),
(818, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '77'),
(819, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '77'),
(820, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '77'),
(821, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '77'),
(822, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '77'),
(823, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '78'),
(824, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '78'),
(825, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '78'),
(826, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '78'),
(827, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '78'),
(828, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '78'),
(829, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '78'),
(830, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '78'),
(831, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '78'),
(832, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '78'),
(833, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '78'),
(834, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '78'),
(835, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '79'),
(836, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '79'),
(837, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '79'),
(838, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '79'),
(839, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '79');
INSERT INTO `autoemailtemplate` (`id`, `name`, `message`, `type`, `status`, `hospital_id`) VALUES
(840, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '79'),
(841, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '79'),
(842, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '79'),
(843, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '79'),
(844, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '79'),
(845, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '79'),
(846, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '79'),
(847, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '82'),
(848, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '82'),
(849, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '82'),
(850, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '82'),
(851, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '82'),
(852, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '82'),
(853, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '82'),
(854, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '82'),
(855, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '82'),
(856, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '82'),
(857, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '82'),
(858, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '82'),
(859, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL),
(860, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(861, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(862, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(863, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', NULL),
(864, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', NULL),
(865, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', NULL),
(866, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', NULL),
(867, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', NULL),
(868, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', NULL),
(869, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', NULL),
(870, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(871, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL),
(872, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(873, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(874, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(875, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', NULL),
(876, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', NULL),
(877, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', NULL),
(878, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', NULL),
(879, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', NULL),
(880, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', NULL),
(881, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', NULL),
(882, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(883, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL),
(884, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(885, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(886, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(887, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', NULL),
(888, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', NULL),
(889, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', NULL),
(890, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', NULL),
(891, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', NULL),
(892, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', NULL),
(893, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', NULL),
(894, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(895, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL),
(896, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(897, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(898, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(899, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', NULL),
(900, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', NULL),
(901, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', NULL),
(902, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', NULL),
(903, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', NULL),
(904, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', NULL),
(905, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', NULL),
(906, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(907, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '83'),
(908, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '83'),
(909, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '83'),
(910, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '83'),
(911, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '83'),
(912, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '83'),
(913, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '83'),
(914, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '83'),
(915, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '83'),
(916, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '83'),
(917, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '83'),
(918, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '83'),
(919, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '84'),
(920, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '84'),
(921, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '84'),
(922, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '84'),
(923, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '84'),
(924, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '84'),
(925, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '84'),
(926, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '84'),
(927, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '84'),
(928, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '84'),
(929, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '84'),
(930, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '84'),
(931, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '85'),
(932, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '85'),
(933, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '85'),
(934, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '85'),
(935, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '85'),
(936, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '85'),
(937, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '85'),
(938, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '85'),
(939, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '85'),
(940, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '85'),
(941, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '85'),
(942, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '85'),
(943, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '86'),
(944, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '86'),
(945, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '86'),
(946, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '86'),
(947, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '86'),
(948, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '86'),
(949, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '86'),
(950, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '86'),
(951, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '86'),
(952, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '86'),
(953, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '86'),
(954, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '86'),
(955, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '87'),
(956, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '87'),
(957, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '87'),
(958, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '87'),
(959, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '87'),
(960, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '87'),
(961, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '87'),
(962, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '87'),
(963, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '87'),
(964, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '87'),
(965, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '87'),
(966, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '87'),
(967, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '88'),
(968, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '88'),
(969, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '88'),
(970, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '88'),
(971, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '88'),
(972, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '88'),
(973, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '88'),
(974, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '88'),
(975, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '88'),
(976, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '88'),
(977, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '88'),
(978, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '88'),
(979, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '89'),
(980, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '89'),
(981, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '89'),
(982, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '89'),
(983, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '89'),
(984, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '89'),
(985, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '89'),
(986, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '89'),
(987, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '89'),
(988, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '89'),
(989, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '89'),
(990, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '89'),
(991, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '90'),
(992, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '90'),
(993, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '90'),
(994, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '90'),
(995, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '90'),
(996, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '90'),
(997, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '90'),
(998, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '90'),
(999, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '90'),
(1000, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '90'),
(1001, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '90'),
(1002, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '90'),
(1003, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '91'),
(1004, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '91'),
(1005, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '91'),
(1006, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '91'),
(1007, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '91'),
(1008, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '91'),
(1009, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '91'),
(1010, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '91'),
(1011, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '91'),
(1012, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '91'),
(1013, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '91'),
(1014, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '91'),
(1015, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '92'),
(1016, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '92'),
(1017, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '92'),
(1018, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '92'),
(1019, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '92'),
(1020, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '92'),
(1021, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '92'),
(1022, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '92');
INSERT INTO `autoemailtemplate` (`id`, `name`, `message`, `type`, `status`, `hospital_id`) VALUES
(1023, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '92'),
(1024, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '92'),
(1025, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '92'),
(1026, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '92'),
(1027, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '93'),
(1028, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '93'),
(1029, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '93'),
(1030, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '93'),
(1031, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '93'),
(1032, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '93'),
(1033, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '93'),
(1034, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '93'),
(1035, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '93'),
(1036, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '93'),
(1037, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '93'),
(1038, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '93'),
(1039, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '94'),
(1040, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '94'),
(1041, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '94'),
(1042, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '94'),
(1043, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '94'),
(1044, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '94'),
(1045, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '94'),
(1046, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '94'),
(1047, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '94'),
(1048, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '94'),
(1049, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '94'),
(1050, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '94'),
(1051, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '95'),
(1052, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '95'),
(1053, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '95'),
(1054, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '95'),
(1055, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '95'),
(1056, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '95'),
(1057, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '95'),
(1058, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '95'),
(1059, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '95'),
(1060, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '95'),
(1061, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '95'),
(1062, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '95'),
(1063, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '96'),
(1064, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '96'),
(1065, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '96'),
(1066, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '96'),
(1067, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '96'),
(1068, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '96'),
(1069, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '96'),
(1070, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '96'),
(1071, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '96'),
(1072, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '96'),
(1073, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '96'),
(1074, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '96'),
(1075, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '97'),
(1076, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '97'),
(1077, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '97'),
(1078, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '97'),
(1079, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '97'),
(1080, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '97'),
(1081, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '97'),
(1082, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '97'),
(1083, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '97'),
(1084, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '97'),
(1085, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '97'),
(1086, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '97'),
(1087, 'Payment successful email to patient', '<p>Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.</p>', 'payment', 'Active', '98'),
(1088, 'Appointment Confirmation email to patient', '<p>Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards</p>', 'appoinment_confirmation', 'Active', '98'),
(1089, 'Appointment creation email to patient', '<p>Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards</p>', 'appoinment_creation', 'Active', '98'),
(1090, 'Meeting Schedule Notification To Patient', '<p>Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}.&nbsp;</p><p>Join Link: {meeting_link}</p><p>For more information contact with {hospital_name} . Regards</p><p>&nbsp;</p>', 'meeting_creation', 'Active', '98'),
(1091, 'Send Appointment confirmation to Doctor', '<p>Dear {name},<br>You are registered to {company} as a New Doctor in {department}.<br><br>Your Details:<br>Url Link: {base_url}<br>Username : {email}<br>Password: {password}<br><br>Thank You for registration.<br>Regards</p>', 'doctor', 'Active', '98'),
(1092, 'Patient Registration Confirmation', '<p>Dear {name},<br>You are registered to {company} as a New Patient to {doctor}.<br><br>Your Details:<br>Url Link: {base_url}<br>Username : {email}<br>Password: {password}<br><br>Thank You for registration.<br>Regards</p>', 'patient', 'Active', '98'),
(1093, 'Nurse Registration Confirmation', '<p>Dear {name},<br>You are registered to {company} as a New Nurse.<br><br>Your Details:<br>Url Link: {base_url}<br>Username : {email}<br>Password: {password}<br><br>Thank You for registration.<br>Regards</p>', 'nurse', 'Active', '98'),
(1094, 'Pharmacist Registration Confirmation', '<p>Dear {name},<br>You are registered to {company} as a New Pharmacist.<br><br>Your Details:<br>Url Link: {base_url}<br>Username : {email}<br>Password: {password}<br><br>Thank You for registration.<br>Regards</p>', 'pharmacist', 'Active', '98'),
(1095, 'Laboratorist Registration Confirmation', '<p>Dear {name},<br>You are registered to {company} as a New Laboratorist.<br><br>Your Details:<br>Url Link: {base_url}<br>Username : {email}<br>Password: {password}<br><br>Thank You for registration.<br>Regards</p>', 'laboratorist', 'Active', '98'),
(1096, 'Accountant Registration Confirmation', '<p>Dear {name},<br>You are registered to {company} as a New Accountant.<br><br>Your Details:<br>Url Link: {base_url}<br>Username : {email}<br>Password: {password}<br><br>Thank You for registration.<br>Regards</p>', 'accountant', 'Active', '98'),
(1097, 'Receptionist Registration Confirmation', '<p>Dear {name},<br>You are registered to {company} as a New Receptionist.<br><br>Your Details:<br>Url Link: {base_url}<br>Username : {email}<br>Password: {password}<br><br>Thank You for registration.<br>Regards</p>', 'receptionist', 'Active', '98'),
(1098, 'Appointment Remainder email to patient', '<p>Dear {name}, REMAINDER!!<br>You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards</p>', 'appoinment_remainder', 'Active', '98'),
(1099, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '99'),
(1100, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '99'),
(1101, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '99'),
(1102, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '99'),
(1103, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '99'),
(1104, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '99'),
(1105, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '99'),
(1106, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '99'),
(1107, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '99'),
(1108, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '99'),
(1109, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '99'),
(1110, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '99'),
(1111, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '100'),
(1112, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '100'),
(1113, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '100'),
(1114, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '100'),
(1115, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '100'),
(1116, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '100'),
(1117, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '100'),
(1118, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '100'),
(1119, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '100'),
(1120, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '100'),
(1121, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '100'),
(1122, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '100'),
(1123, 'Send Patient Appointment confirmation to Doctor', '<p>Dear {name},&nbsp;<br>{patientname} creates a appointment with you on {appoinmentdate} at {time_slot} . Please See details on your login panel.&nbsp;<br>Regards</p>', 'appoinment_creation_to_doctor', 'Active', '98'),
(1124, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '100'),
(1125, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '101'),
(1126, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '101'),
(1127, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '101'),
(1128, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '101'),
(1129, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '101'),
(1130, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '101'),
(1131, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '101'),
(1132, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '101'),
(1133, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '101'),
(1134, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '101'),
(1135, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '101'),
(1136, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '101'),
(1137, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '101'),
(1138, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '102'),
(1139, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '102'),
(1140, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '102'),
(1141, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '102'),
(1142, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '102'),
(1143, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '102'),
(1144, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '102'),
(1145, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '102'),
(1146, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '102'),
(1147, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '102'),
(1148, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '102'),
(1149, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '102'),
(1150, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '102'),
(1151, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '103'),
(1152, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '103'),
(1153, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '103'),
(1154, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '103'),
(1155, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '103'),
(1156, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '103'),
(1157, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '103'),
(1158, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '103'),
(1159, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '103'),
(1160, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '103'),
(1161, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '103'),
(1162, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '103'),
(1163, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '103'),
(1164, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '104'),
(1165, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '104'),
(1166, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '104'),
(1167, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '104'),
(1168, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '104'),
(1169, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '104'),
(1170, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '104'),
(1171, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '104'),
(1172, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '104'),
(1173, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '104'),
(1174, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '104'),
(1175, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '104'),
(1176, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '104'),
(1177, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '105'),
(1178, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '105'),
(1179, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '105'),
(1180, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '105'),
(1181, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '105'),
(1182, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '105'),
(1183, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '105'),
(1184, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '105'),
(1185, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '105'),
(1186, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '105'),
(1187, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '105'),
(1188, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '105'),
(1189, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '105'),
(1190, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '106'),
(1191, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '106'),
(1192, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '106'),
(1193, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '106'),
(1194, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '106'),
(1195, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '106'),
(1196, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '106'),
(1197, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '106'),
(1198, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '106'),
(1199, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '106'),
(1200, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '106'),
(1201, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '106'),
(1202, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '106'),
(1203, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '107'),
(1204, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '107'),
(1205, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '107');
INSERT INTO `autoemailtemplate` (`id`, `name`, `message`, `type`, `status`, `hospital_id`) VALUES
(1206, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '107'),
(1207, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '107'),
(1208, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '107'),
(1209, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '107'),
(1210, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '107'),
(1211, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '107'),
(1212, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '107'),
(1213, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '107'),
(1214, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '107'),
(1215, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '107'),
(1216, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '108'),
(1217, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '108'),
(1218, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '108'),
(1219, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '108'),
(1220, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '108'),
(1221, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '108'),
(1222, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '108'),
(1223, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '108'),
(1224, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '108'),
(1225, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '108'),
(1226, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '108'),
(1227, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '108'),
(1228, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '108'),
(1229, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '109'),
(1230, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '109'),
(1231, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '109'),
(1232, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '109'),
(1233, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '109'),
(1234, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '109'),
(1235, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '109'),
(1236, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '109'),
(1237, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '109'),
(1238, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '109'),
(1239, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '109'),
(1240, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '109'),
(1241, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '109'),
(1242, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '110'),
(1243, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '110'),
(1244, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '110'),
(1245, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '110'),
(1246, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '110'),
(1247, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '110'),
(1248, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '110'),
(1249, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '110'),
(1250, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '110'),
(1251, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '110'),
(1252, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '110'),
(1253, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '110'),
(1254, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '110'),
(1255, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '111'),
(1256, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '111'),
(1257, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '111'),
(1258, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '111'),
(1259, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '111'),
(1260, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '111'),
(1261, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '111'),
(1262, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '111'),
(1263, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '111'),
(1264, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '111'),
(1265, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '111'),
(1266, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '111'),
(1267, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '111'),
(1268, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '112'),
(1269, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '112'),
(1270, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '112'),
(1271, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '112'),
(1272, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '112'),
(1273, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '112'),
(1274, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '112'),
(1275, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '112'),
(1276, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '112'),
(1277, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '112'),
(1278, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '112'),
(1279, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '112'),
(1280, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '112'),
(1281, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '113'),
(1282, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '113'),
(1283, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '113'),
(1284, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '113'),
(1285, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '113'),
(1286, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '113'),
(1287, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '113'),
(1288, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '113'),
(1289, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '113'),
(1290, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '113'),
(1291, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '113'),
(1292, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '113'),
(1293, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '113'),
(1294, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '114'),
(1295, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '114'),
(1296, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '114'),
(1297, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '114'),
(1298, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '114'),
(1299, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '114'),
(1300, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '114'),
(1301, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '114'),
(1302, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '114'),
(1303, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '114'),
(1304, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '114'),
(1305, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '114'),
(1306, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '114'),
(1307, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '115'),
(1308, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '115'),
(1309, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '115'),
(1310, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '115'),
(1311, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '115'),
(1312, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '115'),
(1313, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '115'),
(1314, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '115'),
(1315, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '115'),
(1316, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '115'),
(1317, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '115'),
(1318, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '115'),
(1319, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '115'),
(1320, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '116'),
(1321, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '116'),
(1322, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '116'),
(1323, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '116'),
(1324, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '116'),
(1325, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '116'),
(1326, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '116'),
(1327, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '116'),
(1328, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '116'),
(1329, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '116'),
(1330, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '116'),
(1331, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '116'),
(1332, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '116'),
(1333, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '117'),
(1334, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '117'),
(1335, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '117'),
(1336, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '117'),
(1337, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '117'),
(1338, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '117'),
(1339, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '117'),
(1340, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '117'),
(1341, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '117'),
(1342, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '117'),
(1343, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '117'),
(1344, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '117'),
(1345, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '117'),
(1346, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '118'),
(1347, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '118'),
(1348, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '118'),
(1349, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '118'),
(1350, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '118'),
(1351, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '118'),
(1352, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '118'),
(1353, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '118'),
(1354, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '118'),
(1355, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '118'),
(1356, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '118'),
(1357, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '118'),
(1358, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '118'),
(1359, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '119'),
(1360, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '119'),
(1361, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '119'),
(1362, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '119'),
(1363, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '119'),
(1364, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '119'),
(1365, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '119'),
(1366, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '119'),
(1367, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '119'),
(1368, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '119'),
(1369, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '119'),
(1370, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '119'),
(1371, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '119'),
(1372, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '120'),
(1373, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '120'),
(1374, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '120'),
(1375, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '120'),
(1376, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '120'),
(1377, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '120'),
(1378, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '120'),
(1379, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '120'),
(1380, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '120'),
(1381, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '120'),
(1382, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '120'),
(1383, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '120'),
(1384, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '120'),
(1385, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '121'),
(1386, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '121'),
(1387, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '121'),
(1388, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '121');
INSERT INTO `autoemailtemplate` (`id`, `name`, `message`, `type`, `status`, `hospital_id`) VALUES
(1389, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '121'),
(1390, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '121'),
(1391, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '121'),
(1392, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '121'),
(1393, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '121'),
(1394, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '121'),
(1395, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '121'),
(1396, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '121'),
(1397, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '121'),
(1398, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '122'),
(1399, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '122'),
(1400, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '122'),
(1401, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '122'),
(1402, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '122'),
(1403, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '122'),
(1404, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '122'),
(1405, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '122'),
(1406, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '122'),
(1407, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '122'),
(1408, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '122'),
(1409, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '122'),
(1410, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '122'),
(1411, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '123'),
(1412, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '123'),
(1413, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '123'),
(1414, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '123'),
(1415, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '123'),
(1416, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '123'),
(1417, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '123'),
(1418, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '123'),
(1419, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '123'),
(1420, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '123'),
(1421, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '123'),
(1422, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '123'),
(1423, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '123'),
(1424, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '124'),
(1425, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '124'),
(1426, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '124'),
(1427, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '124'),
(1428, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '124'),
(1429, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '124'),
(1430, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '124'),
(1431, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '124'),
(1432, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '124'),
(1433, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '124'),
(1434, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '124'),
(1435, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '124'),
(1436, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '124'),
(1437, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '125'),
(1438, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '125'),
(1439, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '125'),
(1440, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '125'),
(1441, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '125'),
(1442, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '125'),
(1443, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '125'),
(1444, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '125'),
(1445, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '125'),
(1446, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '125'),
(1447, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '125'),
(1448, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '125'),
(1449, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '125'),
(1450, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '126'),
(1451, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '126'),
(1452, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '126'),
(1453, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '126'),
(1454, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '126'),
(1455, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '126'),
(1456, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '126'),
(1457, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '126'),
(1458, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '126'),
(1459, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '126'),
(1460, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '126'),
(1461, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '126'),
(1462, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '126'),
(1463, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '127'),
(1464, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '127'),
(1465, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '127'),
(1466, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '127'),
(1467, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '127'),
(1468, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '127'),
(1469, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '127'),
(1470, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '127'),
(1471, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '127'),
(1472, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '127'),
(1473, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '127'),
(1474, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '127'),
(1475, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '127'),
(1476, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '128'),
(1477, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '128'),
(1478, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '128'),
(1479, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '128'),
(1480, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '128'),
(1481, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '128'),
(1482, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '128'),
(1483, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '128'),
(1484, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '128'),
(1485, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '128'),
(1486, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '128'),
(1487, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '128'),
(1488, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '128'),
(1489, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '129'),
(1490, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '129'),
(1491, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '129'),
(1492, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '129'),
(1493, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '129'),
(1494, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '129'),
(1495, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '129'),
(1496, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '129'),
(1497, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '129'),
(1498, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '129'),
(1499, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '129'),
(1500, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '129'),
(1501, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '129'),
(1502, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '130'),
(1503, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '130'),
(1504, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '130'),
(1505, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '130'),
(1506, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '130'),
(1507, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '130'),
(1508, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '130'),
(1509, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '130'),
(1510, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '130'),
(1511, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '130'),
(1512, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '130'),
(1513, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '130'),
(1514, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '130'),
(1515, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '131'),
(1516, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '131'),
(1517, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '131'),
(1518, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '131'),
(1519, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '131'),
(1520, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '131'),
(1521, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '131'),
(1522, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '131'),
(1523, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '131'),
(1524, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '131'),
(1525, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '131'),
(1526, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '131'),
(1527, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '131'),
(1528, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '132'),
(1529, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '132'),
(1530, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '132'),
(1531, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '132'),
(1532, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '132'),
(1533, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '132'),
(1534, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '132'),
(1535, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '132'),
(1536, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '132'),
(1537, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '132'),
(1538, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '132'),
(1539, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '132'),
(1540, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '132'),
(1541, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '133'),
(1542, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '133'),
(1543, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '133'),
(1544, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '133'),
(1545, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '133'),
(1546, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '133'),
(1547, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '133'),
(1548, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '133'),
(1549, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '133'),
(1550, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '133'),
(1551, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '133'),
(1552, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '133'),
(1553, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '133'),
(1554, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '134'),
(1555, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '134'),
(1556, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '134'),
(1557, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '134'),
(1558, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '134'),
(1559, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '134'),
(1560, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '134'),
(1561, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '134'),
(1562, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '134'),
(1563, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '134'),
(1564, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '134'),
(1565, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '134'),
(1566, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '134'),
(1567, 'Appointment Cancellation', '<p>Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} has been cancelled. For more information contact with {hospital_name} Regards</p>', 'appointment_cancel', 'Active', '98'),
(1568, 'Appointment Update', '<p>Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} has been updated. For more information contact with {hospital_name} Regards</p>', 'appointment_update', 'Active', '98'),
(1569, 'Doctor Appointment Update', '<p>Dear {name}, Your appointment with {patientname} on {appoinmentdate} at {time_slot} has been updated. For more information contact with {hospital_name} Regards</p>\n\n', 'doctor_appointment_update', 'Active', '98'),
(1570, 'Doctor Appointment Cancellation', '<p>Dear {name}, Your appointment with {patientname} on {appoinmentdate} at {time_slot} has been cancelled. For more information contact with {hospital_name} Regards</p>', 'doctor_appointment_cancel', 'Active', '98'),
(1571, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '135');
INSERT INTO `autoemailtemplate` (`id`, `name`, `message`, `type`, `status`, `hospital_id`) VALUES
(1572, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '135'),
(1573, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '135'),
(1574, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '135'),
(1575, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '135'),
(1576, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '135'),
(1577, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '135'),
(1578, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '135'),
(1579, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '135'),
(1580, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '135'),
(1581, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '135'),
(1582, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '135'),
(1583, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '135'),
(1584, 'Appointment Cancellation', '<p>Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} has been cancelled. For more information contact with {hospital_name} Regards</p>', 'appointment_cancel', 'Active', '135'),
(1585, 'Appointment Update', '<p>Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} has been updated. For more information contact with {hospital_name} Regards</p>', 'appointment_update', 'Active', '135'),
(1586, 'Doctor Appointment Update', '<p>Dear {name}, Your appointment with {patientname} on {appoinmentdate} at {time_slot} has been updated. For more information contact with {hospital_name} Regards</p>', 'doctor_appointment_update', 'Active', '135'),
(1587, 'Doctor Appointment Cancellation', '<p>Dear {name}, Your appointment with {patientname} on {appoinmentdate} at {time_slot} has been cancelled. For more information contact with {hospital_name} Regards</p>', 'doctor_appointment_cancel', 'Active', '135'),
(1588, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '136'),
(1589, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '136'),
(1590, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '136'),
(1591, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '136'),
(1592, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '136'),
(1593, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '136'),
(1594, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '136'),
(1595, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '136'),
(1596, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '136'),
(1597, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '136'),
(1598, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '136'),
(1599, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '136'),
(1600, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '136'),
(1601, 'Appointment Cancellation', '<p>Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} has been cancelled. For more information contact with {hospital_name} Regards</p>', 'appointment_cancel', 'Active', '136'),
(1602, 'Appointment Update', '<p>Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} has been updated. For more information contact with {hospital_name} Regards</p>', 'appointment_update', 'Active', '136'),
(1603, 'Doctor Appointment Update', '<p>Dear {name}, Your appointment with {patientname} on {appoinmentdate} at {time_slot} has been updated. For more information contact with {hospital_name} Regards</p>', 'doctor_appointment_update', 'Active', '136'),
(1604, 'Doctor Appointment Cancellation', '<p>Dear {name}, Your appointment with {patientname} on {appoinmentdate} at {time_slot} has been cancelled. For more information contact with {hospital_name} Regards</p>', 'doctor_appointment_cancel', 'Active', '136'),
(1605, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '137'),
(1606, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '137'),
(1607, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '137'),
(1608, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '137'),
(1609, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '137'),
(1610, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '137'),
(1611, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '137'),
(1612, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '137'),
(1613, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '137'),
(1614, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '137'),
(1615, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '137'),
(1616, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '137'),
(1617, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '137'),
(1618, 'Appointment Cancellation', '<p>Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} has been cancelled. For more information contact with {hospital_name} Regards</p>', 'appointment_cancel', 'Active', '137'),
(1619, 'Appointment Update', '<p>Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} has been updated. For more information contact with {hospital_name} Regards</p>', 'appointment_update', 'Active', '137'),
(1620, 'Doctor Appointment Update', '<p>Dear {name}, Your appointment with {patientname} on {appoinmentdate} at {time_slot} has been updated. For more information contact with {hospital_name} Regards</p>', 'doctor_appointment_update', 'Active', '137'),
(1621, 'Doctor Appointment Cancellation', '<p>Dear {name}, Your appointment with {patientname} on {appoinmentdate} at {time_slot} has been cancelled. For more information contact with {hospital_name} Regards</p>', 'doctor_appointment_cancel', 'Active', '137'),
(1622, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '138'),
(1623, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '138'),
(1624, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '138'),
(1625, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '138'),
(1626, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '138'),
(1627, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '138'),
(1628, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '138'),
(1629, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '138'),
(1630, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '138'),
(1631, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '138'),
(1632, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '138'),
(1633, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '138'),
(1634, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '138'),
(1635, 'Appointment Cancellation', '<p>Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} has been cancelled. For more information contact with {hospital_name} Regards</p>', 'appointment_cancel', 'Active', '138'),
(1636, 'Appointment Update', '<p>Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} has been updated. For more information contact with {hospital_name} Regards</p>', 'appointment_update', 'Active', '138'),
(1637, 'Doctor Appointment Update', '<p>Dear {name}, Your appointment with {patientname} on {appoinmentdate} at {time_slot} has been updated. For more information contact with {hospital_name} Regards</p>', 'doctor_appointment_update', 'Active', '138'),
(1638, 'Doctor Appointment Cancellation', '<p>Dear {name}, Your appointment with {patientname} on {appoinmentdate} at {time_slot} has been cancelled. For more information contact with {hospital_name} Regards</p>', 'doctor_appointment_cancel', 'Active', '138'),
(1639, 'Payment successful email to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '139'),
(1640, 'Appointment Confirmation email to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '139'),
(1641, 'Appointment creation email to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '139'),
(1642, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '139'),
(1643, 'Send Appointment confirmation to Doctor', 'Dear {name},<br> You are registered to {company} as a New Doctor in {department}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'doctor', 'Active', '139'),
(1644, 'Patient Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Patient to {doctor}.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'patient', 'Active', '139'),
(1645, 'Nurse Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Nurse.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'nurse', 'Active', '139'),
(1646, 'Pharmacist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Pharmacist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'pharmacist', 'Active', '139'),
(1647, 'Laboratorist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Laboratorist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'laboratorist', 'Active', '139'),
(1648, 'Accountant Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Accountant.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'accountant', 'Active', '139'),
(1649, 'Receptionist Registration Confirmation', 'Dear {name},<br> You are registered to {company} as a New Receptionist.<br><br> Your Details:<br> Url Link: {base_url}<br> Username : {email}<br> Password: {password}<br><br> Thank You for registration.<br> Regards', 'receptionist', 'Active', '139'),
(1650, 'Appointment Remainder email to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '139'),
(1651, 'Send Patient Appointment confirmation to Doctor', 'Dear {name}, <br> {patientname} creates a appointment  with you on {appoinmentdate} at {time_slot} . Please See details on your login panel. <br> Regards', 'appoinment_creation_to_doctor', 'Active', '139'),
(1652, 'Appointment Cancellation', '<p>Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} has been cancelled. For more information contact with {hospital_name} Regards</p>', 'appointment_cancel', 'Active', '139'),
(1653, 'Appointment Update', '<p>Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} has been updated. For more information contact with {hospital_name} Regards</p>', 'appointment_update', 'Active', '139'),
(1654, 'Doctor Appointment Update', '<p>Dear {name}, Your appointment with {patientname} on {appoinmentdate} at {time_slot} has been updated. For more information contact with {hospital_name} Regards</p>', 'doctor_appointment_update', 'Active', '139'),
(1655, 'Doctor Appointment Cancellation', '<p>Dear {name}, Your appointment with {patientname} on {appoinmentdate} at {time_slot} has been cancelled. For more information contact with {hospital_name} Regards</p>', 'doctor_appointment_cancel', 'Active', '139');

-- --------------------------------------------------------

--
-- Table structure for table `autosmsshortcode`
--

CREATE TABLE `autosmsshortcode` (
  `id` int(100) NOT NULL,
  `name` varchar(1000) DEFAULT NULL,
  `type` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `autosmsshortcode`
--

INSERT INTO `autosmsshortcode` (`id`, `name`, `type`) VALUES
(1, '{name}', 'payment'),
(2, '{firstname}', 'payment'),
(3, '{lastname}', 'payment'),
(4, '{amount}', 'payment'),
(55, '{appoinmentdate}', 'appoinment_confirmation'),
(54, '{doctorname}', 'appoinment_confirmation'),
(53, '{name}', 'appoinment_confirmation'),
(52, '{lastname}', 'appoinment_confirmation'),
(51, '{firstname}', 'appoinment_confirmation'),
(50, '{time_slot}', 'appoinment_creation'),
(49, '{appoinmentdate}', 'appoinment_creation'),
(48, '{hospital_name}', 'appoinment_creation'),
(47, '{doctorname}', 'appoinment_creation'),
(46, '{name}', 'appoinment_creation'),
(45, '{lastname}', 'appoinment_creation'),
(44, '{firstname}', 'appoinment_creation'),
(28, '{firstname}', 'doctor'),
(29, '{lastname}', 'doctor'),
(30, '{name}', 'doctor'),
(31, '{company}', 'doctor'),
(43, '{doctor}', 'patient'),
(42, '{company}', 'patient'),
(41, '{lastname}', 'patient'),
(40, '{firstname}', 'patient'),
(39, '{name}', 'patient'),
(38, '{department}', 'doctor'),
(56, '{time_slot}', 'appoinment_confirmation'),
(57, '{hospital_name}', 'appoinment_confirmation'),
(58, '{start_time}', 'meeting_creation'),
(59, '{patient_name}', 'meeting_creation'),
(60, '{doctor_name}', 'meeting_creation'),
(61, '{hospital_name}', 'meeting_creation'),
(62, '{meeting_link}', 'meeting_creation'),
(63, '{time_slot}', 'appoinment_remainder'),
(64, '{appoinmentdate}', 'appoinment_remainder'),
(65, '{hospital_name}', 'appoinment_remainder'),
(66, '{doctorname}', 'appoinment_remainder'),
(67, '{name}', 'appoinment_remainder'),
(68, '{lastname}', 'appoinment_remainder'),
(69, '{firstname}', 'appoinment_remainder');

-- --------------------------------------------------------

--
-- Table structure for table `autosmstemplate`
--

CREATE TABLE `autosmstemplate` (
  `id` int(100) NOT NULL,
  `name` varchar(1000) DEFAULT NULL,
  `message` varchar(1000) DEFAULT NULL,
  `type` varchar(1000) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `autosmstemplate`
--

INSERT INTO `autosmstemplate` (`id`, `name`, `message`, `type`, `status`, `hospital_id`) VALUES
(507, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '75'),
(506, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '75'),
(505, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '75'),
(504, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '75'),
(503, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '74'),
(502, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '74'),
(501, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '74'),
(500, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '74'),
(499, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '74'),
(498, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '74'),
(497, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '74'),
(496, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '73'),
(494, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '73'),
(495, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '73'),
(493, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '73'),
(492, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '73'),
(491, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '73'),
(490, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '73'),
(488, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '72'),
(489, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '72'),
(487, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '72'),
(486, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '72'),
(485, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '72'),
(483, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '72'),
(484, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '72'),
(482, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '71'),
(481, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '71'),
(480, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '71'),
(479, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '71'),
(478, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '71'),
(477, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '71'),
(476, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '71'),
(475, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '70'),
(474, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '70'),
(473, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '70'),
(472, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '70'),
(471, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '70'),
(470, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '70'),
(469, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '70'),
(468, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '69'),
(467, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '69'),
(466, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '69'),
(465, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '69'),
(464, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '69'),
(463, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '69'),
(462, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '69'),
(461, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(459, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', NULL),
(460, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', NULL),
(458, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(457, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(456, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(455, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL),
(453, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', NULL),
(454, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(452, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', NULL),
(451, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(450, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(448, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL),
(449, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(447, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '65'),
(446, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '65'),
(445, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '65'),
(444, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '65'),
(443, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '65'),
(442, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '65'),
(441, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '65'),
(440, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '64'),
(439, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '64'),
(438, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '64'),
(437, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '64'),
(436, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '64'),
(435, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '64'),
(434, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '64'),
(433, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(432, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', NULL),
(431, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', NULL),
(430, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(429, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(428, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(427, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL),
(426, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '15'),
(425, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '15'),
(424, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '15'),
(423, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '15'),
(422, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '15'),
(421, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '15'),
(420, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '15'),
(418, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '14'),
(419, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '14'),
(417, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '14'),
(416, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '14'),
(415, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '14'),
(413, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '14'),
(414, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '14'),
(412, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '13'),
(411, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '13'),
(410, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '13'),
(409, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '13'),
(408, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '13'),
(407, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '13'),
(406, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '13'),
(405, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '12'),
(404, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '12'),
(403, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '12'),
(402, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '12'),
(401, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '12'),
(400, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '12'),
(399, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '12'),
(398, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '11'),
(396, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '11'),
(397, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '11'),
(395, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '11'),
(394, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '11'),
(393, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '11'),
(392, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '11'),
(391, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '10'),
(390, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '10'),
(389, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '10'),
(388, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '10'),
(387, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '10'),
(386, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '10'),
(385, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '10'),
(383, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '9'),
(384, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '9'),
(382, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '9'),
(381, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '9'),
(380, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '9'),
(379, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '9'),
(378, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '9'),
(377, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '8'),
(376, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '8'),
(375, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '8'),
(374, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '8'),
(373, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '8'),
(372, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '8'),
(371, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '8'),
(370, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '7'),
(369, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '7'),
(368, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '7'),
(367, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '7'),
(366, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '7'),
(365, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '7'),
(364, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '7'),
(363, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '6'),
(361, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '6'),
(362, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '6'),
(360, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '6'),
(359, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '6'),
(358, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '6'),
(357, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '6'),
(355, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '5'),
(356, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '5'),
(354, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '5'),
(353, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '5'),
(352, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '5'),
(350, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '5'),
(351, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '5'),
(349, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '4'),
(348, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '4'),
(347, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '4'),
(346, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '4'),
(345, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '4'),
(344, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '4'),
(343, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '4'),
(342, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!! You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '1'),
(341, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!! You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '3'),
(339, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '3'),
(340, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!! You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '2'),
(338, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '3'),
(337, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '3'),
(336, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '3'),
(334, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '3'),
(335, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '3'),
(333, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '2'),
(332, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '2'),
(331, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '2'),
(330, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '2'),
(329, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '2'),
(328, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '2'),
(327, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '1'),
(326, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '1'),
(325, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '1'),
(324, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '1'),
(323, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '1'),
(322, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '1'),
(508, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '75'),
(509, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '75'),
(510, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '75'),
(511, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '76'),
(512, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '76'),
(513, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '76'),
(514, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '76'),
(515, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '76'),
(516, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '76'),
(517, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '76'),
(518, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '77'),
(519, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '77'),
(520, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '77'),
(521, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '77'),
(522, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '77'),
(523, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '77'),
(524, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '77'),
(525, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '78'),
(526, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '78'),
(527, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '78'),
(528, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '78'),
(529, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '78'),
(530, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '78'),
(531, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '78'),
(532, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '79'),
(533, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '79'),
(534, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '79'),
(535, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '79'),
(536, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '79'),
(537, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '79'),
(538, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '79'),
(539, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '82'),
(540, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '82'),
(541, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '82'),
(542, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '82'),
(543, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '82'),
(544, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '82'),
(545, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '82'),
(546, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL),
(547, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(548, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(549, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(550, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', NULL),
(551, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', NULL),
(552, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(553, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL);
INSERT INTO `autosmstemplate` (`id`, `name`, `message`, `type`, `status`, `hospital_id`) VALUES
(554, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(555, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(556, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(557, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', NULL),
(558, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', NULL),
(559, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(560, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL),
(561, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(562, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(563, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(564, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', NULL),
(565, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', NULL),
(566, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(567, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', NULL),
(568, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', NULL),
(569, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', NULL),
(570, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', NULL),
(571, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', NULL),
(572, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', NULL),
(573, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', NULL),
(574, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '83'),
(575, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '83'),
(576, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '83'),
(577, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '83'),
(578, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '83'),
(579, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '83'),
(580, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '83'),
(581, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '84'),
(582, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '84'),
(583, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '84'),
(584, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '84'),
(585, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '84'),
(586, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '84'),
(587, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '84'),
(588, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '85'),
(589, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '85'),
(590, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '85'),
(591, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '85'),
(592, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '85'),
(593, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '85'),
(594, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '85'),
(595, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '86'),
(596, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '86'),
(597, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '86'),
(598, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '86'),
(599, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '86'),
(600, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '86'),
(601, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '86'),
(602, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '87'),
(603, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '87'),
(604, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '87'),
(605, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '87'),
(606, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '87'),
(607, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '87'),
(608, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '87'),
(609, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '88'),
(610, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '88'),
(611, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '88'),
(612, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '88'),
(613, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '88'),
(614, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '88'),
(615, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '88'),
(616, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '89'),
(617, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '89'),
(618, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '89'),
(619, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '89'),
(620, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '89'),
(621, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '89'),
(622, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '89'),
(623, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '90'),
(624, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '90'),
(625, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '90'),
(626, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '90'),
(627, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '90'),
(628, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '90'),
(629, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '90'),
(630, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '91'),
(631, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '91'),
(632, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '91'),
(633, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '91'),
(634, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '91'),
(635, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '91'),
(636, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '91'),
(637, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '92'),
(638, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '92'),
(639, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '92'),
(640, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '92'),
(641, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '92'),
(642, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '92'),
(643, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '92'),
(644, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '93'),
(645, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '93'),
(646, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '93'),
(647, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '93'),
(648, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '93'),
(649, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '93'),
(650, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '93'),
(651, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '94'),
(652, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '94'),
(653, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '94'),
(654, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '94'),
(655, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '94'),
(656, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '94'),
(657, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '94'),
(658, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '95'),
(659, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '95'),
(660, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '95'),
(661, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '95'),
(662, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '95'),
(663, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '95'),
(664, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '95'),
(665, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '96'),
(666, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '96'),
(667, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '96'),
(668, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '96'),
(669, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '96'),
(670, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '96'),
(671, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '96'),
(672, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '97'),
(673, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '97'),
(674, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '97'),
(675, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '97'),
(676, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '97'),
(677, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '97'),
(678, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '97'),
(679, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '98'),
(680, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '98'),
(681, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '98'),
(682, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . \r\nyour video link: {meeting_link}\r\nRegards', 'meeting_creation', 'Active', '98'),
(683, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '98'),
(684, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '98'),
(685, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '98'),
(686, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '99'),
(687, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '99'),
(688, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '99'),
(689, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '99'),
(690, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '99'),
(691, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '99'),
(692, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '99'),
(693, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '100'),
(694, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '100'),
(695, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '100'),
(696, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '100'),
(697, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '100'),
(698, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '100'),
(699, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '100'),
(700, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '101'),
(701, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '101'),
(702, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '101'),
(703, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '101'),
(704, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '101'),
(705, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '101'),
(706, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '101'),
(707, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '102'),
(708, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '102'),
(709, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '102'),
(710, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '102'),
(711, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '102'),
(712, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '102'),
(713, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '102'),
(714, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '103'),
(715, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '103'),
(716, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '103'),
(717, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '103'),
(718, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '103'),
(719, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '103'),
(720, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '103'),
(721, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '104'),
(722, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '104'),
(723, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '104'),
(724, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '104'),
(725, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '104'),
(726, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '104'),
(727, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '104'),
(728, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '105'),
(729, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '105'),
(730, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '105'),
(731, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '105'),
(732, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '105'),
(733, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '105'),
(734, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '105'),
(735, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '106'),
(736, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '106'),
(737, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '106'),
(738, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '106'),
(739, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '106'),
(740, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '106'),
(741, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '106'),
(742, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '107'),
(743, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '107'),
(744, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '107'),
(745, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '107'),
(746, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '107'),
(747, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '107'),
(748, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '107'),
(749, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '108'),
(750, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '108'),
(751, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '108'),
(752, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '108'),
(753, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '108'),
(754, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '108'),
(755, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '108'),
(756, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '109'),
(757, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '109'),
(758, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '109'),
(759, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '109'),
(760, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '109'),
(761, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '109'),
(762, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '109'),
(763, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '110'),
(764, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '110'),
(765, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '110'),
(766, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '110'),
(767, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '110'),
(768, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '110'),
(769, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '110'),
(770, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '111'),
(771, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '111'),
(772, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '111'),
(773, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '111'),
(774, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '111'),
(775, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '111'),
(776, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '111'),
(777, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '112'),
(778, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '112'),
(779, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '112'),
(780, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '112'),
(781, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '112'),
(782, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '112'),
(783, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '112'),
(784, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '113');
INSERT INTO `autosmstemplate` (`id`, `name`, `message`, `type`, `status`, `hospital_id`) VALUES
(785, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '113'),
(786, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '113'),
(787, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '113'),
(788, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '113'),
(789, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '113'),
(790, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '113'),
(791, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '114'),
(792, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '114'),
(793, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '114'),
(794, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '114'),
(795, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '114'),
(796, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '114'),
(797, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '114'),
(798, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '115'),
(799, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '115'),
(800, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '115'),
(801, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '115'),
(802, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '115'),
(803, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '115'),
(804, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '115'),
(805, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '116'),
(806, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '116'),
(807, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '116'),
(808, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '116'),
(809, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '116'),
(810, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '116'),
(811, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '116'),
(812, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '117'),
(813, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '117'),
(814, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '117'),
(815, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '117'),
(816, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '117'),
(817, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '117'),
(818, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '117'),
(819, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '118'),
(820, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '118'),
(821, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '118'),
(822, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '118'),
(823, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '118'),
(824, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '118'),
(825, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '118'),
(826, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '119'),
(827, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '119'),
(828, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '119'),
(829, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '119'),
(830, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '119'),
(831, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '119'),
(832, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '119'),
(833, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '120'),
(834, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '120'),
(835, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '120'),
(836, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '120'),
(837, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '120'),
(838, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '120'),
(839, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '120'),
(840, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '121'),
(841, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '121'),
(842, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '121'),
(843, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '121'),
(844, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '121'),
(845, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '121'),
(846, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '121'),
(847, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '122'),
(848, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '122'),
(849, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '122'),
(850, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '122'),
(851, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '122'),
(852, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '122'),
(853, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '122'),
(854, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '123'),
(855, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '123'),
(856, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '123'),
(857, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '123'),
(858, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '123'),
(859, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '123'),
(860, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '123'),
(861, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '124'),
(862, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '124'),
(863, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '124'),
(864, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '124'),
(865, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '124'),
(866, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '124'),
(867, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '124'),
(868, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '125'),
(869, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '125'),
(870, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '125'),
(871, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '125'),
(872, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '125'),
(873, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '125'),
(874, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '125'),
(875, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '126'),
(876, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '126'),
(877, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '126'),
(878, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '126'),
(879, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '126'),
(880, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '126'),
(881, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '126'),
(882, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '127'),
(883, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '127'),
(884, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '127'),
(885, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '127'),
(886, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '127'),
(887, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '127'),
(888, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '127'),
(889, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '128'),
(890, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '128'),
(891, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '128'),
(892, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '128'),
(893, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '128'),
(894, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '128'),
(895, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '128'),
(896, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '129'),
(897, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '129'),
(898, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '129'),
(899, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '129'),
(900, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '129'),
(901, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '129'),
(902, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '129'),
(903, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '130'),
(904, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '130'),
(905, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '130'),
(906, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '130'),
(907, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '130'),
(908, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '130'),
(909, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '130'),
(910, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '131'),
(911, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '131'),
(912, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '131'),
(913, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '131'),
(914, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '131'),
(915, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '131'),
(916, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '131'),
(917, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '132'),
(918, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '132'),
(919, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '132'),
(920, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '132'),
(921, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '132'),
(922, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '132'),
(923, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '132'),
(924, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '133'),
(925, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '133'),
(926, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '133'),
(927, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '133'),
(928, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '133'),
(929, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '133'),
(930, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '133'),
(931, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '134'),
(932, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '134'),
(933, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '134'),
(934, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '134'),
(935, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '134'),
(936, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '134'),
(937, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '134'),
(938, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '135'),
(939, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '135'),
(940, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '135'),
(941, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '135'),
(942, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '135'),
(943, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '135'),
(944, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '135'),
(945, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '136'),
(946, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '136'),
(947, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '136'),
(948, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '136'),
(949, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '136'),
(950, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '136'),
(951, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '136'),
(952, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '137'),
(953, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '137'),
(954, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '137'),
(955, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '137'),
(956, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '137'),
(957, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '137'),
(958, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '137'),
(959, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '138'),
(960, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '138'),
(961, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '138'),
(962, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '138'),
(963, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '138'),
(964, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '138'),
(965, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '138'),
(966, 'Payment successful sms to patient', 'Dear {name}, Your paying amount - Tk {amount} was successful. Thank You Please contact our support for further queries.', 'payment', 'Active', '139'),
(967, 'Appointment Confirmation sms to patient', 'Dear {name}, Your appointment with {doctorname} on {appoinmentdate} at {time_slot} is confirmed. For more information contact with {hospital_name} Regards', 'appoinment_confirmation', 'Active', '139'),
(968, 'Appointment creation sms to patient', 'Dear {name}, You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} .Please confirm your appointment. For more information contact with {hospital_name} Regards', 'appoinment_creation', 'Active', '139'),
(969, 'Meeting Schedule Notification To Patient', 'Dear {patient_name}, You have a Live Video Meeting with {doctor_name} on {start_time}. For more information contact with {hospital_name} . Regards', 'meeting_creation', 'Active', '139'),
(970, 'send appoint confirmation to Doctor', 'Dear {name}, You are appointed as a doctor in {department} . Thank You {company}', 'doctor', 'Active', '139'),
(971, 'Patient Registration Confirmation', 'Dear {name}, You are registred to {company} as a patient to {doctor}. Regards', 'patient', 'Active', '139'),
(972, 'Appointment Remainder sms to patient', 'Dear {name}, REMAINDER!!<br> You have an appointment with {doctorname} on {appoinmentdate} at {time_slot} . For more information contact with {hospital_name} Regards', 'appoinment_remainder', 'Active', '139');

-- --------------------------------------------------------

--
-- Table structure for table `bankb`
--

CREATE TABLE `bankb` (
  `id` int(100) NOT NULL,
  `group` varchar(100) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `bankb`
--

INSERT INTO `bankb` (`id`, `group`, `status`, `hospital_id`) VALUES
(1, 'A+', '0 Bags', '1'),
(2, 'A-', '0 Bags', '1'),
(3, 'B+', '0 Bags', '1'),
(4, 'B-', '0 Bags', '1'),
(5, 'AB+', '0 Bags', '1'),
(6, 'AB-', '0 Bags', '1'),
(7, 'O+', '0 Bags', '1'),
(8, 'O-', '0 Bags', '1'),
(9, 'A+', '0 Bags', '2'),
(10, 'A-', '0 Bags', '2'),
(11, 'B+', '0 Bags', '2'),
(12, 'B-', '0 Bags', '2'),
(13, 'AB+', '0 Bags', '2'),
(14, 'AB-', '0 Bags', '2'),
(15, 'O+', '0 Bags', '2'),
(16, 'O-', '0 Bags', '2'),
(17, 'A+', '0 Bags', '3'),
(18, 'A-', '0 Bags', '3'),
(19, 'B+', '0 Bags', '3'),
(20, 'B-', '0 Bags', '3'),
(21, 'AB+', '0 Bags', '3'),
(22, 'AB-', '0 Bags', '3'),
(23, 'O+', '0 Bags', '3'),
(24, 'O-', '0 Bags', '3'),
(25, 'A+', '0 Bags', '4'),
(26, 'A-', '0 Bags', '4'),
(27, 'B+', '0 Bags', '4'),
(28, 'B-', '0 Bags', '4'),
(29, 'AB+', '0 Bags', '4'),
(30, 'AB-', '0 Bags', '4'),
(31, 'O+', '0 Bags', '4'),
(32, 'O-', '0 Bags', '4'),
(33, 'A+', '0 Bags', '5'),
(34, 'A-', '0 Bags', '5'),
(35, 'B+', '0 Bags', '5'),
(36, 'B-', '0 Bags', '5'),
(37, 'AB+', '0 Bags', '5'),
(38, 'AB-', '0 Bags', '5'),
(39, 'O+', '0 Bags', '5'),
(40, 'O-', '0 Bags', '5'),
(41, 'A+', '0 Bags', '6'),
(42, 'A-', '0 Bags', '6'),
(43, 'B+', '0 Bags', '6'),
(44, 'B-', '0 Bags', '6'),
(45, 'AB+', '0 Bags', '6'),
(46, 'AB-', '0 Bags', '6'),
(47, 'O+', '0 Bags', '6'),
(48, 'O-', '0 Bags', '6'),
(49, 'A+', '0 Bags', '7'),
(50, 'A-', '0 Bags', '7'),
(51, 'B+', '0 Bags', '7'),
(52, 'B-', '0 Bags', '7'),
(53, 'AB+', '0 Bags', '7'),
(54, 'AB-', '0 Bags', '7'),
(55, 'O+', '0 Bags', '7'),
(56, 'O-', '0 Bags', '7'),
(57, 'A+', '0 Bags', '8'),
(58, 'A-', '0 Bags', '8'),
(59, 'B+', '0 Bags', '8'),
(60, 'B-', '0 Bags', '8'),
(61, 'AB+', '0 Bags', '8'),
(62, 'AB-', '0 Bags', '8'),
(63, 'O+', '0 Bags', '8'),
(64, 'O-', '0 Bags', '8'),
(65, 'A+', '0 Bags', '9'),
(66, 'A-', '0 Bags', '9'),
(67, 'B+', '0 Bags', '9'),
(68, 'B-', '0 Bags', '9'),
(69, 'AB+', '0 Bags', '9'),
(70, 'AB-', '0 Bags', '9'),
(71, 'O+', '0 Bags', '9'),
(72, 'O-', '0 Bags', '9'),
(73, 'A+', '0 Bags', '10'),
(74, 'A-', '0 Bags', '10'),
(75, 'B+', '0 Bags', '10'),
(76, 'B-', '0 Bags', '10'),
(77, 'AB+', '0 Bags', '10'),
(78, 'AB-', '0 Bags', '10'),
(79, 'O+', '0 Bags', '10'),
(80, 'O-', '0 Bags', '10'),
(81, 'A+', '0 Bags', '11'),
(82, 'A-', '0 Bags', '11'),
(83, 'B+', '0 Bags', '11'),
(84, 'B-', '0 Bags', '11'),
(85, 'AB+', '0 Bags', '11'),
(86, 'AB-', '0 Bags', '11'),
(87, 'O+', '0 Bags', '11'),
(88, 'O-', '0 Bags', '11'),
(89, 'A+', '0 Bags', '12'),
(90, 'A-', '0 Bags', '12'),
(91, 'B+', '0 Bags', '12'),
(92, 'B-', '0 Bags', '12'),
(93, 'AB+', '0 Bags', '12'),
(94, 'AB-', '0 Bags', '12'),
(95, 'O+', '0 Bags', '12'),
(96, 'O-', '0 Bags', '12'),
(97, 'A+', '0 Bags', '13'),
(98, 'A-', '0 Bags', '13'),
(99, 'B+', '0 Bags', '13'),
(100, 'B-', '0 Bags', '13'),
(101, 'AB+', '0 Bags', '13'),
(102, 'AB-', '0 Bags', '13'),
(103, 'O+', '0 Bags', '13'),
(104, 'O-', '0 Bags', '13'),
(105, 'A+', '0 Bags', '14'),
(106, 'A-', '0 Bags', '14'),
(107, 'B+', '0 Bags', '14'),
(108, 'B-', '0 Bags', '14'),
(109, 'AB+', '0 Bags', '14'),
(110, 'AB-', '0 Bags', '14'),
(111, 'O+', '0 Bags', '14'),
(112, 'O-', '0 Bags', '14'),
(113, 'A+', '0 Bags', '15'),
(114, 'A-', '0 Bags', '15'),
(115, 'B+', '0 Bags', '15'),
(116, 'B-', '0 Bags', '15'),
(117, 'AB+', '0 Bags', '15'),
(118, 'AB-', '0 Bags', '15'),
(119, 'O+', '0 Bags', '15'),
(120, 'O-', '0 Bags', '15'),
(121, 'A+', '0 Bags', NULL),
(122, 'A-', '0 Bags', NULL),
(123, 'B+', '0 Bags', NULL),
(124, 'B-', '0 Bags', NULL),
(125, 'AB+', '0 Bags', NULL),
(126, 'AB-', '0 Bags', NULL),
(127, 'O+', '0 Bags', NULL),
(128, 'O-', '0 Bags', NULL),
(129, 'A+', '0 Bags', '64'),
(130, 'A-', '0 Bags', '64'),
(131, 'B+', '0 Bags', '64'),
(132, 'B-', '0 Bags', '64'),
(133, 'AB+', '0 Bags', '64'),
(134, 'AB-', '0 Bags', '64'),
(135, 'O+', '0 Bags', '64'),
(136, 'O-', '0 Bags', '64'),
(137, 'A+', '0 Bags', '65'),
(138, 'A-', '0 Bags', '65'),
(139, 'B+', '0 Bags', '65'),
(140, 'B-', '0 Bags', '65'),
(141, 'AB+', '0 Bags', '65'),
(142, 'AB-', '0 Bags', '65'),
(143, 'O+', '0 Bags', '65'),
(144, 'O-', '0 Bags', '65'),
(145, 'A+', '0 Bags', NULL),
(146, 'A-', '0 Bags', NULL),
(147, 'B+', '0 Bags', NULL),
(148, 'B-', '0 Bags', NULL),
(149, 'AB+', '0 Bags', NULL),
(150, 'AB-', '0 Bags', NULL),
(151, 'O+', '0 Bags', NULL),
(152, 'O-', '0 Bags', NULL),
(153, 'A+', '0 Bags', NULL),
(154, 'A-', '0 Bags', NULL),
(155, 'B+', '0 Bags', NULL),
(156, 'B-', '0 Bags', NULL),
(157, 'AB+', '0 Bags', NULL),
(158, 'AB-', '0 Bags', NULL),
(159, 'O+', '0 Bags', NULL),
(160, 'O-', '0 Bags', NULL),
(161, 'A+', '0 Bags', '69'),
(162, 'A-', '0 Bags', '69'),
(163, 'B+', '0 Bags', '69'),
(164, 'B-', '0 Bags', '69'),
(165, 'AB+', '0 Bags', '69'),
(166, 'AB-', '0 Bags', '69'),
(167, 'O+', '0 Bags', '69'),
(168, 'O-', '0 Bags', '69'),
(169, 'A+', '0 Bags', '70'),
(170, 'A-', '0 Bags', '70'),
(171, 'B+', '0 Bags', '70'),
(172, 'B-', '0 Bags', '70'),
(173, 'AB+', '0 Bags', '70'),
(174, 'AB-', '0 Bags', '70'),
(175, 'O+', '0 Bags', '70'),
(176, 'O-', '0 Bags', '70'),
(177, 'A+', '0 Bags', '71'),
(178, 'A-', '0 Bags', '71'),
(179, 'B+', '0 Bags', '71'),
(180, 'B-', '0 Bags', '71'),
(181, 'AB+', '0 Bags', '71'),
(182, 'AB-', '0 Bags', '71'),
(183, 'O+', '0 Bags', '71'),
(184, 'O-', '0 Bags', '71'),
(185, 'A+', '0 Bags', '72'),
(186, 'A-', '0 Bags', '72'),
(187, 'B+', '0 Bags', '72'),
(188, 'B-', '0 Bags', '72'),
(189, 'AB+', '0 Bags', '72'),
(190, 'AB-', '0 Bags', '72'),
(191, 'O+', '0 Bags', '72'),
(192, 'O-', '0 Bags', '72'),
(193, 'A+', '0 Bags', '73'),
(194, 'A-', '0 Bags', '73'),
(195, 'B+', '0 Bags', '73'),
(196, 'B-', '0 Bags', '73'),
(197, 'AB+', '0 Bags', '73'),
(198, 'AB-', '0 Bags', '73'),
(199, 'O+', '0 Bags', '73'),
(200, 'O-', '0 Bags', '73'),
(201, 'A+', '0 Bags', '74'),
(202, 'A-', '0 Bags', '74'),
(203, 'B+', '0 Bags', '74'),
(204, 'B-', '0 Bags', '74'),
(205, 'AB+', '0 Bags', '74'),
(206, 'AB-', '0 Bags', '74'),
(207, 'O+', '0 Bags', '74'),
(208, 'O-', '0 Bags', '74'),
(209, 'A+', '0 Bags', '75'),
(210, 'A-', '0 Bags', '75'),
(211, 'B+', '0 Bags', '75'),
(212, 'B-', '0 Bags', '75'),
(213, 'AB+', '0 Bags', '75'),
(214, 'AB-', '0 Bags', '75'),
(215, 'O+', '0 Bags', '75'),
(216, 'O-', '0 Bags', '75'),
(217, 'A+', '0 Bags', '76'),
(218, 'A-', '0 Bags', '76'),
(219, 'B+', '0 Bags', '76'),
(220, 'B-', '0 Bags', '76'),
(221, 'AB+', '0 Bags', '76'),
(222, 'AB-', '0 Bags', '76'),
(223, 'O+', '0 Bags', '76'),
(224, 'O-', '0 Bags', '76'),
(225, 'A+', '0 Bags', '77'),
(226, 'A-', '0 Bags', '77'),
(227, 'B+', '0 Bags', '77'),
(228, 'B-', '0 Bags', '77'),
(229, 'AB+', '0 Bags', '77'),
(230, 'AB-', '0 Bags', '77'),
(231, 'O+', '0 Bags', '77'),
(232, 'O-', '0 Bags', '77'),
(233, 'A+', '0 Bags', '78'),
(234, 'A-', '0 Bags', '78'),
(235, 'B+', '0 Bags', '78'),
(236, 'B-', '0 Bags', '78'),
(237, 'AB+', '0 Bags', '78'),
(238, 'AB-', '0 Bags', '78'),
(239, 'O+', '0 Bags', '78'),
(240, 'O-', '0 Bags', '78'),
(241, 'A+', '0 Bags', '79'),
(242, 'A-', '0 Bags', '79'),
(243, 'B+', '0 Bags', '79'),
(244, 'B-', '0 Bags', '79'),
(245, 'AB+', '0 Bags', '79'),
(246, 'AB-', '0 Bags', '79'),
(247, 'O+', '0 Bags', '79'),
(248, 'O-', '0 Bags', '79'),
(249, 'A+', '0 Bags', '82'),
(250, 'A-', '0 Bags', '82'),
(251, 'B+', '0 Bags', '82'),
(252, 'B-', '0 Bags', '82'),
(253, 'AB+', '0 Bags', '82'),
(254, 'AB-', '0 Bags', '82'),
(255, 'O+', '0 Bags', '82'),
(256, 'O-', '0 Bags', '82'),
(257, 'A+', '0 Bags', NULL),
(258, 'A-', '0 Bags', NULL),
(259, 'B+', '0 Bags', NULL),
(260, 'B-', '0 Bags', NULL),
(261, 'AB+', '0 Bags', NULL),
(262, 'AB-', '0 Bags', NULL),
(263, 'O+', '0 Bags', NULL),
(264, 'O-', '0 Bags', NULL),
(265, 'A+', '0 Bags', NULL),
(266, 'A-', '0 Bags', NULL),
(267, 'B+', '0 Bags', NULL),
(268, 'B-', '0 Bags', NULL),
(269, 'AB+', '0 Bags', NULL),
(270, 'AB-', '0 Bags', NULL),
(271, 'O+', '0 Bags', NULL),
(272, 'O-', '0 Bags', NULL),
(273, 'A+', '0 Bags', NULL),
(274, 'A-', '0 Bags', NULL),
(275, 'B+', '0 Bags', NULL),
(276, 'B-', '0 Bags', NULL),
(277, 'AB+', '0 Bags', NULL),
(278, 'AB-', '0 Bags', NULL),
(279, 'O+', '0 Bags', NULL),
(280, 'O-', '0 Bags', NULL),
(281, 'A+', '0 Bags', NULL),
(282, 'A-', '0 Bags', NULL),
(283, 'B+', '0 Bags', NULL),
(284, 'B-', '0 Bags', NULL),
(285, 'AB+', '0 Bags', NULL),
(286, 'AB-', '0 Bags', NULL),
(287, 'O+', '0 Bags', NULL),
(288, 'O-', '0 Bags', NULL),
(289, 'A+', '0 Bags', '83'),
(290, 'A-', '0 Bags', '83'),
(291, 'B+', '0 Bags', '83'),
(292, 'B-', '0 Bags', '83'),
(293, 'AB+', '0 Bags', '83'),
(294, 'AB-', '0 Bags', '83'),
(295, 'O+', '0 Bags', '83'),
(296, 'O-', '0 Bags', '83'),
(297, 'A+', '0 Bags', '84'),
(298, 'A-', '0 Bags', '84'),
(299, 'B+', '0 Bags', '84'),
(300, 'B-', '0 Bags', '84'),
(301, 'AB+', '0 Bags', '84'),
(302, 'AB-', '0 Bags', '84'),
(303, 'O+', '0 Bags', '84'),
(304, 'O-', '0 Bags', '84'),
(305, 'A+', '0 Bags', '85'),
(306, 'A-', '0 Bags', '85'),
(307, 'B+', '0 Bags', '85'),
(308, 'B-', '0 Bags', '85'),
(309, 'AB+', '0 Bags', '85'),
(310, 'AB-', '0 Bags', '85'),
(311, 'O+', '0 Bags', '85'),
(312, 'O-', '0 Bags', '85'),
(313, 'A+', '0 Bags', '86'),
(314, 'A-', '0 Bags', '86'),
(315, 'B+', '0 Bags', '86'),
(316, 'B-', '0 Bags', '86'),
(317, 'AB+', '0 Bags', '86'),
(318, 'AB-', '0 Bags', '86'),
(319, 'O+', '0 Bags', '86'),
(320, 'O-', '0 Bags', '86'),
(321, 'A+', '0 Bags', '87'),
(322, 'A-', '0 Bags', '87'),
(323, 'B+', '0 Bags', '87'),
(324, 'B-', '0 Bags', '87'),
(325, 'AB+', '0 Bags', '87'),
(326, 'AB-', '0 Bags', '87'),
(327, 'O+', '0 Bags', '87'),
(328, 'O-', '0 Bags', '87'),
(329, 'A+', '0 Bags', '88'),
(330, 'A-', '0 Bags', '88'),
(331, 'B+', '0 Bags', '88'),
(332, 'B-', '0 Bags', '88'),
(333, 'AB+', '0 Bags', '88'),
(334, 'AB-', '0 Bags', '88'),
(335, 'O+', '0 Bags', '88'),
(336, 'O-', '0 Bags', '88'),
(337, 'A+', '0 Bags', '89'),
(338, 'A-', '0 Bags', '89'),
(339, 'B+', '0 Bags', '89'),
(340, 'B-', '0 Bags', '89'),
(341, 'AB+', '0 Bags', '89'),
(342, 'AB-', '0 Bags', '89'),
(343, 'O+', '0 Bags', '89'),
(344, 'O-', '0 Bags', '89'),
(345, 'A+', '0 Bags', '90'),
(346, 'A-', '0 Bags', '90'),
(347, 'B+', '0 Bags', '90'),
(348, 'B-', '0 Bags', '90'),
(349, 'AB+', '0 Bags', '90'),
(350, 'AB-', '0 Bags', '90'),
(351, 'O+', '0 Bags', '90'),
(352, 'O-', '0 Bags', '90'),
(353, 'A+', '0 Bags', '91'),
(354, 'A-', '0 Bags', '91'),
(355, 'B+', '0 Bags', '91'),
(356, 'B-', '0 Bags', '91'),
(357, 'AB+', '0 Bags', '91'),
(358, 'AB-', '0 Bags', '91'),
(359, 'O+', '0 Bags', '91'),
(360, 'O-', '0 Bags', '91'),
(361, 'A+', '0 Bags', '92'),
(362, 'A-', '0 Bags', '92'),
(363, 'B+', '0 Bags', '92'),
(364, 'B-', '0 Bags', '92'),
(365, 'AB+', '0 Bags', '92'),
(366, 'AB-', '0 Bags', '92'),
(367, 'O+', '0 Bags', '92'),
(368, 'O-', '0 Bags', '92'),
(369, 'A+', '0 Bags', '93'),
(370, 'A-', '0 Bags', '93'),
(371, 'B+', '0 Bags', '93'),
(372, 'B-', '0 Bags', '93'),
(373, 'AB+', '0 Bags', '93'),
(374, 'AB-', '0 Bags', '93'),
(375, 'O+', '0 Bags', '93'),
(376, 'O-', '0 Bags', '93'),
(377, 'A+', '0 Bags', '94'),
(378, 'A-', '0 Bags', '94'),
(379, 'B+', '0 Bags', '94'),
(380, 'B-', '0 Bags', '94'),
(381, 'AB+', '0 Bags', '94'),
(382, 'AB-', '0 Bags', '94'),
(383, 'O+', '0 Bags', '94'),
(384, 'O-', '0 Bags', '94'),
(385, 'A+', '0 Bags', '95'),
(386, 'A-', '0 Bags', '95'),
(387, 'B+', '0 Bags', '95'),
(388, 'B-', '0 Bags', '95'),
(389, 'AB+', '0 Bags', '95'),
(390, 'AB-', '0 Bags', '95'),
(391, 'O+', '0 Bags', '95'),
(392, 'O-', '0 Bags', '95'),
(393, 'A+', '0 Bags', '96'),
(394, 'A-', '0 Bags', '96'),
(395, 'B+', '0 Bags', '96'),
(396, 'B-', '0 Bags', '96'),
(397, 'AB+', '0 Bags', '96'),
(398, 'AB-', '0 Bags', '96'),
(399, 'O+', '0 Bags', '96'),
(400, 'O-', '0 Bags', '96'),
(401, 'A+', '0 Bags', '97'),
(402, 'A-', '0 Bags', '97'),
(403, 'B+', '0 Bags', '97'),
(404, 'B-', '0 Bags', '97'),
(405, 'AB+', '0 Bags', '97'),
(406, 'AB-', '0 Bags', '97'),
(407, 'O+', '0 Bags', '97'),
(408, 'O-', '0 Bags', '97'),
(409, 'A+', '0 Bags', '98'),
(410, 'A-', '0 Bags', '98'),
(411, 'B+', '0 Bags', '98'),
(412, 'B-', '0 Bags', '98'),
(413, 'AB+', '0 Bags', '98'),
(414, 'AB-', '0 Bags', '98'),
(415, 'O+', '0 Bags', '98'),
(416, 'O-', '10 Bags', '98'),
(417, 'A+', '0 Bags', '99'),
(418, 'A-', '0 Bags', '99'),
(419, 'B+', '0 Bags', '99'),
(420, 'B-', '0 Bags', '99'),
(421, 'AB+', '0 Bags', '99'),
(422, 'AB-', '0 Bags', '99'),
(423, 'O+', '0 Bags', '99'),
(424, 'O-', '0 Bags', '99'),
(425, 'A+', '0 Bags', '100'),
(426, 'A-', '0 Bags', '100'),
(427, 'B+', '0 Bags', '100'),
(428, 'B-', '0 Bags', '100'),
(429, 'AB+', '0 Bags', '100'),
(430, 'AB-', '0 Bags', '100'),
(431, 'O+', '0 Bags', '100'),
(432, 'O-', '0 Bags', '100'),
(433, 'A+', '0 Bags', '101'),
(434, 'A-', '0 Bags', '101'),
(435, 'B+', '0 Bags', '101'),
(436, 'B-', '0 Bags', '101'),
(437, 'AB+', '0 Bags', '101'),
(438, 'AB-', '0 Bags', '101'),
(439, 'O+', '0 Bags', '101'),
(440, 'O-', '0 Bags', '101'),
(441, 'A+', '0 Bags', '102'),
(442, 'A-', '0 Bags', '102'),
(443, 'B+', '0 Bags', '102'),
(444, 'B-', '0 Bags', '102'),
(445, 'AB+', '0 Bags', '102'),
(446, 'AB-', '0 Bags', '102'),
(447, 'O+', '0 Bags', '102'),
(448, 'O-', '0 Bags', '102'),
(449, 'A+', '0 Bags', '103'),
(450, 'A-', '0 Bags', '103'),
(451, 'B+', '0 Bags', '103'),
(452, 'B-', '0 Bags', '103'),
(453, 'AB+', '0 Bags', '103'),
(454, 'AB-', '0 Bags', '103'),
(455, 'O+', '0 Bags', '103'),
(456, 'O-', '0 Bags', '103'),
(457, 'A+', '0 Bags', '104'),
(458, 'A-', '0 Bags', '104'),
(459, 'B+', '0 Bags', '104'),
(460, 'B-', '0 Bags', '104'),
(461, 'AB+', '0 Bags', '104'),
(462, 'AB-', '0 Bags', '104'),
(463, 'O+', '0 Bags', '104'),
(464, 'O-', '0 Bags', '104'),
(465, 'A+', '0 Bags', '105'),
(466, 'A-', '0 Bags', '105'),
(467, 'B+', '0 Bags', '105'),
(468, 'B-', '0 Bags', '105'),
(469, 'AB+', '0 Bags', '105'),
(470, 'AB-', '0 Bags', '105'),
(471, 'O+', '0 Bags', '105'),
(472, 'O-', '0 Bags', '105'),
(473, 'A+', '0 Bags', '106'),
(474, 'A-', '0 Bags', '106'),
(475, 'B+', '0 Bags', '106'),
(476, 'B-', '0 Bags', '106'),
(477, 'AB+', '0 Bags', '106'),
(478, 'AB-', '0 Bags', '106'),
(479, 'O+', '0 Bags', '106'),
(480, 'O-', '0 Bags', '106'),
(481, 'A+', '0 Bags', '107'),
(482, 'A-', '0 Bags', '107'),
(483, 'B+', '0 Bags', '107'),
(484, 'B-', '0 Bags', '107'),
(485, 'AB+', '0 Bags', '107'),
(486, 'AB-', '0 Bags', '107'),
(487, 'O+', '0 Bags', '107'),
(488, 'O-', '0 Bags', '107'),
(489, 'A+', '0 Bags', '108'),
(490, 'A-', '0 Bags', '108'),
(491, 'B+', '0 Bags', '108'),
(492, 'B-', '0 Bags', '108'),
(493, 'AB+', '0 Bags', '108'),
(494, 'AB-', '0 Bags', '108'),
(495, 'O+', '0 Bags', '108'),
(496, 'O-', '0 Bags', '108'),
(497, 'A+', '0 Bags', '109'),
(498, 'A-', '0 Bags', '109'),
(499, 'B+', '0 Bags', '109'),
(500, 'B-', '0 Bags', '109'),
(501, 'AB+', '0 Bags', '109'),
(502, 'AB-', '0 Bags', '109'),
(503, 'O+', '0 Bags', '109'),
(504, 'O-', '0 Bags', '109'),
(505, 'A+', '0 Bags', '110'),
(506, 'A-', '0 Bags', '110'),
(507, 'B+', '0 Bags', '110'),
(508, 'B-', '0 Bags', '110'),
(509, 'AB+', '0 Bags', '110'),
(510, 'AB-', '0 Bags', '110'),
(511, 'O+', '0 Bags', '110'),
(512, 'O-', '0 Bags', '110'),
(513, 'A+', '0 Bags', '111'),
(514, 'A-', '0 Bags', '111'),
(515, 'B+', '0 Bags', '111'),
(516, 'B-', '0 Bags', '111'),
(517, 'AB+', '0 Bags', '111'),
(518, 'AB-', '0 Bags', '111'),
(519, 'O+', '0 Bags', '111'),
(520, 'O-', '0 Bags', '111'),
(521, 'A+', '0 Bags', '112'),
(522, 'A-', '0 Bags', '112'),
(523, 'B+', '0 Bags', '112'),
(524, 'B-', '0 Bags', '112'),
(525, 'AB+', '0 Bags', '112'),
(526, 'AB-', '0 Bags', '112'),
(527, 'O+', '0 Bags', '112'),
(528, 'O-', '0 Bags', '112'),
(529, 'A+', '0 Bags', '113'),
(530, 'A-', '0 Bags', '113'),
(531, 'B+', '0 Bags', '113'),
(532, 'B-', '0 Bags', '113'),
(533, 'AB+', '0 Bags', '113'),
(534, 'AB-', '0 Bags', '113'),
(535, 'O+', '0 Bags', '113'),
(536, 'O-', '0 Bags', '113'),
(537, 'A+', '0 Bags', '114'),
(538, 'A-', '0 Bags', '114'),
(539, 'B+', '0 Bags', '114'),
(540, 'B-', '0 Bags', '114'),
(541, 'AB+', '0 Bags', '114'),
(542, 'AB-', '0 Bags', '114'),
(543, 'O+', '0 Bags', '114'),
(544, 'O-', '0 Bags', '114'),
(545, 'A+', '0 Bags', '115'),
(546, 'A-', '0 Bags', '115'),
(547, 'B+', '0 Bags', '115'),
(548, 'B-', '0 Bags', '115'),
(549, 'AB+', '0 Bags', '115'),
(550, 'AB-', '0 Bags', '115'),
(551, 'O+', '0 Bags', '115'),
(552, 'O-', '0 Bags', '115'),
(553, 'A+', '0 Bags', '116'),
(554, 'A-', '0 Bags', '116'),
(555, 'B+', '0 Bags', '116'),
(556, 'B-', '0 Bags', '116'),
(557, 'AB+', '0 Bags', '116'),
(558, 'AB-', '0 Bags', '116'),
(559, 'O+', '0 Bags', '116'),
(560, 'O-', '0 Bags', '116'),
(561, 'A+', '0 Bags', '117'),
(562, 'A-', '0 Bags', '117'),
(563, 'B+', '0 Bags', '117'),
(564, 'B-', '0 Bags', '117'),
(565, 'AB+', '0 Bags', '117'),
(566, 'AB-', '0 Bags', '117'),
(567, 'O+', '0 Bags', '117'),
(568, 'O-', '0 Bags', '117'),
(569, 'A+', '0 Bags', '118'),
(570, 'A-', '0 Bags', '118'),
(571, 'B+', '0 Bags', '118'),
(572, 'B-', '0 Bags', '118'),
(573, 'AB+', '0 Bags', '118'),
(574, 'AB-', '0 Bags', '118'),
(575, 'O+', '0 Bags', '118'),
(576, 'O-', '0 Bags', '118'),
(577, 'A+', '0 Bags', '119'),
(578, 'A-', '0 Bags', '119'),
(579, 'B+', '0 Bags', '119'),
(580, 'B-', '0 Bags', '119'),
(581, 'AB+', '0 Bags', '119'),
(582, 'AB-', '0 Bags', '119'),
(583, 'O+', '0 Bags', '119'),
(584, 'O-', '0 Bags', '119'),
(585, 'A+', '0 Bags', '120'),
(586, 'A-', '0 Bags', '120'),
(587, 'B+', '0 Bags', '120'),
(588, 'B-', '0 Bags', '120'),
(589, 'AB+', '0 Bags', '120'),
(590, 'AB-', '0 Bags', '120'),
(591, 'O+', '0 Bags', '120'),
(592, 'O-', '0 Bags', '120'),
(593, 'A+', '0 Bags', '121'),
(594, 'A-', '0 Bags', '121'),
(595, 'B+', '0 Bags', '121'),
(596, 'B-', '0 Bags', '121'),
(597, 'AB+', '0 Bags', '121'),
(598, 'AB-', '0 Bags', '121'),
(599, 'O+', '0 Bags', '121'),
(600, 'O-', '0 Bags', '121'),
(601, 'A+', '0 Bags', '122'),
(602, 'A-', '0 Bags', '122'),
(603, 'B+', '0 Bags', '122'),
(604, 'B-', '0 Bags', '122'),
(605, 'AB+', '0 Bags', '122'),
(606, 'AB-', '0 Bags', '122'),
(607, 'O+', '0 Bags', '122'),
(608, 'O-', '0 Bags', '122'),
(609, 'A+', '0 Bags', '123'),
(610, 'A-', '0 Bags', '123'),
(611, 'B+', '0 Bags', '123'),
(612, 'B-', '0 Bags', '123'),
(613, 'AB+', '0 Bags', '123'),
(614, 'AB-', '0 Bags', '123'),
(615, 'O+', '0 Bags', '123'),
(616, 'O-', '0 Bags', '123'),
(617, 'A+', '0 Bags', '124'),
(618, 'A-', '0 Bags', '124'),
(619, 'B+', '0 Bags', '124'),
(620, 'B-', '0 Bags', '124'),
(621, 'AB+', '0 Bags', '124'),
(622, 'AB-', '0 Bags', '124'),
(623, 'O+', '0 Bags', '124'),
(624, 'O-', '0 Bags', '124'),
(625, 'A+', '0 Bags', '125'),
(626, 'A-', '0 Bags', '125'),
(627, 'B+', '0 Bags', '125'),
(628, 'B-', '0 Bags', '125'),
(629, 'AB+', '0 Bags', '125'),
(630, 'AB-', '0 Bags', '125'),
(631, 'O+', '0 Bags', '125'),
(632, 'O-', '0 Bags', '125'),
(633, 'A+', '0 Bags', '126'),
(634, 'A-', '0 Bags', '126'),
(635, 'B+', '0 Bags', '126'),
(636, 'B-', '0 Bags', '126'),
(637, 'AB+', '0 Bags', '126'),
(638, 'AB-', '0 Bags', '126'),
(639, 'O+', '0 Bags', '126'),
(640, 'O-', '0 Bags', '126'),
(641, 'A+', '0 Bags', '127'),
(642, 'A-', '0 Bags', '127'),
(643, 'B+', '0 Bags', '127'),
(644, 'B-', '0 Bags', '127'),
(645, 'AB+', '0 Bags', '127'),
(646, 'AB-', '0 Bags', '127'),
(647, 'O+', '0 Bags', '127'),
(648, 'O-', '0 Bags', '127'),
(649, 'A+', '0 Bags', '128'),
(650, 'A-', '0 Bags', '128'),
(651, 'B+', '0 Bags', '128'),
(652, 'B-', '0 Bags', '128'),
(653, 'AB+', '0 Bags', '128'),
(654, 'AB-', '0 Bags', '128'),
(655, 'O+', '0 Bags', '128'),
(656, 'O-', '0 Bags', '128'),
(657, 'A+', '0 Bags', '129'),
(658, 'A-', '0 Bags', '129'),
(659, 'B+', '0 Bags', '129'),
(660, 'B-', '0 Bags', '129'),
(661, 'AB+', '0 Bags', '129'),
(662, 'AB-', '0 Bags', '129'),
(663, 'O+', '0 Bags', '129'),
(664, 'O-', '0 Bags', '129'),
(665, 'A+', '0 Bags', '130'),
(666, 'A-', '0 Bags', '130'),
(667, 'B+', '0 Bags', '130'),
(668, 'B-', '0 Bags', '130'),
(669, 'AB+', '0 Bags', '130'),
(670, 'AB-', '0 Bags', '130'),
(671, 'O+', '0 Bags', '130'),
(672, 'O-', '0 Bags', '130'),
(673, 'A+', '0 Bags', '131'),
(674, 'A-', '0 Bags', '131'),
(675, 'B+', '0 Bags', '131'),
(676, 'B-', '0 Bags', '131'),
(677, 'AB+', '0 Bags', '131'),
(678, 'AB-', '0 Bags', '131'),
(679, 'O+', '0 Bags', '131'),
(680, 'O-', '0 Bags', '131'),
(681, 'A+', '0 Bags', '132'),
(682, 'A-', '0 Bags', '132'),
(683, 'B+', '0 Bags', '132'),
(684, 'B-', '0 Bags', '132'),
(685, 'AB+', '0 Bags', '132'),
(686, 'AB-', '0 Bags', '132'),
(687, 'O+', '0 Bags', '132'),
(688, 'O-', '0 Bags', '132'),
(689, 'A+', '0 Bags', '133'),
(690, 'A-', '0 Bags', '133'),
(691, 'B+', '0 Bags', '133'),
(692, 'B-', '0 Bags', '133'),
(693, 'AB+', '0 Bags', '133'),
(694, 'AB-', '0 Bags', '133'),
(695, 'O+', '0 Bags', '133'),
(696, 'O-', '0 Bags', '133'),
(697, 'A+', '0 Bags', '134'),
(698, 'A-', '0 Bags', '134'),
(699, 'B+', '0 Bags', '134'),
(700, 'B-', '0 Bags', '134'),
(701, 'AB+', '0 Bags', '134'),
(702, 'AB-', '0 Bags', '134'),
(703, 'O+', '0 Bags', '134'),
(704, 'O-', '0 Bags', '134'),
(705, 'A+', '0 Bags', '135'),
(706, 'A-', '0 Bags', '135'),
(707, 'B+', '0 Bags', '135'),
(708, 'B-', '0 Bags', '135'),
(709, 'AB+', '0 Bags', '135'),
(710, 'AB-', '0 Bags', '135'),
(711, 'O+', '0 Bags', '135'),
(712, 'O-', '0 Bags', '135'),
(713, 'A+', '0 Bags', '136'),
(714, 'A-', '0 Bags', '136'),
(715, 'B+', '0 Bags', '136'),
(716, 'B-', '0 Bags', '136'),
(717, 'AB+', '0 Bags', '136'),
(718, 'AB-', '0 Bags', '136'),
(719, 'O+', '0 Bags', '136'),
(720, 'O-', '0 Bags', '136'),
(721, 'A+', '0 Bags', '137'),
(722, 'A-', '0 Bags', '137'),
(723, 'B+', '0 Bags', '137'),
(724, 'B-', '0 Bags', '137'),
(725, 'AB+', '0 Bags', '137'),
(726, 'AB-', '0 Bags', '137'),
(727, 'O+', '0 Bags', '137'),
(728, 'O-', '0 Bags', '137'),
(729, 'A+', '0 Bags', '138'),
(730, 'A-', '0 Bags', '138'),
(731, 'B+', '0 Bags', '138'),
(732, 'B-', '0 Bags', '138'),
(733, 'AB+', '0 Bags', '138'),
(734, 'AB-', '0 Bags', '138'),
(735, 'O+', '0 Bags', '138'),
(736, 'O-', '0 Bags', '138'),
(737, 'A+', '0 Bags', '139'),
(738, 'A-', '0 Bags', '139'),
(739, 'B+', '0 Bags', '139'),
(740, 'B-', '0 Bags', '139'),
(741, 'AB+', '0 Bags', '139'),
(742, 'AB-', '0 Bags', '139'),
(743, 'O+', '0 Bags', '139'),
(744, 'O-', '0 Bags', '139');

-- --------------------------------------------------------

--
-- Table structure for table `bed`
--

CREATE TABLE `bed` (
  `id` int(10) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `number` varchar(100) DEFAULT NULL,
  `description` varchar(100) DEFAULT NULL,
  `last_a_time` varchar(100) DEFAULT NULL,
  `last_d_time` varchar(100) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `bed_id` varchar(100) DEFAULT NULL,
  `current_allotment_id` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `bed_category`
--

CREATE TABLE `bed_category` (
  `id` int(100) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `description` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `bed_category`
--

INSERT INTO `bed_category` (`id`, `category`, `description`, `hospital_id`) VALUES
(6, 'Room 302', 'Room 203', '133');

-- --------------------------------------------------------

--
-- Table structure for table `bed_checkout`
--

CREATE TABLE `bed_checkout` (
  `id` int(100) NOT NULL,
  `date` varchar(1000) DEFAULT NULL,
  `final_diagnosis` varchar(1000) DEFAULT NULL,
  `anatomopatologic_diagnosis` varchar(1000) DEFAULT NULL,
  `dikordance` varchar(1000) DEFAULT NULL,
  `alloted_bed_id` varchar(1000) DEFAULT NULL,
  `doctor` varchar(1000) DEFAULT NULL,
  `epicrisis` varchar(1000) DEFAULT NULL,
  `checkout_state` varchar(1000) DEFAULT NULL,
  `checkout_diagnosis` varchar(1000) DEFAULT NULL,
  `instruction` varchar(1000) DEFAULT NULL,
  `medicine_to_take` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `bed_checkout`
--

INSERT INTO `bed_checkout` (`id`, `date`, `final_diagnosis`, `anatomopatologic_diagnosis`, `dikordance`, `alloted_bed_id`, `doctor`, `epicrisis`, `checkout_state`, `checkout_diagnosis`, `instruction`, `medicine_to_take`, `hospital_id`) VALUES
(22, '09 November 2022 - 04:05 PM', ' ljbkj', ' ', NULL, '76', NULL, ' ', ' ', ' ', '', '', '98'),
(23, '2025-01-12 13:15', ' cxvcxvcxv', ' xcvxcvxc', NULL, '91', '44', ' xcvxcv', ' xcvxcvx', ' xcvxcvx', '<p>xcvcxvxcv</p>', '<p>xcvcxvxcv</p>', '98'),
(24, '2025-01-12 13:20', ' sdfdsfdsf', ' sdfsdf', NULL, '92', '44', ' sdfsdf', ' fsdfsf', ' sfsdf', '<p>sdfdsf</p>', '<p>fsdfsdf</p>', '98');

-- --------------------------------------------------------

--
-- Table structure for table `bed_diagnostic`
--

CREATE TABLE `bed_diagnostic` (
  `id` int(100) NOT NULL,
  `date` varchar(100) DEFAULT NULL,
  `nurse` varchar(100) DEFAULT NULL,
  `payment_procedure` varchar(500) DEFAULT NULL,
  `price` varchar(100) DEFAULT NULL,
  `quantity` varchar(100) DEFAULT NULL,
  `total` varchar(100) DEFAULT NULL,
  `alloted_bed_id` varchar(100) DEFAULT NULL,
  `payment_id` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `bed_diagnostic`
--

INSERT INTO `bed_diagnostic` (`id`, `date`, `nurse`, `payment_procedure`, `price`, `quantity`, `total`, `alloted_bed_id`, `payment_id`, `hospital_id`) VALUES
(85, '1670401902', NULL, '66', '500', '1', '500', '76', '278', '98');

-- --------------------------------------------------------

--
-- Table structure for table `bed_medicine`
--

CREATE TABLE `bed_medicine` (
  `id` int(100) NOT NULL,
  `generic_name` varchar(1000) DEFAULT NULL,
  `medicine_name` varchar(1000) DEFAULT NULL,
  `medicine_id` varchar(1000) DEFAULT NULL,
  `s_price` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL,
  `quantity` varchar(1000) DEFAULT NULL,
  `total` varchar(1000) DEFAULT NULL,
  `alloted_bed_id` varchar(1000) DEFAULT NULL,
  `date` varchar(1000) DEFAULT NULL,
  `payment_id` varchar(1000) DEFAULT NULL,
  `medicine_pharmacy_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `bed_service`
--

CREATE TABLE `bed_service` (
  `id` int(100) NOT NULL,
  `date` varchar(1000) DEFAULT NULL,
  `nurse` varchar(1000) DEFAULT NULL,
  `service` varchar(1000) DEFAULT NULL,
  `price` varchar(1000) DEFAULT NULL,
  `quantity` varchar(100) DEFAULT NULL,
  `total` varchar(100) DEFAULT NULL,
  `alloted_bed_id` varchar(1000) DEFAULT NULL,
  `payment_id` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `blood_group`
--

CREATE TABLE `blood_group` (
  `id` int(100) NOT NULL,
  `bloodgroup` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `blood_group`
--

INSERT INTO `blood_group` (`id`, `bloodgroup`) VALUES
(1, 'A+'),
(2, 'O+'),
(3, 'B+'),
(4, 'AB+'),
(5, 'A-'),
(6, 'O-'),
(7, 'B-'),
(8, 'AB-');

-- --------------------------------------------------------

--
-- Table structure for table `category`
--

CREATE TABLE `category` (
  `id` int(100) NOT NULL,
  `category` varchar(1000) DEFAULT NULL,
  `description` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `category`
--

INSERT INTO `category` (`id`, `category`, `description`, `hospital_id`) VALUES
(11, 'Blood Test', 'Blood Test', '98'),
(12, 'Pathology', 'Pathology', '133');

-- --------------------------------------------------------

--
-- Table structure for table `chat`
--

CREATE TABLE `chat` (
  `id` int(100) NOT NULL,
  `sender_id` varchar(100) DEFAULT NULL,
  `receiver_id` varchar(100) DEFAULT NULL,
  `chat_text` text DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `date_time` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `chat`
--

INSERT INTO `chat` (`id`, `sender_id`, `receiver_id`, `chat_text`, `status`, `date_time`) VALUES
(3, '992', '998', 'Hi', 'read', '2022-07-23 09:44:48'),
(4, '992', '998', 'How are you?', 'read', '2022-09-08 16:00:14'),
(5, '992', '998', 'fvbjkdbvkd', 'read', '2023-03-12 12:56:47'),
(6, '992', '997', 'jdbkbfv', 'read', '2023-03-12 12:57:28'),
(7, '992', '999', 'hi', 'read', '2025-01-06 14:04:07'),
(8, '999', '992', 'hello', 'read', '2025-01-06 14:04:55'),
(9, '999', '1140', 'hi Mr Opu', 'unread', '2025-01-13 13:33:04');

-- --------------------------------------------------------

--
-- Table structure for table `daily_progress`
--

CREATE TABLE `daily_progress` (
  `id` int(100) NOT NULL,
  `date` varchar(1000) DEFAULT NULL,
  `datestamp` varchar(1000) DEFAULT NULL,
  `daily_description` varchar(1000) DEFAULT NULL,
  `description` varchar(1000) DEFAULT NULL,
  `alloted_bed_id` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL,
  `time` varchar(1000) DEFAULT NULL,
  `nurse` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `department`
--

CREATE TABLE `department` (
  `id` int(10) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `description` varchar(1000) DEFAULT NULL,
  `x` varchar(10) DEFAULT NULL,
  `y` varchar(10) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `diagnosis`
--

CREATE TABLE `diagnosis` (
  `id` int(100) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `description` varchar(1000) DEFAULT NULL,
  `code` varchar(255) DEFAULT NULL,
  `disease_with_outbreak_potential` varchar(100) DEFAULT NULL,
  `maximum_expected_number_of_patient_in_a_week` varchar(255) DEFAULT NULL,
  `hospital_id` int(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `diagnosis`
--

INSERT INTO `diagnosis` (`id`, `name`, `description`, `code`, `disease_with_outbreak_potential`, `maximum_expected_number_of_patient_in_a_week`, `hospital_id`) VALUES
(8, 'Dengue', '<p>ICD-10 code&nbsp;<strong>A90</strong>&nbsp;for Dengue fever [classical dengue] is a medical classification as listed by WHO under the range - Certain infectious and parasitic diseases .</p>', 'A90', '1', '1', 98);

-- --------------------------------------------------------

--
-- Table structure for table `diagnostic_report`
--

CREATE TABLE `diagnostic_report` (
  `id` int(100) NOT NULL,
  `date` varchar(100) DEFAULT NULL,
  `invoice` varchar(100) DEFAULT NULL,
  `report` varchar(10000) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `doctor`
--

CREATE TABLE `doctor` (
  `id` int(10) NOT NULL,
  `img_url` varchar(100) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `address` varchar(100) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `department` varchar(100) DEFAULT NULL,
  `profile` varchar(1000) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `y` varchar(10) DEFAULT NULL,
  `ion_user_id` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `department_name` varchar(1000) DEFAULT NULL,
  `appointment_confirmation` varchar(1000) DEFAULT NULL,
  `signature` varchar(1000) DEFAULT NULL,
  `language` varchar(300) DEFAULT NULL,
  `available` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `doctor`
--

INSERT INTO `doctor` (`id`, `img_url`, `name`, `email`, `address`, `phone`, `department`, `profile`, `x`, `y`, `ion_user_id`, `hospital_id`, `department_name`, `appointment_confirmation`, `signature`, `language`, `available`) VALUES
(27, NULL, 'Demo Doctor', 'doctor1@hms.com', 'Binodpur, Rajbari', '01749335505', NULL, '<p>sdfdsf</p>', NULL, NULL, '1070', '114', NULL, 'Active', NULL, NULL, NULL),
(44, 'uploads/UntitledDesign-removebg-preview.png', 'Mr Doctor', 'doctor@hms.com', 'Bashundhara, Dhaka', '01749335508', '30', '<p>sdfsfsdf</p>', NULL, NULL, '1131', '98', 'Medicine', 'Active', 'uploads/d382ea39-715e-4a42-ad8a-0c5090ce43a0-removebg-preview.png', NULL, '1'),
(42, NULL, 'Dr Rahmatullah', 'rahmatullah@example.com', NULL, '1234556788', NULL, NULL, NULL, NULL, '1114', '133', NULL, 'Active', NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `doctor_visit`
--

CREATE TABLE `doctor_visit` (
  `id` int(100) NOT NULL,
  `doctor_id` varchar(1000) DEFAULT NULL,
  `doctor_name` varchar(1000) DEFAULT NULL,
  `visit_description` varchar(1000) DEFAULT NULL,
  `visit_charges` varchar(1000) DEFAULT NULL,
  `status` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(50) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `doctor_visit`
--

INSERT INTO `doctor_visit` (`id`, `doctor_id`, `doctor_name`, `visit_description`, `visit_charges`, `status`, `hospital_id`) VALUES
(18, '44', 'Mr Doctor', '2nd visit', '500', 'active', '98');

-- --------------------------------------------------------

--
-- Table structure for table `donor`
--

CREATE TABLE `donor` (
  `id` int(100) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `group` varchar(10) DEFAULT NULL,
  `age` varchar(10) DEFAULT NULL,
  `sex` varchar(10) DEFAULT NULL,
  `ldd` varchar(100) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `add_date` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `draft_payment`
--

CREATE TABLE `draft_payment` (
  `id` int(100) NOT NULL,
  `category_name` varchar(1000) DEFAULT NULL,
  `patient` varchar(1000) DEFAULT NULL,
  `date` varchar(1000) DEFAULT NULL,
  `amount` varchar(1000) DEFAULT NULL,
  `doctor` varchar(1000) DEFAULT NULL,
  `discount` varchar(1000) DEFAULT NULL,
  `flat_discount` varchar(1000) DEFAULT NULL,
  `gross_total` varchar(1000) DEFAULT NULL,
  `user` varchar(1000) DEFAULT NULL,
  `patient_name` varchar(1000) DEFAULT NULL,
  `patient_phone` varchar(1000) DEFAULT NULL,
  `patient_address` varchar(1000) DEFAULT NULL,
  `patient_email` varchar(1000) DEFAULT NULL,
  `patient_gender` varchar(1000) DEFAULT NULL,
  `date_string` varchar(1000) DEFAULT NULL,
  `remarks` varchar(1000) DEFAULT NULL,
  `date_delivery` varchar(1000) DEFAULT NULL,
  `doctor_phone` varchar(1000) DEFAULT NULL,
  `age` varchar(100) DEFAULT NULL,
  `birthdate` varchar(100) DEFAULT NULL,
  `deposit_type` varchar(1000) DEFAULT NULL,
  `doctor_name` varchar(1000) DEFAULT NULL,
  `doctor_email` varchar(1000) DEFAULT NULL,
  `time_delivery` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `amount_received` varchar(100) DEFAULT NULL,
  `vat` varchar(100) DEFAULT NULL,
  `percent_discount` varchar(100) DEFAULT NULL,
  `vat_amount_percent` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `email`
--

CREATE TABLE `email` (
  `id` int(100) NOT NULL,
  `subject` varchar(100) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `message` varchar(10000) DEFAULT NULL,
  `reciepient` varchar(100) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `email_settings`
--

CREATE TABLE `email_settings` (
  `id` int(100) NOT NULL,
  `admin_email` varchar(100) DEFAULT NULL,
  `type` varchar(100) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `password` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `smtp_host` varchar(1000) DEFAULT NULL,
  `smtp_port` varchar(1000) DEFAULT NULL,
  `send_multipart` varchar(1000) DEFAULT NULL,
  `mail_provider` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `email_settings`
--

INSERT INTO `email_settings` (`id`, `admin_email`, `type`, `user`, `password`, `hospital_id`, `smtp_host`, `smtp_port`, `send_multipart`, `mail_provider`) VALUES
(34, 'info@codearistos.nett', 'Domain Email', '', '', 'superadmin', '', '', '', NULL),
(190, NULL, 'Smtp', NULL, NULL, '9', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(191, 'Admin Email', 'Domain Email', NULL, NULL, '9', NULL, NULL, NULL, NULL),
(192, NULL, 'Smtp', NULL, NULL, '10', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(188, 'Admin Email', 'Domain Email', NULL, NULL, '8', NULL, NULL, NULL, NULL),
(189, 'rizvi.mahmud.plabon@gmail.com', NULL, NULL, NULL, 'contactus', NULL, NULL, NULL, NULL),
(187, NULL, 'Smtp', NULL, NULL, '8', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(186, 'Admin Email', 'Domain Email', NULL, NULL, '7', NULL, NULL, NULL, NULL),
(185, NULL, 'Smtp', NULL, NULL, '7', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(184, 'Admin Email', 'Domain Email', NULL, NULL, '6', NULL, NULL, NULL, NULL),
(183, NULL, 'Smtp', NULL, NULL, '6', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(182, 'Admin Email', 'Domain Email', NULL, NULL, '5', NULL, NULL, NULL, NULL),
(181, NULL, 'Smtp', NULL, NULL, '5', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(180, 'Admin Email', 'Domain Email', NULL, NULL, '4', NULL, NULL, NULL, NULL),
(178, 'Admin Email', 'Domain Email', NULL, NULL, '3', NULL, NULL, NULL, NULL),
(177, NULL, 'Smtp', NULL, NULL, '3', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(176, 'Admin Email', 'Domain Email', NULL, NULL, '2', NULL, NULL, NULL, NULL),
(175, NULL, 'Smtp', 'sahashaibal9@gmail.com', '', '2', 'smtp.gmail.com', '587', '1', 'gmail'),
(174, 'Admin Email', 'Domain Email', NULL, NULL, '1', NULL, NULL, NULL, NULL),
(179, NULL, 'Smtp', 'rizvi.mahmud.plabon@gmail.com@gmail.com', '', '4', 'smtp.gmail.com', '587', '1', 'gmail'),
(173, NULL, 'Smtp', 'sahashaibal22@gmail.com', '', '1', 'smtp.gmail.com', '587', '1', 'gmail'),
(193, 'Admin Email', 'Domain Email', NULL, NULL, '10', NULL, NULL, NULL, NULL),
(194, NULL, 'Smtp', NULL, NULL, '11', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(195, 'Admin Email', 'Domain Email', NULL, NULL, '11', NULL, NULL, NULL, NULL),
(196, NULL, 'Smtp', NULL, NULL, '12', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(197, 'Admin Email', 'Domain Email', NULL, NULL, '12', NULL, NULL, NULL, NULL),
(198, NULL, 'Smtp', NULL, NULL, '13', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(199, 'Admin Email', 'Domain Email', NULL, NULL, '13', NULL, NULL, NULL, NULL),
(200, NULL, 'Smtp', NULL, NULL, '14', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(201, 'Admin Email', 'Domain Email', NULL, NULL, '14', NULL, NULL, NULL, NULL),
(202, NULL, 'Smtp', NULL, NULL, '15', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(203, 'Admin Email', 'Domain Email', NULL, NULL, '15', NULL, NULL, NULL, NULL),
(204, NULL, 'Smtp', NULL, NULL, NULL, 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(205, 'Admin Email', 'Domain Email', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(206, NULL, 'Smtp', NULL, NULL, '64', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(207, 'Admin Email', 'Domain Email', NULL, NULL, '64', NULL, NULL, NULL, NULL),
(208, NULL, 'Smtp', NULL, NULL, '65', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(209, 'Admin Email', 'Domain Email', NULL, NULL, '65', NULL, NULL, NULL, NULL),
(210, NULL, 'Smtp', NULL, NULL, NULL, 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(211, 'Admin Email', 'Domain Email', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(212, NULL, 'Smtp', NULL, NULL, NULL, 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(213, 'Admin Email', 'Domain Email', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(214, NULL, 'Smtp', NULL, NULL, '69', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(215, 'Admin Email', 'Domain Email', NULL, NULL, '69', NULL, NULL, NULL, NULL),
(216, NULL, 'Smtp', NULL, NULL, '70', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(217, 'Admin Email', 'Domain Email', NULL, NULL, '70', NULL, NULL, NULL, NULL),
(218, NULL, 'Smtp', NULL, NULL, '71', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(219, 'Admin Email', 'Domain Email', NULL, NULL, '71', NULL, NULL, NULL, NULL),
(220, NULL, 'Smtp', NULL, NULL, '72', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(221, 'Admin Email', 'Domain Email', NULL, NULL, '72', NULL, NULL, NULL, NULL),
(222, NULL, 'Smtp', NULL, NULL, '73', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(223, 'Admin Email', 'Domain Email', NULL, NULL, '73', NULL, NULL, NULL, NULL),
(224, NULL, 'Smtp', NULL, NULL, '74', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(225, 'Admin Email', 'Domain Email', NULL, NULL, '74', NULL, NULL, NULL, NULL),
(226, NULL, 'Smtp', NULL, NULL, '75', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(227, 'Admin Email', 'Domain Email', NULL, NULL, '75', NULL, NULL, NULL, NULL),
(228, NULL, 'Smtp', NULL, NULL, '76', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(229, 'Admin Email', 'Domain Email', NULL, NULL, '76', NULL, NULL, NULL, NULL),
(230, NULL, 'Smtp', NULL, NULL, '77', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(231, 'Admin Email', 'Domain Email', NULL, NULL, '77', NULL, NULL, NULL, NULL),
(232, NULL, 'Smtp', NULL, NULL, '78', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(233, 'Admin Email', 'Domain Email', NULL, NULL, '78', NULL, NULL, NULL, NULL),
(234, NULL, 'Smtp', NULL, NULL, '79', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(235, 'Admin Email', 'Domain Email', NULL, NULL, '79', NULL, NULL, NULL, NULL),
(236, NULL, 'Smtp', NULL, NULL, '82', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(237, 'Admin Email', 'Domain Email', NULL, NULL, '82', NULL, NULL, NULL, NULL),
(238, NULL, 'Smtp', NULL, NULL, NULL, 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(239, 'Admin Email', 'Domain Email', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(240, NULL, 'Smtp', NULL, NULL, NULL, 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(241, 'Admin Email', 'Domain Email', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(242, NULL, 'Smtp', NULL, NULL, NULL, 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(243, 'Admin Email', 'Domain Email', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(244, NULL, 'Smtp', NULL, NULL, NULL, 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(245, 'Admin Email', 'Domain Email', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(246, NULL, 'Smtp', NULL, NULL, '83', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(247, 'Admin Email', 'Domain Email', NULL, NULL, '83', NULL, NULL, NULL, NULL),
(248, NULL, 'Smtp', NULL, NULL, '84', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(249, 'Admin Email', 'Domain Email', NULL, NULL, '84', NULL, NULL, NULL, NULL),
(250, NULL, 'Smtp', NULL, NULL, '85', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(251, 'Admin Email', 'Domain Email', NULL, NULL, '85', NULL, NULL, NULL, NULL),
(252, NULL, 'Smtp', NULL, NULL, '86', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(253, 'Admin Email', 'Domain Email', NULL, NULL, '86', NULL, NULL, NULL, NULL),
(254, NULL, 'Smtp', NULL, NULL, '87', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(255, 'Admin Email', 'Domain Email', NULL, NULL, '87', NULL, NULL, NULL, NULL),
(256, NULL, 'Smtp', NULL, NULL, '88', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(257, 'Admin Email', 'Domain Email', NULL, NULL, '88', NULL, NULL, NULL, NULL),
(258, NULL, 'Smtp', NULL, NULL, '89', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(259, 'Admin Email', 'Domain Email', NULL, NULL, '89', NULL, NULL, NULL, NULL),
(260, NULL, 'Smtp', NULL, NULL, '90', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(261, 'Admin Email', 'Domain Email', NULL, NULL, '90', NULL, NULL, NULL, NULL),
(262, NULL, 'Smtp', NULL, NULL, '91', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(263, 'Admin Email', 'Domain Email', NULL, NULL, '91', NULL, NULL, NULL, NULL),
(264, NULL, 'Smtp', NULL, NULL, '92', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(265, 'Admin Email', 'Domain Email', NULL, NULL, '92', NULL, NULL, NULL, NULL),
(266, NULL, 'Smtp', NULL, NULL, '93', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(267, 'Admin Email', 'Domain Email', NULL, NULL, '93', NULL, NULL, NULL, NULL),
(268, NULL, 'Smtp', NULL, NULL, '94', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(269, 'Admin Email', 'Domain Email', NULL, NULL, '94', NULL, NULL, NULL, NULL),
(270, NULL, 'Smtp', NULL, NULL, '95', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(271, 'Admin Email', 'Domain Email', NULL, NULL, '95', NULL, NULL, NULL, NULL),
(272, NULL, 'Smtp', NULL, NULL, '96', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(273, 'Admin Email', 'Domain Email', NULL, NULL, '96', NULL, NULL, NULL, NULL),
(274, NULL, 'Smtp', NULL, NULL, '97', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(275, 'Admin Email', 'Domain Email', NULL, NULL, '97', NULL, NULL, NULL, NULL),
(276, NULL, 'Smtp', 'tanvir.wakeupict@gmail.com', 'a3ZmcyB6ZXViIHZwdXggZWtsag==', '98', 'smtp.gmail.com', '587', '1', 'gmail'),
(277, 'Admin Email', 'Domain Email', NULL, NULL, '98', NULL, NULL, NULL, NULL),
(278, NULL, 'Smtp', NULL, NULL, '99', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(279, 'Admin Email', 'Domain Email', NULL, NULL, '99', NULL, NULL, NULL, NULL),
(280, NULL, 'Smtp', NULL, NULL, '100', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(281, 'Admin Email', 'Domain Email', NULL, NULL, '100', NULL, NULL, NULL, NULL),
(282, NULL, 'Smtp', NULL, NULL, '101', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(283, 'Admin Email', 'Domain Email', NULL, NULL, '101', NULL, NULL, NULL, NULL),
(284, NULL, 'Smtp', NULL, NULL, '102', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(285, 'Admin Email', 'Domain Email', NULL, NULL, '102', NULL, NULL, NULL, NULL),
(286, NULL, 'Smtp', NULL, NULL, '103', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(287, 'Admin Email', 'Domain Email', NULL, NULL, '103', NULL, NULL, NULL, NULL),
(288, NULL, 'Smtp', NULL, NULL, '104', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(289, 'Admin Email', 'Domain Email', NULL, NULL, '104', NULL, NULL, NULL, NULL),
(290, NULL, 'Smtp', NULL, NULL, '105', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(291, 'Admin Email', 'Domain Email', NULL, NULL, '105', NULL, NULL, NULL, NULL),
(292, NULL, 'Smtp', NULL, NULL, '106', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(293, 'Admin Email', 'Domain Email', NULL, NULL, '106', NULL, NULL, NULL, NULL),
(294, NULL, 'Smtp', NULL, NULL, '107', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(295, 'Admin Email', 'Domain Email', NULL, NULL, '107', NULL, NULL, NULL, NULL),
(296, NULL, 'Smtp', NULL, NULL, '108', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(297, 'Admin Email', 'Domain Email', NULL, NULL, '108', NULL, NULL, NULL, NULL),
(298, NULL, 'Smtp', NULL, NULL, '109', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(299, 'Admin Email', 'Domain Email', NULL, NULL, '109', NULL, NULL, NULL, NULL),
(300, NULL, 'Smtp', NULL, NULL, '110', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(301, 'Admin Email', 'Domain Email', NULL, NULL, '110', NULL, NULL, NULL, NULL),
(302, NULL, 'Smtp', NULL, NULL, '111', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(303, 'Admin Email', 'Domain Email', NULL, NULL, '111', NULL, NULL, NULL, NULL),
(304, NULL, 'Smtp', NULL, NULL, '112', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(305, 'Admin Email', 'Domain Email', NULL, NULL, '112', NULL, NULL, NULL, NULL),
(306, NULL, 'Smtp', NULL, NULL, '113', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(307, 'Admin Email', 'Domain Email', NULL, NULL, '113', NULL, NULL, NULL, NULL),
(308, NULL, 'Smtp', NULL, NULL, '114', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(309, 'Admin Email', 'Domain Email', NULL, NULL, '114', NULL, NULL, NULL, NULL),
(310, NULL, 'Smtp', NULL, NULL, '115', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(311, 'Admin Email', 'Domain Email', NULL, NULL, '115', NULL, NULL, NULL, NULL),
(312, NULL, 'Smtp', NULL, NULL, '116', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(313, 'Admin Email', 'Domain Email', NULL, NULL, '116', NULL, NULL, NULL, NULL),
(314, NULL, 'Smtp', NULL, NULL, '117', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(315, 'Admin Email', 'Domain Email', NULL, NULL, '117', NULL, NULL, NULL, NULL),
(316, NULL, 'Smtp', NULL, NULL, '118', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(317, 'Admin Email', 'Domain Email', NULL, NULL, '118', NULL, NULL, NULL, NULL),
(318, NULL, 'Smtp', NULL, NULL, '119', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(319, 'Admin Email', 'Domain Email', NULL, NULL, '119', NULL, NULL, NULL, NULL),
(320, NULL, 'Smtp', NULL, NULL, '120', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(321, 'Admin Email', 'Domain Email', NULL, NULL, '120', NULL, NULL, NULL, NULL),
(322, NULL, 'Smtp', NULL, NULL, '121', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(323, 'Admin Email', 'Domain Email', NULL, NULL, '121', NULL, NULL, NULL, NULL),
(324, NULL, 'Smtp', NULL, NULL, '122', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(325, 'Admin Email', 'Domain Email', NULL, NULL, '122', NULL, NULL, NULL, NULL),
(326, NULL, 'Smtp', NULL, NULL, '123', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(327, 'Admin Email', 'Domain Email', NULL, NULL, '123', NULL, NULL, NULL, NULL),
(328, NULL, 'Smtp', NULL, NULL, '124', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(329, 'Admin Email', 'Domain Email', NULL, NULL, '124', NULL, NULL, NULL, NULL),
(330, NULL, 'Smtp', NULL, NULL, '125', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(331, 'Admin Email', 'Domain Email', NULL, NULL, '125', NULL, NULL, NULL, NULL),
(332, NULL, 'Smtp', NULL, NULL, '126', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(333, 'Admin Email', 'Domain Email', NULL, NULL, '126', NULL, NULL, NULL, NULL),
(334, NULL, 'Smtp', NULL, NULL, '127', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(335, 'Admin Email', 'Domain Email', NULL, NULL, '127', NULL, NULL, NULL, NULL),
(336, NULL, 'Smtp', NULL, NULL, '128', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(337, 'Admin Email', 'Domain Email', NULL, NULL, '128', NULL, NULL, NULL, NULL),
(338, NULL, 'Smtp', NULL, NULL, '129', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(339, 'Admin Email', 'Domain Email', NULL, NULL, '129', NULL, NULL, NULL, NULL),
(340, NULL, 'Smtp', NULL, NULL, '130', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(341, 'Admin Email', 'Domain Email', NULL, NULL, '130', NULL, NULL, NULL, NULL),
(342, NULL, 'Smtp', NULL, NULL, '131', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(343, 'Admin Email', 'Domain Email', NULL, NULL, '131', NULL, NULL, NULL, NULL),
(344, NULL, 'Smtp', 'example@gmail.com', 'MTIzNDU=', '132', 'smtp.gmail.com', '587', '1', 'gmail'),
(345, 'Admin Email', 'Domain Email', NULL, NULL, '132', NULL, NULL, NULL, NULL),
(346, NULL, 'Smtp', 'example@gmail.com', 'MTIzNDU=', '133', 'smtp.gmail.com', '587', '1', 'gmail'),
(347, 'Admin Email', 'Domain Email', NULL, NULL, '133', NULL, NULL, NULL, NULL),
(348, NULL, 'Smtp', NULL, NULL, '134', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(349, 'Admin Email', 'Domain Email', NULL, NULL, '134', NULL, NULL, NULL, NULL),
(350, NULL, 'Smtp', NULL, NULL, '135', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(351, 'Admin Email', 'Domain Email', NULL, NULL, '135', NULL, NULL, NULL, NULL),
(352, NULL, 'Smtp', NULL, NULL, '136', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(353, 'Admin Email', 'Domain Email', NULL, NULL, '136', NULL, NULL, NULL, NULL),
(354, NULL, 'Smtp', NULL, NULL, '137', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(355, 'Admin Email', 'Domain Email', NULL, NULL, '137', NULL, NULL, NULL, NULL),
(356, NULL, 'Smtp', NULL, NULL, '138', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(357, 'Admin Email', 'Domain Email', NULL, NULL, '138', NULL, NULL, NULL, NULL),
(358, NULL, 'Smtp', NULL, NULL, '139', 'smtp_host', 'smtp_port', 'send_multipart', 'mail_provider'),
(359, 'Admin Email', 'Domain Email', NULL, NULL, '139', NULL, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `emergency`
--

CREATE TABLE `emergency` (
  `id` int(11) NOT NULL,
  `patient` varchar(100) NOT NULL,
  `doctor` varchar(100) NOT NULL,
  `emergency_type` varchar(100) NOT NULL,
  `description` text NOT NULL,
  `status` varchar(50) NOT NULL,
  `hospital_id` varchar(100) NOT NULL,
  `date` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `emergency`
--

INSERT INTO `emergency` (`id`, `patient`, `doctor`, `emergency_type`, `description`, `status`, `hospital_id`, `date`) VALUES
(1, '1', '7', 'Covid - 19', 'Sars Virus', '', 'Active', '2024-09-15 05:58:05');

-- --------------------------------------------------------

--
-- Table structure for table `expense`
--

CREATE TABLE `expense` (
  `id` int(10) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `amount` varchar(100) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `datestring` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `expense_category`
--

CREATE TABLE `expense_category` (
  `id` int(10) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `description` varchar(100) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `y` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `facilitie`
--

CREATE TABLE `facilitie` (
  `id` int(100) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `align` varchar(100) DEFAULT NULL,
  `z` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `facilitie`
--

INSERT INTO `facilitie` (`id`, `title`, `align`, `z`) VALUES
(1, 'Open source for easy customization.', 'Right', NULL),
(2, 'Host in your secure server.', 'Right', NULL),
(3, 'No monthly or yearly fees.', 'Right', NULL),
(4, '24/7 customer support.', 'Right', NULL),
(5, 'Multi-language system', 'Right', NULL),
(6, 'Admin and customer has separate UI and login system', 'Right', NULL),
(7, 'Email and SMS gateway adding for marketing', 'Right', NULL),
(8, 'Project mobile app integration module', 'Right', NULL),
(9, 'Complete hospital management solution', 'Right', NULL),
(10, 'Prescription management system', 'Right', NULL),
(11, 'Doctor management system', 'Right', NULL),
(12, 'Insurance management systemm', 'Right', NULL),
(13, 'Billing management system', 'Right', NULL),
(14, 'Role-based permission setup system', 'Right', NULL),
(15, 'Multiple Email and SMS gateway added', 'Left', NULL),
(16, 'Human resource system', 'Left', NULL),
(17, 'Complete bed management system', 'Left', NULL),
(18, 'Medication and visits system', 'Left', NULL),
(19, 'Case manager management system', 'Left', NULL),
(20, 'Patient separate login and appointment system', 'Left', NULL),
(21, 'Hospital inquiry system', 'Left', NULL),
(22, 'LTR and RTL version', 'Left', NULL),
(23, 'Any language changes from frontend and backend', 'Left', NULL),
(24, 'Pharmacy management system', 'Left', NULL),
(25, 'Appointment management system', 'Left', NULL),
(26, 'Investigation system report', 'Left', NULL),
(27, 'Paid android apps system if you need', 'Left', NULL),
(28, 'Full accounting system of hospital and its report', 'Left', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `faq`
--

CREATE TABLE `faq` (
  `id` int(100) NOT NULL,
  `title` varchar(500) DEFAULT NULL,
  `description` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `faq`
--

INSERT INTO `faq` (`id`, `title`, `description`) VALUES
(1, 'Administrative Module', 'We have designed the administrative module for a hospital owner or the person who is accountable to operate the entire hospital smoothly. Using this module, you can manage the entire system easily and efficiently. Because this module includes every important feature like doctors portal, patient portal, appointment scheduling, prescription management, human resource management, bed management, employee, accounts, software settings, role assigning, etc.'),
(2, 'Doctor Module', 'A doctor is the most important person to ensure the health condition of any patient. For this purpose, this software has a doctor module. Using this module, doctors can access all important functions that belong to them. As a result, they can maintain patient portals, appointment scheduling & maintaining, prescription making, and any other things that are related to hospital activities.'),
(3, 'Accountants Module', 'Accountants are responsible to control monetary flow, profit-and- loss calculation. Patients are considered the main factor of this software. Moreover, they are the key earning source of this system. So this module allows access to the patient portal. Besides, the Accountant module also has the access account creation option, like debit or credit account based on expense and earning, employee name, and billing. With this software, you can get a complete clinic management system that helps to understand both technical or non-technical people.');

-- --------------------------------------------------------

--
-- Table structure for table `featured`
--

CREATE TABLE `featured` (
  `id` int(100) NOT NULL,
  `img_url` varchar(1000) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `profile` varchar(100) DEFAULT NULL,
  `description` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `featured`
--

INSERT INTO `featured` (`id`, `img_url`, `name`, `profile`, `description`, `hospital_id`) VALUES
(1, 'uploads/images.jpg', 'Dr Momenuzzaman', 'Cardiac Specialized', '<p>Redantium, totam rem aperiam, eaque ipsa qu ab illo inventore veritatis et quasi architectos beatae vitae dicta sunt explicabo. Nemo enims sadips ipsums un.sd</p>\r\n', '466'),
(2, 'uploads/doctor.png', 'Dr RahmatUllah Asif', 'Cardiac Specialized', 'Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence', '466'),
(3, 'uploads/download_(2)2.png', 'Dr A.R.M. Jamil', 'Cardiac Specialized', 'Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence', '466'),
(4, 'uploads/inlinePreview.jpg', 'Hospital Management Syatem', 'Cardiac Specialized', '<p>bfbjfbsjbjsbfjsbf</p>\r\n', '466');

-- --------------------------------------------------------

--
-- Table structure for table `file`
--

CREATE TABLE `file` (
  `id` int(50) NOT NULL,
  `title` varchar(300) DEFAULT NULL,
  `img_url` varchar(300) DEFAULT NULL,
  `module` varchar(500) DEFAULT NULL,
  `hospital_id` varchar(50) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `folder`
--

CREATE TABLE `folder` (
  `id` int(50) NOT NULL,
  `folder_name` varchar(500) DEFAULT NULL,
  `patient` varchar(50) DEFAULT NULL,
  `add_date` varchar(50) DEFAULT NULL,
  `folder_path` varchar(500) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `folder`
--

INSERT INTO `folder` (`id`, `folder_name`, `patient`, `add_date`, `folder_path`, `hospital_id`) VALUES
(101, 'Testing', '10', '01/13/22', '/uploads/documents/Testing', '98'),
(109, 'New folder', '11', '03/05/24', '/uploads/documents/New folder', '98');

-- --------------------------------------------------------

--
-- Table structure for table `gallery`
--

CREATE TABLE `gallery` (
  `id` int(10) NOT NULL,
  `img` varchar(500) NOT NULL,
  `position` varchar(100) NOT NULL,
  `status` varchar(100) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `gallery`
--

INSERT INTO `gallery` (`id`, `img`, `position`, `status`) VALUES
(1, 'uploads/gallery-img-1.png', '1', 'Active'),
(2, 'uploads/gallery-img-2.png', '2', 'Active'),
(3, 'uploads/gallery-img-3.png', '3', 'Active'),
(4, 'uploads/gallery-img-4.png', '4', 'Active'),
(5, 'uploads/gallery-img-5.png', '5', 'Active'),
(6, 'uploads/gallery-img-6.png', '6', 'Active');

-- --------------------------------------------------------

--
-- Table structure for table `google_captcha`
--

CREATE TABLE `google_captcha` (
  `id` int(100) NOT NULL,
  `site_key` varchar(1000) DEFAULT NULL,
  `secret_key` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `google_captcha`
--

INSERT INTO `google_captcha` (`id`, `site_key`, `secret_key`, `hospital_id`) VALUES
(1, '6LeuBKYrAAAAAMUwep7iUED6WLbtSQ4EMCo1Iw0D', '6LeuBKYrAAAAAJKU599x_oBsMYjgOEfjvxxmQuu3', '98');

-- --------------------------------------------------------

--
-- Table structure for table `gpt_memory`
--

CREATE TABLE `gpt_memory` (
  `id` int(100) NOT NULL,
  `module_name` varchar(100) DEFAULT NULL,
  `module_row_id` varchar(100) DEFAULT NULL,
  `session_id` varchar(100) DEFAULT NULL,
  `history` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `gpt_memory`
--

INSERT INTO `gpt_memory` (`id`, `module_name`, `module_row_id`, `session_id`, `history`) VALUES
(4, 'case', '23', '98-case-23', '[{\"role\":\"user\",\"content\":\"You are a doctor. Advice according to the case described here. This is the case: . \\n\\nPatient Case:\\n\\nDemographics: John Smith, a 25-year-old male.\\nPresenting Complaint: Sore throat for three days, which worsens with swallowing.\\nHistory of Present Illness: The patient reports no cough, rhinorrhea, or other cold symptoms. He mentions that his roommate was recently diagnosed with strep throat.\\nPast Medical History: No significant history.\\nSocial History: Non-smoker, occasional alcohol, university student living in shared accommodation.\\nReview of Systems: No fever, rash, joint pains, or breathing difficulties.\\n\\nPhysical Examination:\\n\\nVital Signs: Normal.\\nThroat: Red, swollen pharynx with no exudates; no tonsillar enlargement.\\nNeck: No palpable lymphadenopathy.\\nThe rest of the physical examination is unremarkable.\\n\\n\\n\"},{\"role\":\"system\",\"content\":\"Based on the patient\'s history and physical examination findings, it is likely that John Smith has developed a viral pharyngitis, which is a common cause of sore throat in young adults. However, given his close contact with a roommate diagnosed with strep throat, it is important to consider testing for streptococcal pharyngitis as well.\\n\\nI would recommend performing a rapid strep test to rule out strep throat, as this would require antibiotic treatment. In the meantime, I would advise John to rest, stay hydrated, and take over-the-counter pain relievers such as acetaminophen or ibuprofen to help with his symptoms. Gargling with warm salt water or using throat lozenges may also provide some relief.\\n\\nI would also advise John to practice good hand hygiene to prevent spreading the infection to others in his shared accommodation. If the rapid strep test is positive, he should follow up with his healthcare provider for further evaluation and treatment.\\n\\nOverall, it is important for John to monitor his symptoms and seek medical attention if they worsen or if he develops any new concerning symptoms.\"},{\"role\":\"user\",\"content\":\"You are a doctor. Advice according to the case described here. This is the case: Now what to do?\"},{\"role\":\"system\",\"content\":\"Based on the information provided, it is likely that John Smith is experiencing symptoms of a viral pharyngitis or possibly streptococcal pharyngitis. Here are the steps to take:\\n\\n1. **Testing**: Consider performing a rapid strep test to rule out strep throat, especially given his close contact with a roommate who was diagnosed with strep throat.\\n\\n2. **Treatment**: If the rapid strep test is positive, John will likely need antibiotic treatment. If it is negative, the sore throat is likely viral in nature and will resolve on its own. In either case, symptomatic treatment with rest, hydration, and over-the-counter pain relievers is recommended.\\n\\n3. **Prevention**: Encourage John to practice good hand hygiene to prevent spreading the infection to others in his shared accommodation.\\n\\n4. **Follow-up**: Advise John to monitor his symptoms and seek medical attention if they worsen or if he develops any new concerning symptoms.\\n\\nIt is important for John to follow these recommendations and seek medical advice if needed for proper management of his sore throat.\"}]'),
(5, 'case', '24', '98-case-24', '[{\"role\":\"user\",\"content\":\"You are a doctor. Advice according to the case described here. This is the case: \\nPersistent fatigue and weakness.\\nShortness of breath, especially during physical activities.\\nSwelling in the legs, ankles, and feet.\\nRapid or irregular heartbeat.\\nReduced ability to exercise.\\nPersistent cough or wheezing with white or pink blood-tinged phlegm.\\nSwelling of the abdomen due to fluid buildup.\\nLack of appetite and nausea.\\nDifficulty concentrating or decreased alertness.\\nSudden weight gain from fluid retention.\\n\"},{\"role\":\"system\",\"content\":\"Based on the symptoms described, it is possible that the patient may be experiencing heart failure. It is important for the patient to seek medical attention immediately for a proper diagnosis and treatment plan. In the meantime, it is important for the patient to rest and avoid strenuous physical activities. It is also important to monitor fluid intake and follow a low-sodium diet to help reduce fluid retention. Medications may be prescribed to help manage symptoms and improve heart function. It is crucial for the patient to follow up with their healthcare provider regularly to monitor their condition and make any necessary adjustments to their treatment plan.\"},{\"role\":\"user\",\"content\":\"You are a doctor. Advice according to the case described here. This is the case: Suggest medicine\\n\"},{\"role\":\"system\",\"content\":\"As a doctor, I cannot prescribe specific medications without conducting a proper evaluation and diagnosis of the patient. However, based on the symptoms described, the patient may require medications such as diuretics to help reduce fluid retention, ACE inhibitors or beta-blockers to improve heart function, and possibly medications to manage symptoms such as cough or wheezing. It is important for the patient to consult with a healthcare provider for a thorough evaluation and to receive a personalized treatment plan.\"}]'),
(6, 'case', '29', '98-case-29', '[{\"role\":\"user\",\"content\":\"You are a doctor. Advice according to the case described here. This is the case: Vomitting, high fever and sort breath\"},{\"role\":\"system\",\"content\":\"Based on the symptoms of vomiting, high fever, and shortness of breath, it is important to seek medical attention immediately. These symptoms could indicate a serious infection, such as pneumonia or sepsis, or a respiratory condition like asthma or bronchitis. It is important to get a proper diagnosis and treatment as soon as possible to prevent any complications. In the meantime, stay hydrated, rest, and avoid any triggers that may worsen the symptoms. Do not hesitate to seek emergency medical care if the symptoms worsen or if there is any difficulty breathing.\"}]'),
(7, 'case', '96', '98-case-96', '[{\"role\":\"user\",\"content\":\"You are a doctor. Advice according to the case described here. This is the case: Alhamdulillahi rabbil alamin Masha Allajsjsjsksksksh\"},{\"role\":\"system\",\"content\":\"It seems like you may have accidentally typed some random characters. If you have a specific medical concern or question, please provide more information so that I can offer appropriate advice.\"},{\"role\":\"user\",\"content\":\"You are a doctor. Advice according to the case described here. This is the case: Alhamdulillahi rabbil alamin Masha Allajsjsjsksksksh\"},{\"role\":\"system\",\"content\":\"It appears that the case description provided is not related to a medical issue. If you have any health concerns or questions, please feel free to share them so that I can provide you with appropriate medical advice.\"}]'),
(8, 'case', '94', '98-case-94', '[{\"role\":\"user\",\"content\":\"You are a doctor. Advice according to the case described here. This is the case: Alhamdulillahi rabbil alamin Masha Allajsjsjsksksksh\"},{\"role\":\"system\",\"content\":\"It seems like you may have accidentally typed a random string of characters. If you have a specific medical concern or question, please provide more information so that I can offer appropriate advice.\"}]'),
(9, 'case', '147', '98-case-147', '[{\"role\":\"user\",\"content\":\"You are a doctor. Advice according to the case described here. This is the case: dfgdfg\"},{\"role\":\"system\",\"content\":\"I\'m sorry, but the case description provided is not clear or complete enough for me to offer any specific medical advice. If you could provide more details or context, I would be happy to help. In the meantime, I recommend seeking medical attention from a healthcare professional for a proper evaluation and treatment.\"}]'),
(10, 'case', '149', '98-case-149', '[{\"role\":\"user\",\"content\":\"You are a doctor. Advice according to the case described here. This is the case: sdfdsfdsf\\nwhat is the name of this patient?\"},{\"role\":\"system\",\"content\":null}]');

-- --------------------------------------------------------

--
-- Table structure for table `grid`
--

CREATE TABLE `grid` (
  `id` int(10) NOT NULL,
  `category` varchar(100) NOT NULL,
  `title` varchar(500) NOT NULL,
  `description` varchar(1000) NOT NULL,
  `img` varchar(1000) NOT NULL,
  `position` varchar(100) NOT NULL,
  `status` varchar(100) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `grid`
--

INSERT INTO `grid` (`id`, `category`, `title`, `description`, `img`, `position`, `status`) VALUES
(3, 'FEATURED', 'Professional surgeons', 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Eum tenetur, aut veritatis maxime ducimus modi delectus vero expedita illo ratione, eveniet laboriosam cupiditate reiciendis, repellat minima. Optio consectetur inventore ipsa!', 'uploads/frature-img-1.png', '1', 'Active'),
(4, 'FEATURED', 'Good Care', 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Eum tenetur, aut veritatis maxime ducimus modi delectus vero expedita illo ratione, eveniet laboriosam cupiditate reiciendis, repellat minima. Optio consectetur inventore ipsa!', 'uploads/frature-img-2.png', '2', 'Active');

-- --------------------------------------------------------

--
-- Table structure for table `groups`
--

CREATE TABLE `groups` (
  `id` mediumint(8) UNSIGNED NOT NULL,
  `name` varchar(20) NOT NULL,
  `description` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `groups`
--

INSERT INTO `groups` (`id`, `name`, `description`) VALUES
(1, 'superadmin', 'Super Admin'),
(2, 'members', 'General User'),
(3, 'Accountant', 'For Financial Activities'),
(4, 'Doctor', ''),
(5, 'Patient', ''),
(6, 'Nurse', ''),
(7, 'Pharmacist', ''),
(8, 'Laboratorist', ''),
(10, 'Receptionist', 'Receptionist'),
(11, 'admin', 'Administrator');

-- --------------------------------------------------------

--
-- Table structure for table `holidays`
--

CREATE TABLE `holidays` (
  `id` int(100) NOT NULL,
  `doctor` varchar(100) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `y` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `holidays`
--

INSERT INTO `holidays` (`id`, `doctor`, `date`, `x`, `y`, `hospital_id`) VALUES
(2, '3', '1638295200', NULL, NULL, '4');

-- --------------------------------------------------------

--
-- Table structure for table `hospital`
--

CREATE TABLE `hospital` (
  `id` int(100) NOT NULL,
  `name` varchar(500) DEFAULT NULL,
  `email` varchar(500) DEFAULT NULL,
  `password` varchar(500) DEFAULT NULL,
  `address` varchar(500) DEFAULT NULL,
  `location` varchar(500) DEFAULT NULL,
  `location_coordinates` varchar(500) DEFAULT NULL,
  `phone` varchar(500) DEFAULT NULL,
  `package` varchar(100) DEFAULT NULL,
  `p_limit` varchar(100) DEFAULT NULL,
  `d_limit` varchar(100) DEFAULT NULL,
  `module` varchar(1000) DEFAULT NULL,
  `ion_user_id` varchar(100) DEFAULT NULL,
  `country` varchar(1000) DEFAULT NULL,
  `from_where` varchar(1000) DEFAULT NULL,
  `username` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `hospital`
--

INSERT INTO `hospital` (`id`, `name`, `email`, `password`, `address`, `location`, `location_coordinates`, `phone`, `package`, `p_limit`, `d_limit`, `module`, `ion_user_id`, `country`, `from_where`, `username`) VALUES
(98, 'Hospital Admin', 'admin@hms.com', NULL, 'Ka/5, Bashundhara R/A Gate', NULL, NULL, '+8801777024443', '1', '2000', '1000', 'accountant,appointment,lab,bed,department,doctor,donor,finance,pharmacy,laboratorist,medicine,nurse,patient,pharmacist,prescription,receptionist,report,notice,email,sms,file,payroll,attendance,leave,chat,site', '992', '', NULL, 'apollo');

-- --------------------------------------------------------

--
-- Table structure for table `hospital_deposit`
--

CREATE TABLE `hospital_deposit` (
  `id` int(100) NOT NULL,
  `payment_id` varchar(1000) DEFAULT NULL,
  `date` varchar(1000) DEFAULT NULL,
  `package_id` varchar(50) DEFAULT NULL,
  `deposited_amount` varchar(1000) DEFAULT NULL,
  `deposited_amount_id` varchar(1000) DEFAULT NULL,
  `gateway` varchar(1000) DEFAULT NULL,
  `hospital_user_id` varchar(1000) DEFAULT NULL,
  `next_due_date_stamp` varchar(1000) DEFAULT NULL,
  `next_due_date` varchar(1000) DEFAULT NULL,
  `add_date_stamp` varchar(1000) DEFAULT NULL,
  `add_date` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `hospital_deposit`
--

INSERT INTO `hospital_deposit` (`id`, `payment_id`, `date`, `package_id`, `deposited_amount`, `deposited_amount_id`, `gateway`, `hospital_user_id`, `next_due_date_stamp`, `next_due_date`, `add_date_stamp`, `add_date`) VALUES
(64, '52', '1646978208', '1', '100000', NULL, 'Cash', '98', '1678514208', '11-03-2023', '1646978208', '11-03-2022'),
(59, '52', '1640871501', '1', '100000', '52gp', 'Cash', '98', '1672407501', '30-12-2022', '1640871501', '30-12-2021'),
(61, '52', '1643008561', NULL, '10000', NULL, 'Cash', '98', '1645600561', '23-02-2022', '1643008561', '24-01-2022'),
(71, '52', '1666566362', '2', '50000', NULL, 'Cash', '98', '1698102362', '24-10-2023', '1666566362', '24-10-2022'),
(72, '52', '1666566398', '1', '100000', NULL, 'Cash', '98', '1698102398', '24-10-2023', '1666566398', '24-10-2022'),
(77, '52', '1669880254', '2', '50000', NULL, 'Cash', '98', '1701416254', '01-12-2023', '1669880254', '01-12-2022'),
(78, '52', '1669880307', '1', '100000', NULL, 'Cash', '98', '1701416307', '01-12-2023', '1669880307', '01-12-2022'),
(81, '52', '1670593500', '1', '100000', NULL, 'Cash', '98', '1702129500', '09-12-2023', '1670593500', '09-12-2022'),
(85, '52', '1696768878', '7', '10', NULL, 'Stripe', '98', '1699360878', '07-11-2023', '1696768878', '08-10-2023'),
(86, '52', '1700390198', '7', '1000', NULL, 'Cash', '98', '1731926198', '18-11-2024', '1700390198', '19-11-2023'),
(89, '52', '1705929792', '1', '100000', NULL, 'Cash', '98', '1737465792', '21-01-2025', '1705929792', '22-01-2024'),
(93, '73', '1725789076', NULL, '0', '73gp', 'trial', '119', '1727085076', '23-09-2024', '1725789076', '08-09-2024'),
(94, '74', '1725789244', NULL, '10', '74gp', 'Stripe', '120', '1728381243', '08-10-2024', '1725789244', '08-09-2024'),
(95, '75', '1725789908', NULL, '0', '75gp', 'trial', '121', '1727085907', '23-09-2024', '1725789908', '08-09-2024'),
(96, '76', '1725790201', NULL, '10', '76gp', 'Stripe', '122', '1728382201', '08-10-2024', '1725790201', '08-09-2024'),
(97, '77', '1725790498', NULL, '0', '77gp', 'trial', '123', '1727086498', '23-09-2024', '1725790498', '08-09-2024'),
(98, '78', '1725796678', NULL, '0', '78gp', 'trial', '124', '1727092677', '23-09-2024', '1725796678', '08-09-2024'),
(99, '79', '1725796919', NULL, '10', '79gp', 'Stripe', '125', '1728388919', '08-10-2024', '1725796919', '08-09-2024'),
(100, '80', '1725797123', NULL, '10', '80gp', 'Stripe', '126', '1728389123', '08-10-2024', '1725797123', '08-09-2024'),
(101, '81', '1725797342', NULL, '10', '81gp', 'Stripe', '127', '1728389342', '08-10-2024', '1725797342', '08-09-2024'),
(102, '82', '1725797994', NULL, '10', '82gp', 'Stripe', '128', '1728389993', '08-10-2024', '1725797994', '08-09-2024'),
(103, '83', '1725798126', NULL, '10', '83gp', 'Stripe', '129', '1728390126', '08-10-2024', '1725798126', '08-09-2024'),
(104, '84', '1725798968', NULL, '10', '84gp', 'Stripe', '130', '1728390968', '08-10-2024', '1725798968', '08-09-2024'),
(105, '85', '1725799021', NULL, '0', '85gp', 'trial', '131', '1727095021', '23-09-2024', '1725799021', '08-09-2024'),
(106, '86', '1727877652', '1', '10000', '86gp', 'Cash', '132', '1730469651', '01-11-2024', '1727877652', '02-10-2024'),
(107, '87', '1728283018', '1', '10000', '87gp', 'Cash', '133', '1730875018', '06-11-2024', '1728283018', '07-10-2024'),
(108, '88', '1729207546', NULL, '0', '88gp', 'trial', '134', '1730503546', '02-11-2024', '1729207546', '18-10-2024'),
(109, '89', '1730607856', NULL, '0', '89gp', 'trial', '135', '1731903856', '18-11-2024', '1730607856', '03-11-2024'),
(110, '90', '1737883307', NULL, '0', '90gp', 'trial', '136', '1739179306', '10-02-2025', '1737883307', '26-01-2025'),
(111, '52', '1737890319', '1', '100000', NULL, 'Cash', '98', '1769426319', '26-01-2026', '1737890319', '26-01-2025'),
(112, '91', '1740655729', NULL, '0', '91gp', 'trial', '137', '1741951728', '14-03-2025', '1740655729', '27-02-2025'),
(113, '92', '1740655879', NULL, '0', '92gp', 'trial', '138', '1741951878', '14-03-2025', '1740655879', '27-02-2025'),
(114, '93', '1741165016', NULL, '0', '93gp', 'trial', '139', '1742461016', '20-03-2025', '1741165016', '05-03-2025');

-- --------------------------------------------------------

--
-- Table structure for table `hospital_payment`
--

CREATE TABLE `hospital_payment` (
  `id` int(100) NOT NULL,
  `hospital_user_id` varchar(1000) DEFAULT NULL,
  `price` varchar(1000) DEFAULT NULL,
  `package_duration` varchar(1000) DEFAULT NULL,
  `next_due_date_stamp` varchar(1000) DEFAULT NULL,
  `next_due_date` varchar(1000) DEFAULT NULL,
  `add_date_stamp` varchar(1000) DEFAULT NULL,
  `add_date` varchar(1000) DEFAULT NULL,
  `package` varchar(1000) DEFAULT NULL,
  `status` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `hospital_payment`
--

INSERT INTO `hospital_payment` (`id`, `hospital_user_id`, `price`, `package_duration`, `next_due_date_stamp`, `next_due_date`, `add_date_stamp`, `add_date`, `package`, `status`) VALUES
(52, '98', '100000', 'yearly', '1769426319', '26-01-2026', '1640871501', '30-12-2021', '1', 'paid'),
(73, '119', '0', 'monthly', '1727085076', '23-09-2024', '1725789076', '08-09-2024', '1', 'paid'),
(74, '120', '10', 'monthly', '1728381243', '08-10-2024', '1725789244', '08-09-2024', '6', 'paid'),
(75, '121', '0', 'monthly', '1727085907', '23-09-2024', '1725789908', '08-09-2024', '1', 'paid'),
(76, '122', '10', 'monthly', '1728382201', '08-10-2024', '1725790201', '08-09-2024', '6', 'paid'),
(77, '123', '0', 'monthly', '1727086498', '23-09-2024', '1725790498', '08-09-2024', '1', 'paid'),
(78, '124', '0', 'yearly', '1727092677', '23-09-2024', '1725796678', '08-09-2024', '2', 'paid'),
(79, '125', '10', 'monthly', '1728388919', '08-10-2024', '1725796919', '08-09-2024', '6', 'paid'),
(80, '126', '10', 'monthly', '1728389123', '08-10-2024', '1725797123', '08-09-2024', '6', 'paid'),
(81, '127', '10', 'monthly', '1728389342', '08-10-2024', '1725797342', '08-09-2024', '6', 'paid'),
(82, '128', '10', 'monthly', '1728389993', '08-10-2024', '1725797994', '08-09-2024', '6', 'paid'),
(83, '129', '10', 'monthly', '1728390126', '08-10-2024', '1725798126', '08-09-2024', '6', 'paid'),
(84, '130', '10', 'monthly', '1728390968', '08-10-2024', '1725798968', '08-09-2024', '6', 'paid'),
(85, '131', '0', 'monthly', '1727095021', '23-09-2024', '1725799021', '08-09-2024', '3', 'paid'),
(86, '132', '10000', 'monthly', '1730469651', '01-11-2024', '1727877652', '02-10-2024', '1', 'paid'),
(87, '133', '10000', 'monthly', '1730875018', '06-11-2024', '1728283018', '07-10-2024', '1', 'paid'),
(88, '134', '0', 'monthly', '1730503546', '02-11-2024', '1729207546', '18-10-2024', '2', 'paid'),
(89, '135', '0', 'yearly', '1731903856', '18-11-2024', '1730607856', '03-11-2024', '8', 'paid'),
(91, '137', '0', 'monthly', '1741951728', '14-03-2025', '1740655729', '27-02-2025', '1', 'paid'),
(90, '136', '0', 'monthly', '1739179306', '10-02-2025', '1737883307', '26-01-2025', '1', 'paid'),
(92, '138', '0', 'monthly', '1741951878', '14-03-2025', '1740655879', '27-02-2025', '1', 'paid'),
(93, '139', '0', 'monthly', '1742461016', '20-03-2025', '1741165016', '05-03-2025', '1', 'paid');

-- --------------------------------------------------------

--
-- Table structure for table `insurance_company`
--

CREATE TABLE `insurance_company` (
  `id` int(100) NOT NULL,
  `name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
  `description` varchar(1000) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL,
  `hospital_id` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

--
-- Dumping data for table `insurance_company`
--

INSERT INTO `insurance_company` (`id`, `name`, `description`, `hospital_id`) VALUES
(1, 'Meghna Insurance', '<p>Description</p>', '98'),
(4, 'Delta Insurance', '<p>dsfsdfsf</p>', '98');

-- --------------------------------------------------------

--
-- Table structure for table `inventory_categories`
--

CREATE TABLE `inventory_categories` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `parent_id` int(11) DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `hospital_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `inventory_categories`
--

INSERT INTO `inventory_categories` (`id`, `name`, `description`, `parent_id`, `status`, `hospital_id`, `created_at`, `updated_at`, `created_by`) VALUES
(1, 'Medical Equipment', 'Medical devices and equipment', NULL, 'active', 98, '2025-08-07 12:31:35', '2025-08-07 13:56:24', 1),
(2, 'Surgical Instruments', 'Surgical tools and instruments', NULL, 'active', 1, '2025-08-07 12:31:35', '2025-08-07 12:31:35', 1),
(3, 'Pharmaceuticals', 'Medicines and drugs', NULL, 'active', 1, '2025-08-07 12:31:35', '2025-08-07 12:31:35', 1),
(4, 'Laboratory Supplies', 'Lab consumables and reagents', NULL, 'active', 1, '2025-08-07 12:31:35', '2025-08-07 12:31:35', 1),
(5, 'Office Supplies', 'Administrative and office materials', NULL, 'active', 1, '2025-08-07 12:31:35', '2025-08-07 12:31:35', 1),
(6, 'Cleaning Supplies', 'Sanitation and cleaning materials', NULL, 'active', 1, '2025-08-07 12:31:35', '2025-08-07 12:31:35', 1),
(7, 'Patient Care Items', 'Patient care consumables', NULL, 'active', 1, '2025-08-07 12:31:35', '2025-08-07 12:31:35', 1),
(8, 'PPE', 'Personal Protective Equipment', NULL, 'active', 1, '2025-08-07 12:31:35', '2025-08-07 12:31:35', 1),
(9, 'IT Equipment', 'Information technology hardware', NULL, 'active', 1, '2025-08-07 12:31:35', '2025-08-07 12:31:35', 1),
(10, 'Furniture', 'Hospital furniture and fixtures', NULL, 'active', 1, '2025-08-07 12:31:35', '2025-08-07 12:31:35', 1),
(11, 'Klinicx Health solutions', 'sfsdfsd', NULL, 'active', 98, '2025-08-08 00:07:56', '2025-08-07 14:07:56', 992),
(12, 'Goods', 'sfsdfsdfsdf', 11, 'active', 98, '2025-08-08 00:15:39', '2025-08-07 14:15:39', 992),
(14, 'Emily Davis', 'dsfsdfs', 12, 'active', 98, '2025-09-03 00:00:16', '2025-09-02 14:00:16', 992),
(15, 'Stationary', 'dsgsdfdgfg', 12, 'active', 98, '2025-09-04 14:25:15', '2025-09-04 04:25:15', 992);

-- --------------------------------------------------------

--
-- Table structure for table `inventory_items`
--

CREATE TABLE `inventory_items` (
  `id` int(11) NOT NULL,
  `item_code` varchar(50) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `category` varchar(100) DEFAULT NULL,
  `subcategory` varchar(100) DEFAULT NULL,
  `unit_of_measure` varchar(50) DEFAULT 'pieces',
  `minimum_stock` int(11) DEFAULT 0,
  `maximum_stock` int(11) DEFAULT 0,
  `reorder_level` int(11) DEFAULT 0,
  `current_stock` int(11) DEFAULT 0,
  `unit_cost` decimal(10,2) DEFAULT 0.00,
  `selling_price` decimal(10,2) DEFAULT 0.00,
  `storage_location` varchar(255) DEFAULT NULL,
  `expiry_tracking` enum('yes','no') DEFAULT 'no',
  `barcode` varchar(255) DEFAULT NULL,
  `manufacturer` varchar(255) DEFAULT NULL,
  `brand` varchar(255) DEFAULT NULL,
  `model_number` varchar(255) DEFAULT NULL,
  `specifications` text DEFAULT NULL,
  `status` enum('active','inactive','discontinued') DEFAULT 'active',
  `hospital_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `inventory_items`
--

INSERT INTO `inventory_items` (`id`, `item_code`, `name`, `description`, `category`, `subcategory`, `unit_of_measure`, `minimum_stock`, `maximum_stock`, `reorder_level`, `current_stock`, `unit_cost`, `selling_price`, `storage_location`, `expiry_tracking`, `barcode`, `manufacturer`, `brand`, `model_number`, `specifications`, `status`, `hospital_id`, `created_at`, `updated_at`, `created_by`, `updated_by`) VALUES
(1, 'ITM20250807202813', 'Test Item 1', 'asdadsad', 'Goods', '', 'pieces', 0, 0, 10, 980, 10.00, 0.00, '', 'no', '', 'dsfsdfdsf', '', '', '', 'active', 98, '2025-08-08 00:28:42', '2025-08-07 14:39:50', 992, NULL),
(2, 'ITM20250807202842', 'Test Item 2', 'sdfsdfsdf', 'Klinicx Health solutions', '', 'pieces', 0, 0, 10, 900, 12.00, 0.00, '', 'no', '', 'dsfsdff', '', '', '', 'active', 98, '2025-08-08 00:29:17', '2025-09-03 04:41:01', 992, NULL),
(3, 'ITM20250807203034', 'Test Item 3', 'sdadasdsad', NULL, '', 'kg', 0, 0, 20, 1200, 12.00, 0.00, '', 'no', '', 'sdfsdfsdfsdf', '', '', '', 'active', 98, '2025-08-08 00:31:05', '2025-08-27 17:35:16', 992, 992),
(4, 'ITM20250904102722', 'Pen', 'sdfdsfdsf', 'Stationary', '', 'pieces', 10, 1000, 100, 0, 10.00, 10.00, 'dsfdsfsdfdsf', 'no', '', 'fdgfdgdfgd', '', '', '', 'active', 98, '2025-09-04 14:28:07', '2025-09-04 04:34:20', 992, 992);

-- --------------------------------------------------------

--
-- Table structure for table `lab`
--

CREATE TABLE `lab` (
  `id` int(100) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `patient` varchar(100) DEFAULT NULL,
  `doctor` varchar(100) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `category_name` varchar(1000) DEFAULT NULL,
  `report` longtext DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `patient_name` varchar(100) DEFAULT NULL,
  `patient_phone` varchar(100) DEFAULT NULL,
  `patient_address` varchar(100) DEFAULT NULL,
  `doctor_name` varchar(100) DEFAULT NULL,
  `date_string` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `invoice_id` varchar(1000) DEFAULT NULL,
  `category_id` varchar(1000) DEFAULT NULL,
  `test_status` varchar(500) DEFAULT NULL,
  `test_status_date` varchar(500) DEFAULT NULL,
  `delivery_status` varchar(500) DEFAULT NULL,
  `delivery_status_date` varchar(500) DEFAULT NULL,
  `receiver_name` varchar(500) DEFAULT NULL,
  `updated_on` varchar(500) DEFAULT NULL,
  `reported_by` varchar(500) DEFAULT NULL,
  `done_by` varchar(500) DEFAULT NULL,
  `signed_by` varchar(100) DEFAULT NULL,
  `alloted_bed_id` varchar(100) DEFAULT NULL,
  `bed_diagnostic_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `lab`
--

INSERT INTO `lab` (`id`, `category`, `patient`, `doctor`, `date`, `category_name`, `report`, `status`, `user`, `patient_name`, `patient_phone`, `patient_address`, `doctor_name`, `date_string`, `hospital_id`, `invoice_id`, `category_id`, `test_status`, `test_status_date`, `delivery_status`, `delivery_status_date`, `receiver_name`, `updated_on`, `reported_by`, `done_by`, `signed_by`, `alloted_bed_id`, `bed_diagnostic_id`) VALUES
(787, NULL, '34', '42', '1728287982', NULL, NULL, NULL, '1112', ' Rizvi Mahmud', ' 012345678', NULL, 'Dr Rahmatullah', '07-10-24', '133', '579', '83', 'not_done', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(788, NULL, '34', '42', '1728288019', NULL, NULL, NULL, '1112', ' Rizvi Mahmud', ' 012345678', NULL, 'Dr Rahmatullah', '07-10-24', '133', '580', '83', 'not_done', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(789, NULL, '34', '42', '1728288157', NULL, NULL, NULL, '1112', ' Rizvi Mahmud', ' 012345678', NULL, 'Dr Rahmatullah', '07-10-24', '133', '581', '83', 'not_done', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `laboratorist`
--

CREATE TABLE `laboratorist` (
  `id` int(100) NOT NULL,
  `img_url` varchar(100) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `address` varchar(100) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `y` varchar(100) DEFAULT NULL,
  `ion_user_id` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `profile` varchar(1000) DEFAULT NULL,
  `signature` varchar(1000) DEFAULT NULL,
  `available` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `laboratorist`
--

INSERT INTO `laboratorist` (`id`, `img_url`, `name`, `email`, `address`, `phone`, `x`, `y`, `ion_user_id`, `hospital_id`, `profile`, `signature`, `available`) VALUES
(3, 'uploads/userIcon3.png', 'Mr. Laboratorist', 'laboratorist@hms.com', 'Ka/5, Bashundhara R/A Gate', '123456789', NULL, NULL, '997', '98', '<p>&nbsp; vjhvjgjgj</p>\r\n<p>&nbsp;</p>\r\n<p>jhjhgjgjh</p>', 'uploads/Screenshot_from_2022-03-24_13-04-152.png', '0');

-- --------------------------------------------------------

--
-- Table structure for table `lab_category`
--

CREATE TABLE `lab_category` (
  `id` int(10) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `description` varchar(100) DEFAULT NULL,
  `reference_value` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `lab_category`
--

INSERT INTO `lab_category` (`id`, `category`, `description`, `reference_value`, `hospital_id`) VALUES
(35, 'Troponin-I', 'Pathological Test', '', NULL),
(36, 'CBC (DIGITAL)', 'Pathological Test', '', NULL),
(37, 'Eosinophil', 'Pathological Test', '', NULL),
(38, 'Platelets', 'Pathological Test', '', NULL),
(39, 'Malarial Parasites (MP)', 'Pathological Test', '', NULL),
(40, 'BT/ CT', 'Pathological Test', '', NULL),
(41, 'ASO Titre', 'Pathological Test', '', NULL),
(42, 'CRP', 'Pathological Test', '', NULL),
(43, 'R/A test', 'Pathological Test', '', NULL),
(44, 'VDRL', 'Pathological Test', '', NULL),
(45, 'TPHA', 'Pathological Test', '', NULL),
(46, 'HBsAg (Screening)', 'Pathological Test', '', NULL),
(47, 'HBsAg (Confirmatory)', 'Pathological Test', '', NULL),
(48, 'CFT for Kala Zar', 'Pathological Test', '', NULL),
(49, 'CFT for Filaria', 'Pathological Test', '', NULL),
(50, 'Pregnancy Test', 'Pathological Test', '', NULL),
(51, 'Blood Grouping', 'Pathological Test', '', NULL),
(52, 'Widal Test', 'Pathological Test', '(70-110)mg/dl', NULL),
(53, 'RBS', 'Pathological Test', '', NULL),
(54, 'Blood Urea', 'Pathological Test', '', NULL),
(55, 'S. Creatinine', 'Pathological Test', '', NULL),
(56, 'S. cholesterol', 'Pathological Test', '', NULL),
(57, 'Fasting Lipid Profile', 'Pathological Test', '', NULL),
(58, 'S. Bilirubin', 'Pathological Test', '', NULL),
(59, 'S. Alkaline Phosohare', 'Pathological Test', '', NULL),
(61, 'S. Calcium', 'Pathological Test', '', NULL),
(62, 'RBS with CUS', 'Pathological Test', '', NULL),
(63, 'SGPT', 'Pathological Test', '', NULL),
(64, 'SGOT', 'Pathological Test', '', NULL),
(65, 'Urine for R/E', 'Pathological Test', '', NULL),
(66, 'Urine C/S', 'Pathological Test', '', NULL),
(67, 'Stool for R/E', 'Pathological Test', '', NULL),
(68, 'Semen Analysis', 'Pathological Test', '', NULL),
(69, 'S. Electrolyte', 'Pathological Test', '', NULL),
(70, 'S. T3/ T4/ THS', 'Pathological Test', '', NULL),
(71, 'MT', 'Pathological Test', '', NULL),
(106, 'ESR', 'Patho Test', '', NULL),
(107, 'FBS CUS', 'Pathological test', '', NULL),
(108, 'Hb%', 'Pathological test', '', NULL),
(114, '2HABF', 'Pathological test', '', NULL),
(113, 'FBS', 'Pathological test', '', NULL),
(115, 'S. TSH', 'Pathological test', '', NULL),
(116, 'S. T3', 'Pathological test', '', NULL),
(117, 'DC', 'Pathological test', '', NULL),
(118, 'TC', 'Pathological test', '', NULL),
(120, 'S. Uric acid', 'Pathological test', '', NULL),
(126, 'eosinphil', 'Pathology Test', '', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `language`
--

CREATE TABLE `language` (
  `id` int(100) NOT NULL,
  `language` varchar(100) DEFAULT NULL,
  `folder_name` varchar(100) DEFAULT NULL,
  `flag_icon` varchar(100) DEFAULT NULL,
  `description` varchar(1000) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `language`
--

INSERT INTO `language` (`id`, `language`, `folder_name`, `flag_icon`, `description`, `status`) VALUES
(2, 'arabic', 'arabic', 'sa', 'Arabic language', '1'),
(3, 'english', 'english', 'us', 'English Language', '1'),
(5, 'french', 'french', 'fr', 'Français', '1'),
(6, 'italian', 'italian', 'it', 'Italiano', '1'),
(7, 'portuguese', 'portuguese', 'pt', 'Português', '1'),
(8, 'turkish', 'turkish', 'tr', 'Türkçe', '1'),
(14, 'spanish', NULL, 'es', 'spanish', '1');

-- --------------------------------------------------------

--
-- Table structure for table `leaves`
--

CREATE TABLE `leaves` (
  `id` int(100) NOT NULL,
  `type` varchar(100) DEFAULT NULL,
  `duration` varchar(100) DEFAULT NULL,
  `date` varchar(1000) DEFAULT NULL,
  `staff` varchar(100) DEFAULT NULL,
  `reason` mediumtext DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) NOT NULL,
  `created_on` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `leave_type`
--

CREATE TABLE `leave_type` (
  `id` int(100) NOT NULL,
  `name` varchar(1000) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `hospital_id` int(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `login_attempts`
--

CREATE TABLE `login_attempts` (
  `id` int(11) UNSIGNED NOT NULL,
  `ip_address` varchar(15) NOT NULL,
  `login` varchar(100) NOT NULL,
  `time` int(11) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `logs`
--

CREATE TABLE `logs` (
  `id` int(100) NOT NULL,
  `name` varchar(1000) DEFAULT NULL,
  `email` varchar(1000) DEFAULT NULL,
  `role` varchar(1000) DEFAULT NULL,
  `ip_address` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL,
  `date_time` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `logs`
--

INSERT INTO `logs` (`id`, `name`, `email`, `role`, `ip_address`, `hospital_id`, `date_time`) VALUES
(2093, 'Mr. Laboratorist', 'laboratorist@hms.com', 'Laboratorist', '110.76.128.67', '992', '09-03-2025 01:35:57'),
(2094, 'Hospital Admin', 'admin@hms.com', 'Admin', '110.76.128.67', '992', '09-03-2025 02:27:13'),
(2089, 'Mr Doctor', 'doctor@hms.com', 'Doctor', '103.77.63.71', '992', '08-03-2025 16:45:31'),
(2090, 'Mr Doctor', 'doctor@hms.com', 'Doctor', '110.76.128.67', '992', '08-03-2025 20:39:27'),
(2092, 'Hospital Admin', 'admin@hms.com', 'Admin', '110.76.128.67', '992', '09-03-2025 00:34:45'),
(2091, 'Mr Doctor', 'doctor@hms.com', 'Doctor', '110.76.128.67', '992', '09-03-2025 00:26:34'),
(2095, 'Super Admin', 'superadmin@hms.com', 'SuperAdmin', '110.76.128.100', '', '17-03-2025 13:39:40'),
(2096, 'Hospital Admin', 'admin@hms.com', 'Admin', '110.76.128.100', '992', '17-03-2025 13:40:06'),
(2097, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.77.63.68', '992', '27-03-2025 15:06:29'),
(2098, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.170.141.101', '992', '01-06-2025 10:26:54'),
(2099, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.170.141.101', '992', '10-06-2025 11:37:00'),
(2100, 'Hospital Admin', 'admin@hms.com', 'Admin', '110.76.128.100', '992', '10-07-2025 12:00:57'),
(2101, 'Hospital Admin', 'admin@hms.com', 'Admin', '110.76.128.100', '992', '10-07-2025 16:44:30'),
(2102, 'Hospital Admin', 'admin@hms.com', 'Admin', '110.76.128.100', '992', '10-07-2025 17:25:40'),
(2103, 'Mr Patient', 'patient@hms.com', 'Patient', '110.76.128.100', '992', '10-07-2025 17:51:27'),
(2104, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.77.63.70', '992', '21-07-2025 23:57:18'),
(2105, 'Mr Doctor', 'doctor@hms.com', 'Doctor', '103.77.63.70', '992', '21-07-2025 23:58:37'),
(2106, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.231.162.56', '992', '07-08-2025 19:28:15'),
(2107, 'Hospital Admin', 'admin@hms.com', 'Admin', '110.76.128.67', '992', '08-08-2025 10:54:53'),
(2108, 'Hospital Admin', 'admin@hms.com', 'Admin', '110.76.128.67', '992', '10-08-2025 00:34:04'),
(2109, 'Super Admin', 'superadmin@hms.com', 'SuperAdmin', '110.76.128.67', '', '10-08-2025 04:11:25'),
(2110, 'Mr Patient', 'patient@hms.com', 'Patient', '110.76.128.67', '992', '10-08-2025 04:12:06'),
(2111, 'Hospital Admin', 'admin@hms.com', 'Admin', '110.76.128.67', '992', '10-08-2025 04:12:28'),
(2112, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.170.140.13', '992', '12-08-2025 23:54:17'),
(2113, 'Hospital Admin', 'admin@hms.com', 'Admin', '202.134.14.157', '992', '14-08-2025 09:25:13'),
(2114, 'Super Admin', 'superadmin@hms.com', 'SuperAdmin', '202.134.14.157', '', '14-08-2025 09:26:30'),
(2115, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.170.141.101', '992', '19-08-2025 00:45:42'),
(2116, 'Super Admin', 'superadmin@hms.com', 'SuperAdmin', '103.231.162.56', '', '25-08-2025 14:14:59'),
(2117, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.231.162.56', '992', '27-08-2025 13:04:42'),
(2118, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.170.141.101', '992', '27-08-2025 16:14:51'),
(2119, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.170.141.101', '992', '29-08-2025 23:46:40'),
(2120, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.170.141.101', '992', '30-08-2025 10:46:31'),
(2121, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.231.162.56', '992', '01-09-2025 13:37:29'),
(2122, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.231.162.56', '992', '02-09-2025 11:53:53'),
(2123, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.170.141.101', '992', '02-09-2025 15:49:15'),
(2124, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.231.162.56', '992', '03-09-2025 03:28:55'),
(2125, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.231.162.56', '992', '03-09-2025 10:39:03'),
(2126, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.231.162.56', '992', '04-09-2025 04:16:44'),
(2127, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.159.128.180', '992', '04-09-2025 07:11:43'),
(2128, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.170.141.101', '992', '06-09-2025 04:06:52'),
(2129, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.159.128.180', '992', '06-09-2025 07:44:56'),
(2130, 'Hospital Admin', 'admin@hms.com', 'Admin', '110.76.128.67', '992', '06-09-2025 12:58:51'),
(2131, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.112.52.253', '992', '07-09-2025 02:46:11'),
(2132, 'Hospital Admin', 'admin@hms.com', 'Admin', '202.125.75.234', '992', '07-09-2025 04:48:36'),
(2133, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.112.52.253', '992', '07-09-2025 04:58:00'),
(2134, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.231.162.56', '992', '07-09-2025 04:59:03'),
(2135, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.112.52.253', '992', '07-09-2025 04:59:10'),
(2136, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.231.162.56', '992', '07-09-2025 06:51:40'),
(2137, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.25.250.131', '992', '07-09-2025 13:09:33'),
(2138, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.112.52.253', '992', '07-09-2025 14:48:06'),
(2139, 'Mr Doctor', 'doctor@hms.com', 'Doctor', '103.112.52.253', '992', '08-09-2025 04:00:29'),
(2140, 'Hospital Admin', 'admin@hms.com', 'Admin', '110.76.128.67', '992', '08-09-2025 06:15:26'),
(2141, 'Hospital Admin', 'admin@hms.com', 'Admin', '103.231.162.56', '992', '08-09-2025 06:42:21');

-- --------------------------------------------------------

--
-- Stand-in structure for view `low_stock_items`
-- (See below for the actual view)
--
CREATE TABLE `low_stock_items` (
`id` int(11)
,`item_code` varchar(50)
,`name` varchar(255)
,`category` varchar(100)
,`current_stock` int(11)
,`reorder_level` int(11)
,`minimum_stock` int(11)
,`unit_cost` decimal(10,2)
,`hospital_id` int(11)
,`shortage_quantity` bigint(12)
);

-- --------------------------------------------------------

--
-- Table structure for table `macro`
--

CREATE TABLE `macro` (
  `id` int(100) NOT NULL,
  `short_name` varchar(1000) DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `created_by` varchar(1000) DEFAULT NULL,
  `created_by_name` varchar(1000) DEFAULT NULL,
  `date_time` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `macro`
--

INSERT INTO `macro` (`id`, `short_name`, `description`, `created_by`, `created_by_name`, `date_time`, `hospital_id`) VALUES
(17, 'rtertert', '<p>gvghcgch</p><p>mnnghnghn</p>', '992', 'Hospital', '1659002445', '98');

-- --------------------------------------------------------

--
-- Table structure for table `manualemailshortcode`
--

CREATE TABLE `manualemailshortcode` (
  `id` int(100) NOT NULL,
  `name` varchar(1000) DEFAULT NULL,
  `type` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `manualemailshortcode`
--

INSERT INTO `manualemailshortcode` (`id`, `name`, `type`) VALUES
(1, '{firstname}', 'email'),
(2, '{lastname}', 'email'),
(3, '{name}', 'email'),
(6, '{address}', 'email'),
(7, '{company}', 'email'),
(8, '{email}', 'email'),
(9, '{phone}', 'email');

-- --------------------------------------------------------

--
-- Table structure for table `manualsmsshortcode`
--

CREATE TABLE `manualsmsshortcode` (
  `id` int(100) NOT NULL,
  `name` varchar(1000) DEFAULT NULL,
  `type` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `manualsmsshortcode`
--

INSERT INTO `manualsmsshortcode` (`id`, `name`, `type`) VALUES
(1, '{firstname}', 'sms'),
(2, '{lastname}', 'sms'),
(3, '{name}', 'sms'),
(4, '{email}', 'sms'),
(5, '{phone}', 'sms'),
(6, '{address}', 'sms'),
(10, '{company}', 'sms');

-- --------------------------------------------------------

--
-- Table structure for table `manual_email_template`
--

CREATE TABLE `manual_email_template` (
  `id` int(100) NOT NULL,
  `name` varchar(1000) DEFAULT NULL,
  `message` varchar(1000) DEFAULT NULL,
  `type` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `added_by` varchar(300) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `manual_email_template`
--

INSERT INTO `manual_email_template` (`id`, `name`, `message`, `type`, `hospital_id`, `added_by`) VALUES
(19, 'Super Admin Template', '<p>{phone}</p>\r\n\r\n<p>{email}</p>\r\n', 'email', 'superadmin', '1'),
(20, 'Super Admin Template 2', '<p>{company}</p>\r\n\r\n<p>{address}</p>\r\n', 'email', 'superadmin', '1'),
(21, 'test', '<p>dfgdfgd</p>', 'email', '98', '992');

-- --------------------------------------------------------

--
-- Table structure for table `manual_sms_template`
--

CREATE TABLE `manual_sms_template` (
  `id` int(100) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `message` varchar(1000) DEFAULT NULL,
  `type` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `medical_history`
--

CREATE TABLE `medical_history` (
  `id` int(100) NOT NULL,
  `patient_id` varchar(100) DEFAULT NULL,
  `doctor_id` varchar(100) DEFAULT NULL,
  `title` varchar(100) DEFAULT NULL,
  `description` varchar(10000) DEFAULT NULL,
  `patient_name` varchar(100) DEFAULT NULL,
  `patient_address` varchar(500) DEFAULT NULL,
  `patient_phone` varchar(100) DEFAULT NULL,
  `img_url` varchar(500) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `registration_time` varchar(100) DEFAULT NULL,
  `diagnosis_id` varchar(1000) DEFAULT NULL,
  `treatment_id` varchar(1000) DEFAULT NULL,
  `symptom_id` varchar(1000) DEFAULT NULL,
  `test_id` varchar(1000) DEFAULT NULL,
  `advice_id` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `medical_history`
--

INSERT INTO `medical_history` (`id`, `patient_id`, `doctor_id`, `title`, `description`, `patient_name`, `patient_address`, `patient_phone`, `img_url`, `date`, `registration_time`, `diagnosis_id`, `treatment_id`, `symptom_id`, `test_id`, `advice_id`, `hospital_id`) VALUES
(150, '53', '44', 'Suspected Dengue Fever', '<p>Patient is a 29-year-old male who returned from a trip to Dhaka 3 days ago. Fever started 2 days after return. No previous history of similar illness. No chronic conditions. No known allergies. No recent vaccinations. Patient is otherwise healthy and not on any regular medication</p>', 'Mr Patient', 'Bashundhara, Dhaka', '01749335508', NULL, '1757008800', NULL, '8', '15', '61', '86', '16', '98');

-- --------------------------------------------------------

--
-- Table structure for table `medicine`
--

CREATE TABLE `medicine` (
  `id` int(100) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `category` varchar(100) DEFAULT NULL,
  `price` varchar(100) DEFAULT NULL,
  `box` varchar(100) DEFAULT NULL,
  `s_price` varchar(100) DEFAULT NULL,
  `quantity` int(100) DEFAULT NULL,
  `generic` varchar(100) DEFAULT NULL,
  `company` varchar(100) DEFAULT NULL,
  `effects` varchar(100) DEFAULT NULL,
  `e_date` varchar(70) DEFAULT NULL,
  `add_date` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `medicine`
--

INSERT INTO `medicine` (`id`, `name`, `category`, `price`, `box`, `s_price`, `quantity`, `generic`, `company`, `effects`, `e_date`, `add_date`, `hospital_id`) VALUES
(14, 'Test Medicine', 'Antibiotic', '10', '100', '15', 400, 'dgdfg', 'dgfdg', 'dfgfdg', '30-11-2023', '11/20/23', '114'),
(13, 'O extra', NULL, '30', '44', '35', 2000, 'Pracetimol', 'Square', 'dsdsds', '16-08-2020', '30/04/23', '111'),
(33, 'Napa', 'Categtory', '10', 'A4', '12', 576, 'Parecetamol', 'CODE ARISTOS INC', '', '02-12-2025', '08/10/25', '98'),
(35, 'Ace', 'Antibiotic', '10', '100', '12', 458, 'fdgdfg', 'dgdg', 'dfgfdg', '17-09-2025', '08/27/25', '98');

-- --------------------------------------------------------

--
-- Table structure for table `medicine_batches`
--

CREATE TABLE `medicine_batches` (
  `id` int(11) NOT NULL,
  `medicine_id` int(11) NOT NULL,
  `batch_number` varchar(100) NOT NULL,
  `manufacturing_date` date DEFAULT NULL,
  `expiry_date` date NOT NULL,
  `manufacturer` varchar(255) DEFAULT NULL,
  `supplier_id` int(11) DEFAULT NULL,
  `purchase_item_id` int(11) DEFAULT NULL,
  `quantity_received` int(11) NOT NULL DEFAULT 0,
  `quantity_sold` int(11) NOT NULL DEFAULT 0,
  `quantity_expired` int(11) NOT NULL DEFAULT 0,
  `quantity_damaged` int(11) NOT NULL DEFAULT 0,
  `quantity_returned` int(11) NOT NULL DEFAULT 0,
  `current_stock` int(11) NOT NULL DEFAULT 0,
  `unit_cost` decimal(10,2) DEFAULT 0.00,
  `selling_price` decimal(10,2) DEFAULT 0.00,
  `mrp` decimal(10,2) DEFAULT 0.00,
  `location` varchar(255) DEFAULT NULL,
  `storage_conditions` varchar(255) DEFAULT NULL,
  `status` enum('active','expired','low_stock','out_of_stock','damaged') DEFAULT 'active',
  `alert_before_days` int(11) DEFAULT 30,
  `notes` text DEFAULT NULL,
  `hospital_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `medicine_batches`
--

INSERT INTO `medicine_batches` (`id`, `medicine_id`, `batch_number`, `manufacturing_date`, `expiry_date`, `manufacturer`, `supplier_id`, `purchase_item_id`, `quantity_received`, `quantity_sold`, `quantity_expired`, `quantity_damaged`, `quantity_returned`, `current_stock`, `unit_cost`, `selling_price`, `mrp`, `location`, `storage_conditions`, `status`, `alert_before_days`, `notes`, `hospital_id`, `created_at`, `updated_at`, `created_by`, `updated_by`) VALUES
(1, 35, 'sdfsdfsf', '2025-08-01', '2025-09-30', 'dsfsdfdsf', 1, 1, 500, 42, 0, 0, 0, 458, 10.00, 12.00, 0.00, NULL, NULL, 'active', 30, NULL, 98, '2025-08-27 07:16:13', '2025-09-06 08:27:27', NULL, NULL),
(2, 33, 'werwerwr', '2025-08-01', '2025-09-27', 'sdfsfsf', 1, 2, 500, 24, 0, 0, 0, 476, 10.00, 12.00, 0.00, NULL, NULL, 'active', 30, NULL, 98, '2025-08-27 07:16:13', '2025-09-06 08:11:21', NULL, NULL),
(3, 33, 'dsfsdfdsf', NULL, '2025-10-31', 'dsfsdfdsf', 1, 3, 100, 0, 0, 0, 0, 100, 10.00, 12.00, 0.00, NULL, NULL, 'active', 30, NULL, 98, '2025-09-04 04:19:18', '2025-09-04 04:19:18', NULL, NULL);

--
-- Triggers `medicine_batches`
--
DELIMITER $$
CREATE TRIGGER `log_stock_movement_on_batch_update` AFTER UPDATE ON `medicine_batches` FOR EACH ROW BEGIN
    IF OLD.current_stock != NEW.current_stock THEN
        INSERT INTO medicine_stock_movements (
            medicine_id, 
            batch_id, 
            movement_type, 
            quantity, 
            unit_cost, 
            movement_date, 
            notes, 
            hospital_id
        ) VALUES (
            NEW.medicine_id,
            NEW.id,
            'adjustment',
            NEW.current_stock - OLD.current_stock,
            NEW.unit_cost,
            NOW(),
            CONCAT('Stock adjusted from ', OLD.current_stock, ' to ', NEW.current_stock),
            NEW.hospital_id
        );
    END IF;
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `update_medicine_stock_on_batch_change` AFTER UPDATE ON `medicine_batches` FOR EACH ROW BEGIN
    DECLARE total_stock INT DEFAULT 0;
    DECLARE medicine_exists INT DEFAULT 0;
    
    -- Check if medicine table exists and has the record
    SELECT COUNT(*) INTO medicine_exists 
    FROM information_schema.tables 
    WHERE table_schema = DATABASE() 
    AND table_name = 'medicine';
    
    IF medicine_exists > 0 THEN
        SELECT COUNT(*) INTO medicine_exists
        FROM medicine 
        WHERE id = NEW.medicine_id;
        
        IF medicine_exists > 0 THEN
            SELECT COALESCE(SUM(current_stock), 0) INTO total_stock 
            FROM medicine_batches 
            WHERE medicine_id = NEW.medicine_id;
            
            UPDATE medicine 
            SET quantity = total_stock 
            WHERE id = NEW.medicine_id;
        END IF;
    END IF;
END
$$
DELIMITER ;
DELIMITER $$
CREATE TRIGGER `update_medicine_stock_on_batch_insert` AFTER INSERT ON `medicine_batches` FOR EACH ROW BEGIN
    DECLARE total_stock INT DEFAULT 0;
    DECLARE medicine_exists INT DEFAULT 0;
    
    -- Check if medicine table exists and has the record
    SELECT COUNT(*) INTO medicine_exists 
    FROM information_schema.tables 
    WHERE table_schema = DATABASE() 
    AND table_name = 'medicine';
    
    IF medicine_exists > 0 THEN
        SELECT COUNT(*) INTO medicine_exists
        FROM medicine 
        WHERE id = NEW.medicine_id;
        
        IF medicine_exists > 0 THEN
            SELECT COALESCE(SUM(current_stock), 0) INTO total_stock 
            FROM medicine_batches 
            WHERE medicine_id = NEW.medicine_id;
            
            UPDATE medicine 
            SET quantity = total_stock 
            WHERE id = NEW.medicine_id;
        END IF;
    END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

--
-- Table structure for table `medicine_category`
--

CREATE TABLE `medicine_category` (
  `id` int(100) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `description` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `medicine_category`
--

INSERT INTO `medicine_category` (`id`, `category`, `description`, `hospital_id`) VALUES
(8, 'Antibiotic', 'xcvcxv', '114'),
(11, 'Categtory', 'sdvcdsfvc', '98'),
(12, 'Antibiotic', 'dfgdfgdfg', '98');

-- --------------------------------------------------------

--
-- Stand-in structure for view `medicine_expiring_soon`
-- (See below for the actual view)
--
CREATE TABLE `medicine_expiring_soon` (
`medicine_id` int(100)
,`medicine_name` varchar(100)
,`generic` varchar(100)
,`batch_id` int(11)
,`batch_number` varchar(100)
,`expiry_date` date
,`current_stock` int(11)
,`days_to_expiry` int(8)
,`value_at_risk` decimal(20,2)
,`hospital_id` varchar(100)
,`supplier_name` varchar(255)
);

-- --------------------------------------------------------

--
-- Stand-in structure for view `medicine_low_stock`
-- (See below for the actual view)
--
CREATE TABLE `medicine_low_stock` (
`id` int(100)
,`name` varchar(100)
,`generic` varchar(100)
,`category` varchar(100)
,`current_total_stock` int(100)
,`total_batch_stock` decimal(32,0)
,`total_batches` bigint(21)
,`hospital_id` varchar(100)
);

-- --------------------------------------------------------

--
-- Table structure for table `medicine_purchases`
--

CREATE TABLE `medicine_purchases` (
  `id` int(11) NOT NULL,
  `purchase_order_no` varchar(50) NOT NULL,
  `supplier_id` int(11) NOT NULL,
  `purchase_date` date NOT NULL,
  `expected_delivery_date` date DEFAULT NULL,
  `actual_delivery_date` date DEFAULT NULL,
  `invoice_number` varchar(100) DEFAULT NULL,
  `invoice_date` date DEFAULT NULL,
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `discount_amount` decimal(15,2) DEFAULT 0.00,
  `net_amount` decimal(15,2) DEFAULT 0.00,
  `paid_amount` decimal(15,2) DEFAULT 0.00,
  `balance_amount` decimal(15,2) DEFAULT 0.00,
  `payment_status` enum('pending','partial','paid','cancelled') DEFAULT 'pending',
  `purchase_status` enum('pending','ordered','received','partial','cancelled') DEFAULT 'pending',
  `payment_terms` varchar(255) DEFAULT NULL,
  `transport_charges` decimal(10,2) DEFAULT 0.00,
  `other_charges` decimal(10,2) DEFAULT 0.00,
  `notes` text DEFAULT NULL,
  `received_by` int(11) DEFAULT NULL,
  `verified_by` int(11) DEFAULT NULL,
  `approved_by` int(11) DEFAULT NULL,
  `hospital_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `medicine_purchases`
--

INSERT INTO `medicine_purchases` (`id`, `purchase_order_no`, `supplier_id`, `purchase_date`, `expected_delivery_date`, `actual_delivery_date`, `invoice_number`, `invoice_date`, `total_amount`, `tax_amount`, `discount_amount`, `net_amount`, `paid_amount`, `balance_amount`, `payment_status`, `purchase_status`, `payment_terms`, `transport_charges`, `other_charges`, `notes`, `received_by`, `verified_by`, `approved_by`, `hospital_id`, `created_at`, `updated_at`, `created_by`, `updated_by`) VALUES
(1, 'PO-20250827-5088', 1, '2025-08-27', '2025-08-28', NULL, '1234', '2025-08-27', 10000.00, 0.00, 0.00, 11000.00, 0.00, 11000.00, 'pending', 'received', '30', 500.00, 500.00, 'dsfsfsf', NULL, NULL, NULL, 98, '2025-08-27 07:14:46', '2025-08-27 07:16:13', NULL, NULL),
(2, 'PO-20250904-2364', 1, '2025-09-04', '2025-09-04', NULL, '324324', '2025-09-04', 1000.00, 0.00, 0.00, 1000.00, 0.00, 1000.00, 'pending', 'received', '30', 0.00, 0.00, 'dfgdgfdg', NULL, NULL, NULL, 98, '2025-09-04 04:18:47', '2025-09-04 04:19:18', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `medicine_purchase_items`
--

CREATE TABLE `medicine_purchase_items` (
  `id` int(11) NOT NULL,
  `purchase_id` int(11) NOT NULL,
  `medicine_id` int(11) NOT NULL,
  `quantity_ordered` int(11) NOT NULL,
  `quantity_received` int(11) DEFAULT 0,
  `unit_cost` decimal(10,2) NOT NULL,
  `total_cost` decimal(15,2) NOT NULL,
  `tax_rate` decimal(5,2) DEFAULT 0.00,
  `tax_amount` decimal(10,2) DEFAULT 0.00,
  `discount_rate` decimal(5,2) DEFAULT 0.00,
  `discount_amount` decimal(10,2) DEFAULT 0.00,
  `net_amount` decimal(15,2) NOT NULL,
  `expiry_date` date DEFAULT NULL,
  `batch_number` varchar(100) DEFAULT NULL,
  `manufacturing_date` date DEFAULT NULL,
  `manufacturer` varchar(255) DEFAULT NULL,
  `mrp` decimal(10,2) DEFAULT 0.00,
  `free_quantity` int(11) DEFAULT 0,
  `bonus_quantity` int(11) DEFAULT 0,
  `damaged_quantity` int(11) DEFAULT 0,
  `notes` text DEFAULT NULL,
  `received_status` enum('pending','partial','received','cancelled') DEFAULT 'pending',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `medicine_purchase_items`
--

INSERT INTO `medicine_purchase_items` (`id`, `purchase_id`, `medicine_id`, `quantity_ordered`, `quantity_received`, `unit_cost`, `total_cost`, `tax_rate`, `tax_amount`, `discount_rate`, `discount_amount`, `net_amount`, `expiry_date`, `batch_number`, `manufacturing_date`, `manufacturer`, `mrp`, `free_quantity`, `bonus_quantity`, `damaged_quantity`, `notes`, `received_status`, `created_at`, `updated_at`) VALUES
(1, 1, 35, 500, 500, 10.00, 5000.00, 0.00, 0.00, 0.00, 0.00, 5000.00, '2025-09-30', 'sdfsdfsf', NULL, NULL, 0.00, 0, 0, 0, NULL, 'received', '2025-08-27 07:14:46', '2025-08-27 07:16:13'),
(2, 1, 33, 500, 500, 10.00, 5000.00, 0.00, 0.00, 0.00, 0.00, 5000.00, '2025-09-27', 'werwerwr', NULL, NULL, 0.00, 0, 0, 0, NULL, 'received', '2025-08-27 07:14:46', '2025-08-27 07:16:13'),
(3, 2, 33, 100, 100, 10.00, 1000.00, 0.00, 0.00, 0.00, 0.00, 1000.00, '2025-10-31', 'dsfsdfdsf', NULL, NULL, 0.00, 0, 0, 0, NULL, 'received', '2025-09-04 04:18:47', '2025-09-04 04:19:18');

-- --------------------------------------------------------

--
-- Table structure for table `medicine_purchase_payments`
--

CREATE TABLE `medicine_purchase_payments` (
  `id` int(11) NOT NULL,
  `purchase_id` int(11) NOT NULL,
  `payment_date` date NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `payment_method` enum('cash','cheque','bank_transfer','card','online','upi') NOT NULL,
  `reference_number` varchar(100) DEFAULT NULL,
  `bank_name` varchar(255) DEFAULT NULL,
  `cheque_number` varchar(50) DEFAULT NULL,
  `cheque_date` date DEFAULT NULL,
  `transaction_id` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `status` enum('pending','cleared','bounced','cancelled') DEFAULT 'cleared',
  `hospital_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `created_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `medicine_stock_movements`
--

CREATE TABLE `medicine_stock_movements` (
  `id` int(11) NOT NULL,
  `medicine_id` int(11) NOT NULL,
  `batch_id` int(11) DEFAULT NULL,
  `movement_type` enum('purchase','sale','adjustment','return','damaged','expired','transfer') NOT NULL,
  `quantity` int(11) NOT NULL,
  `unit_cost` decimal(10,2) DEFAULT 0.00,
  `selling_price` decimal(10,2) DEFAULT 0.00,
  `reference_type` enum('purchase','prescription','adjustment','return','damage','expiry','transfer') DEFAULT NULL,
  `reference_id` int(11) DEFAULT NULL,
  `movement_date` timestamp NOT NULL DEFAULT current_timestamp(),
  `notes` text DEFAULT NULL,
  `performed_by` int(11) DEFAULT NULL,
  `hospital_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `medicine_stock_movements`
--

INSERT INTO `medicine_stock_movements` (`id`, `medicine_id`, `batch_id`, `movement_type`, `quantity`, `unit_cost`, `selling_price`, `reference_type`, `reference_id`, `movement_date`, `notes`, `performed_by`, `hospital_id`, `created_at`) VALUES
(1, 35, 1, 'adjustment', -1, 10.00, 0.00, NULL, NULL, '2025-09-02 13:46:49', 'Stock adjusted from 500 to 499', NULL, 98, '2025-09-02 13:46:49'),
(2, 35, 1, 'sale', 1, 0.00, 0.00, 'prescription', 21, '2025-09-02 13:46:49', 'Pharmacy sale - FIFO batch reduction', 992, 98, '2025-09-02 13:46:49'),
(3, 35, 1, 'adjustment', -10, 10.00, 0.00, NULL, NULL, '2025-09-02 13:56:53', 'Stock adjusted from 499 to 489', NULL, 98, '2025-09-02 13:56:53'),
(4, 35, 1, 'sale', 10, 0.00, 0.00, 'prescription', 22, '2025-09-02 13:56:53', 'Pharmacy sale - FIFO batch reduction', 992, 98, '2025-09-02 13:56:53'),
(5, 33, 2, 'adjustment', -12, 10.00, 0.00, NULL, NULL, '2025-09-02 13:56:53', 'Stock adjusted from 500 to 488', NULL, 98, '2025-09-02 13:56:53'),
(6, 33, 2, 'sale', 12, 0.00, 0.00, 'prescription', 22, '2025-09-02 13:56:53', 'Pharmacy sale - FIFO batch reduction', 992, 98, '2025-09-02 13:56:53'),
(7, 35, 1, 'adjustment', -10, 10.00, 0.00, NULL, NULL, '2025-09-04 04:20:36', 'Stock adjusted from 489 to 479', NULL, 98, '2025-09-04 04:20:36'),
(8, 35, 1, 'sale', 10, 0.00, 0.00, 'prescription', 23, '2025-09-04 04:20:36', 'Pharmacy sale - FIFO batch reduction', 992, 98, '2025-09-04 04:20:36'),
(9, 35, 1, 'adjustment', -9, 10.00, 0.00, NULL, NULL, '2025-09-04 04:23:00', 'Stock adjusted from 479 to 470', NULL, 98, '2025-09-04 04:23:00'),
(10, 35, 1, 'sale', 9, 0.00, 0.00, 'prescription', 24, '2025-09-04 04:23:00', 'Pharmacy sale - FIFO batch reduction', 992, 98, '2025-09-04 04:23:00'),
(11, 35, 1, 'adjustment', -10, 10.00, 0.00, NULL, NULL, '2025-09-06 08:11:21', 'Stock adjusted from 470 to 460', NULL, 98, '2025-09-06 08:11:21'),
(12, 35, 1, 'sale', 10, 0.00, 0.00, 'prescription', 22, '2025-09-06 08:11:21', 'Pharmacy sale - FIFO batch reduction', 992, 98, '2025-09-06 08:11:21'),
(13, 33, 2, 'adjustment', -12, 10.00, 0.00, NULL, NULL, '2025-09-06 08:11:21', 'Stock adjusted from 488 to 476', NULL, 98, '2025-09-06 08:11:21'),
(14, 33, 2, 'sale', 12, 0.00, 0.00, 'prescription', 22, '2025-09-06 08:11:21', 'Pharmacy sale - FIFO batch reduction', 992, 98, '2025-09-06 08:11:21'),
(15, 35, 1, 'adjustment', -1, 10.00, 0.00, NULL, NULL, '2025-09-06 08:24:14', 'Stock adjusted from 460 to 459', NULL, 98, '2025-09-06 08:24:14'),
(16, 35, 1, 'sale', 1, 0.00, 0.00, 'prescription', 25, '2025-09-06 08:24:14', 'Pharmacy sale - FIFO batch reduction', 992, 98, '2025-09-06 08:24:14'),
(17, 35, 1, 'adjustment', -1, 10.00, 0.00, NULL, NULL, '2025-09-06 08:27:27', 'Stock adjusted from 459 to 458', NULL, 98, '2025-09-06 08:27:27'),
(18, 35, 1, 'sale', 1, 0.00, 0.00, 'prescription', 26, '2025-09-06 08:27:27', 'Pharmacy sale - FIFO batch reduction', 992, 98, '2025-09-06 08:27:27');

-- --------------------------------------------------------

--
-- Stand-in structure for view `medicine_stock_with_batches`
-- (See below for the actual view)
--
CREATE TABLE `medicine_stock_with_batches` (
`medicine_id` int(100)
,`medicine_name` varchar(100)
,`generic` varchar(100)
,`category` varchar(100)
,`company` varchar(100)
,`batch_id` int(11)
,`batch_number` varchar(100)
,`expiry_date` date
,`manufacturing_date` date
,`batch_stock` int(11)
,`batch_cost` decimal(10,2)
,`batch_selling_price` decimal(10,2)
,`batch_mrp` decimal(10,2)
,`batch_status` varchar(12)
,`days_to_expiry` int(8)
,`expiry_status` varchar(13)
,`hospital_id` varchar(100)
);

-- --------------------------------------------------------

--
-- Table structure for table `medicine_suppliers`
--

CREATE TABLE `medicine_suppliers` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `company_name` varchar(255) DEFAULT NULL,
  `contact_person` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `mobile` varchar(20) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `postal_code` varchar(20) DEFAULT NULL,
  `tax_number` varchar(50) DEFAULT NULL,
  `bank_name` varchar(255) DEFAULT NULL,
  `bank_account` varchar(50) DEFAULT NULL,
  `payment_terms` varchar(255) DEFAULT NULL,
  `credit_limit` decimal(15,2) DEFAULT 0.00,
  `current_balance` decimal(15,2) DEFAULT 0.00,
  `license_number` varchar(100) DEFAULT NULL,
  `drug_license` varchar(100) DEFAULT NULL,
  `gst_number` varchar(50) DEFAULT NULL,
  `status` enum('active','inactive') DEFAULT 'active',
  `notes` text DEFAULT NULL,
  `hospital_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `medicine_suppliers`
--

INSERT INTO `medicine_suppliers` (`id`, `name`, `company_name`, `contact_person`, `email`, `phone`, `mobile`, `address`, `city`, `state`, `country`, `postal_code`, `tax_number`, `bank_name`, `bank_account`, `payment_terms`, `credit_limit`, `current_balance`, `license_number`, `drug_license`, `gst_number`, `status`, `notes`, `hospital_id`, `created_at`, `updated_at`, `created_by`, `updated_by`) VALUES
(1, 'Md Opu', 'Codearistos', 'Md Opu', 'info@codearistos.net342423423', '01749335508', '01749335508', 'Bashundhara, Dhaka', 'Dhaka', 'sdfsdfsdfsdfsdf', 'Bangladesh', '1200', '234234234324', 'sdfsdf', '234234234234', '30', 100.00, 0.00, '234234234234', '234234', '234324', 'active', '234234234234', 98, '2025-08-27 07:12:03', '2025-08-27 07:12:30', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `meeting`
--

CREATE TABLE `meeting` (
  `id` int(100) NOT NULL,
  `patient` varchar(100) DEFAULT NULL,
  `doctor` varchar(100) DEFAULT NULL,
  `topic` varchar(1000) DEFAULT NULL,
  `type` varchar(100) DEFAULT NULL,
  `start_time` varchar(100) DEFAULT NULL,
  `duration` varchar(100) DEFAULT NULL,
  `timezone` varchar(100) DEFAULT NULL,
  `meeting_id` varchar(100) DEFAULT NULL,
  `meeting_password` varchar(100) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `time_slot` varchar(100) DEFAULT NULL,
  `s_time` varchar(100) DEFAULT NULL,
  `e_time` varchar(100) DEFAULT NULL,
  `remarks` varchar(500) DEFAULT NULL,
  `add_date` varchar(100) DEFAULT NULL,
  `registration_time` varchar(100) DEFAULT NULL,
  `s_time_key` varchar(100) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `request` varchar(100) DEFAULT NULL,
  `patientname` varchar(1000) DEFAULT NULL,
  `doctorname` varchar(1000) DEFAULT NULL,
  `ion_user_id` varchar(100) DEFAULT NULL,
  `doctor_ion_id` varchar(100) DEFAULT NULL,
  `patient_ion_id` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `start_url` varchar(1000) DEFAULT NULL,
  `join_url` varchar(1000) DEFAULT NULL,
  `appointment_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `meeting`
--

INSERT INTO `meeting` (`id`, `patient`, `doctor`, `topic`, `type`, `start_time`, `duration`, `timezone`, `meeting_id`, `meeting_password`, `date`, `time_slot`, `s_time`, `e_time`, `remarks`, `add_date`, `registration_time`, `s_time_key`, `status`, `user`, `request`, `patientname`, `doctorname`, `ion_user_id`, `doctor_ion_id`, `patient_ion_id`, `hospital_id`, `start_url`, `join_url`, `appointment_id`) VALUES
(14, '53', '44', 'Doctor Appointment', '2', '2023-10-25T10:00:00', '60', 'UTC', '82011236547', 'x95kj0', NULL, NULL, NULL, NULL, NULL, '03/04/25', '1741064823', NULL, NULL, '1131', NULL, 'Mr Patient', 'Mr Doctor', NULL, '1131', '1141', '98', 'https://us05web.zoom.us/s/82011236547?zak=eyJ0eXAiOiJKV1QiLCJzdiI6IjAwMDAwMSIsInptX3NrbSI6InptX28ybSIsImFsZyI6IkhTMjU2In0.eyJpc3MiOiJ3ZWIiLCJjbHQiOjAsIm1udW0iOiI4MjAxMTIzNjU0NyIsImF1ZCI6ImNsaWVudHNtIiwidWlkIjoiVHRCeTZKVEZRaHFJUTNENXZBaDN3ZyIsInppZCI6ImFmYjY3ZDE2NDA3NDQ3Y2ZhZTY4MTk4N2NmNzg3ZjY3Iiwic2siOiI3OTU4MzM1NTAzMzU3OTE5MzQxIiwic3R5IjoxLCJ3Y2QiOiJ1czA1IiwiZXhwIjoxNzQxMDcyMDIzLCJpYXQiOjE3NDEwNjQ4MjMsImFpZCI6IkpBeVp4TmdQUlVxalJFTUdwOG16cmciLCJjaWQiOiIifQ.Eq2XtP0J_OmhZxwIDVo2MQtwF5c8JrfLG00nnlVrlcU', 'https://us05web.zoom.us/j/82011236547?pwd=d5xDudIDxHEKoCxOnbr6EBaC9Hbtq8.1', '440'),
(13, '53', '44', 'Doctor Appointment', '2', '2023-10-25T10:00:00', '60', 'UTC', '83538920357', '93mTmE', NULL, NULL, NULL, NULL, NULL, '03/03/25', '1741012832', NULL, NULL, '1131', NULL, 'Mr Patient', 'Mr Doctor', NULL, '1131', '1141', '98', 'https://us05web.zoom.us/s/83538920357?zak=eyJ0eXAiOiJKV1QiLCJzdiI6IjAwMDAwMSIsInptX3NrbSI6InptX28ybSIsImFsZyI6IkhTMjU2In0.eyJpc3MiOiJ3ZWIiLCJjbHQiOjAsIm1udW0iOiI4MzUzODkyMDM1NyIsImF1ZCI6ImNsaWVudHNtIiwidWlkIjoiVHRCeTZKVEZRaHFJUTNENXZBaDN3ZyIsInppZCI6ImE4ZTNhMTg1NjJkOTRjMmQ4MzJjYzNkMmFiZjg1YTZkIiwic2siOiI3OTU4MzM1NTAzMzU3OTE5MzQxIiwic3R5IjoxLCJ3Y2QiOiJ1czA1IiwiZXhwIjoxNzQxMDIwMDMyLCJpYXQiOjE3NDEwMTI4MzIsImFpZCI6IkpBeVp4TmdQUlVxalJFTUdwOG16cmciLCJjaWQiOiIifQ.gpcR70RX_ycUyhOWkENv2CTmjrzdsGRA5DcW1shO6eE', 'https://us05web.zoom.us/j/83538920357?pwd=G6NFMVC7IOaVXa4DamaHJq2ZtHzEnV.1', '437'),
(12, '53', '44', 'Doctor Appointment', '2', '2023-10-25T10:00:00', '60', 'UTC', '85895648727', 'KM6q12', NULL, NULL, NULL, NULL, NULL, '03/03/25', '1741011268', NULL, NULL, '1131', NULL, 'Mr Patient', 'Mr Doctor', NULL, '1131', '1141', '98', 'https://us05web.zoom.us/s/85895648727?zak=eyJ0eXAiOiJKV1QiLCJzdiI6IjAwMDAwMSIsInptX3NrbSI6InptX28ybSIsImFsZyI6IkhTMjU2In0.eyJpc3MiOiJ3ZWIiLCJjbHQiOjAsIm1udW0iOiI4NTg5NTY0ODcyNyIsImF1ZCI6ImNsaWVudHNtIiwidWlkIjoiVHRCeTZKVEZRaHFJUTNENXZBaDN3ZyIsInppZCI6IjM2YTVjYjJjNDdkZTRjMTc5OWY1YzlhOTA5NzJjYTE4Iiwic2siOiI3OTU4MzM1NTAzMzU3OTE5MzQxIiwic3R5IjoxLCJ3Y2QiOiJ1czA1IiwiZXhwIjoxNzQxMDE4NDY3LCJpYXQiOjE3NDEwMTEyNjcsImFpZCI6IkpBeVp4TmdQUlVxalJFTUdwOG16cmciLCJjaWQiOiIifQ.X4BR7Uwz2fn-fBJbug_swT5vVQKNKKebImVWvRZRqyc', 'https://us05web.zoom.us/j/85895648727?pwd=aZvDytH2dqQqeppuffCpXlThbzuvod.1', '438'),
(11, '53', '44', 'Doctor Appointment', '2', '2023-10-25T10:00:00', '60', 'UTC', '82586459984', 'wG3cKq', NULL, NULL, NULL, NULL, NULL, '03/03/25', '1741011112', NULL, NULL, '1131', NULL, 'Mr Patient', 'Mr Doctor', NULL, '1131', '1141', '98', 'https://us05web.zoom.us/s/82586459984?zak=eyJ0eXAiOiJKV1QiLCJzdiI6IjAwMDAwMSIsInptX3NrbSI6InptX28ybSIsImFsZyI6IkhTMjU2In0.eyJpc3MiOiJ3ZWIiLCJjbHQiOjAsIm1udW0iOiI4MjU4NjQ1OTk4NCIsImF1ZCI6ImNsaWVudHNtIiwidWlkIjoiVHRCeTZKVEZRaHFJUTNENXZBaDN3ZyIsInppZCI6IjEyYjhjYjI3N2E4NzRhMGJiODc3ZTBmZjY2Zjk5ZWU4Iiwic2siOiI3OTU4MzM1NTAzMzU3OTE5MzQxIiwic3R5IjoxLCJ3Y2QiOiJ1czA1IiwiZXhwIjoxNzQxMDE4MzEyLCJpYXQiOjE3NDEwMTExMTIsImFpZCI6IkpBeVp4TmdQUlVxalJFTUdwOG16cmciLCJjaWQiOiIifQ.V_o9Em_tEj7_bchm9Qvks6KnZY3knivqn5x2EZOwjjQ', 'https://us05web.zoom.us/j/82586459984?pwd=UOPSWqYF8ZvDOQPTrNZzXAn6HvyN4l.1', '439'),
(10, '53', '44', 'Doctor Appointment', '2', '2023-10-25T10:00:00', '60', 'UTC', '88391727862', 'vCyFb8', NULL, NULL, NULL, NULL, NULL, '03/03/25', '1741011108', NULL, NULL, '1131', NULL, 'Mr Patient', 'Mr Doctor', NULL, '1131', '1141', '98', 'https://us05web.zoom.us/s/88391727862?zak=eyJ0eXAiOiJKV1QiLCJzdiI6IjAwMDAwMSIsInptX3NrbSI6InptX28ybSIsImFsZyI6IkhTMjU2In0.eyJpc3MiOiJ3ZWIiLCJjbHQiOjAsIm1udW0iOiI4ODM5MTcyNzg2MiIsImF1ZCI6ImNsaWVudHNtIiwidWlkIjoiVHRCeTZKVEZRaHFJUTNENXZBaDN3ZyIsInppZCI6Ijg5MjA1OTM0NTRkODQxYTdhZWU1NGMyNTk4ZjQ1MmY3Iiwic2siOiI3OTU4MzM1NTAzMzU3OTE5MzQxIiwic3R5IjoxLCJ3Y2QiOiJ1czA1IiwiZXhwIjoxNzQxMDE4MzA4LCJpYXQiOjE3NDEwMTExMDgsImFpZCI6IkpBeVp4TmdQUlVxalJFTUdwOG16cmciLCJjaWQiOiIifQ.CtX2MkHh85UQd3oBJQOUHJxwRFkZBim-WXokgPpQjBg', 'https://us05web.zoom.us/j/88391727862?pwd=O7FtQFKqNvoauplrW5JKCKVPeUqpJi.1', '439'),
(9, '53', '44', 'Doctor Appointment', '2', '2023-10-25T10:00:00', '60', 'UTC', '81890542085', 'Y9ZTne', NULL, NULL, NULL, NULL, NULL, '03/03/25', '1741010847', NULL, NULL, '1131', NULL, 'Mr Patient', 'Mr Doctor', NULL, '1131', '1141', '98', 'https://us05web.zoom.us/s/81890542085?zak=eyJ0eXAiOiJKV1QiLCJzdiI6IjAwMDAwMSIsInptX3NrbSI6InptX28ybSIsImFsZyI6IkhTMjU2In0.eyJpc3MiOiJ3ZWIiLCJjbHQiOjAsIm1udW0iOiI4MTg5MDU0MjA4NSIsImF1ZCI6ImNsaWVudHNtIiwidWlkIjoiVHRCeTZKVEZRaHFJUTNENXZBaDN3ZyIsInppZCI6IjI1MGVkNjI2Y2E0YzRhMGNiZjRmZTU3ZjY0YjE4N2NmIiwic2siOiI3OTU4MzM1NTAzMzU3OTE5MzQxIiwic3R5IjoxLCJ3Y2QiOiJ1czA1IiwiZXhwIjoxNzQxMDE4MDQ3LCJpYXQiOjE3NDEwMTA4NDcsImFpZCI6IkpBeVp4TmdQUlVxalJFTUdwOG16cmciLCJjaWQiOiIifQ.7K1QUglIKiBA2YZN8n-Pa6xQ14twmkg0KpORk7g2Zo0', 'https://us05web.zoom.us/j/81890542085?pwd=rbCflrIbamfrdlvQg6w3ahXfQb9CV2.1', '439');

-- --------------------------------------------------------

--
-- Table structure for table `meeting_settings`
--

CREATE TABLE `meeting_settings` (
  `id` int(100) NOT NULL,
  `api_key` varchar(100) DEFAULT NULL,
  `secret_key` varchar(100) DEFAULT NULL,
  `ion_user_id` varchar(100) DEFAULT NULL,
  `url` varchar(500) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `meeting_settings`
--

INSERT INTO `meeting_settings` (`id`, `api_key`, `secret_key`, `ion_user_id`, `url`, `hospital_id`) VALUES
(3, 'JAyZxNgPRU', 'iA7Jl6v9', '1131', 'aXZ3JuqEQ86', NULL),
(2, 'JAyZxNgPRUqjREMGp8mzrg', 'iA7Jl6v9Q2uWi0uUyA3pBw', NULL, 'aXZ3JuqEQ86uckLHswe6OzVVPDOVo8Ba', '98');

-- --------------------------------------------------------

--
-- Table structure for table `module`
--

CREATE TABLE `module` (
  `id` int(100) NOT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `modules` varchar(1000) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `y` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Stand-in structure for view `monthly_usage_summary`
-- (See below for the actual view)
--
CREATE TABLE `monthly_usage_summary` (
`inventory_item_id` int(11)
,`item_name` varchar(255)
,`category` varchar(100)
,`usage_year` int(5)
,`usage_month` int(3)
,`total_quantity_used` decimal(32,0)
,`total_cost` decimal(37,2)
,`avg_daily_usage` decimal(14,4)
,`hospital_id` int(11)
);

-- --------------------------------------------------------

--
-- Table structure for table `notice`
--

CREATE TABLE `notice` (
  `id` int(100) NOT NULL,
  `title` varchar(500) DEFAULT NULL,
  `description` varchar(100) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `type` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `nurse`
--

CREATE TABLE `nurse` (
  `id` int(100) NOT NULL,
  `img_url` varchar(100) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `address` varchar(100) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `y` varchar(100) DEFAULT NULL,
  `z` varchar(100) DEFAULT NULL,
  `ion_user_id` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `profile` varchar(1000) DEFAULT NULL,
  `signature` varchar(1000) DEFAULT NULL,
  `available` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `nurse`
--

INSERT INTO `nurse` (`id`, `img_url`, `name`, `email`, `address`, `phone`, `x`, `y`, `z`, `ion_user_id`, `hospital_id`, `profile`, `signature`, `available`) VALUES
(6, 'uploads/userIcon1.png', 'Mrs Nurse', 'nurse@hms.com', 'Ka/5, Bashundhara R/A Gate', '0123456789', NULL, NULL, NULL, '1037', '98', '<p>dckbkbkdc</p>\r\n<p>sdcsdjdscjhs</p>', 'uploads/Screenshot_from_2022-02-28_15-12-541.png', '1');

-- --------------------------------------------------------

--
-- Table structure for table `odontogram`
--

CREATE TABLE `odontogram` (
  `id` int(100) NOT NULL,
  `patient_id` int(100) NOT NULL,
  `Tooth32` varchar(30) NOT NULL,
  `Tooth31` varchar(30) NOT NULL,
  `Tooth30` varchar(30) NOT NULL,
  `Tooth29` varchar(30) NOT NULL,
  `Tooth28` varchar(30) NOT NULL,
  `Tooth27` varchar(30) NOT NULL,
  `Tooth26` varchar(30) NOT NULL,
  `Tooth25` varchar(30) NOT NULL,
  `Tooth24` varchar(30) NOT NULL,
  `Tooth23` varchar(30) NOT NULL,
  `Tooth22` varchar(30) NOT NULL,
  `Tooth21` varchar(30) NOT NULL,
  `Tooth20` varchar(30) NOT NULL,
  `Tooth19` varchar(30) NOT NULL,
  `Tooth18` varchar(30) NOT NULL,
  `Tooth17` varchar(30) NOT NULL,
  `Tooth16` varchar(30) NOT NULL,
  `Tooth15` varchar(30) NOT NULL,
  `Tooth14` varchar(30) NOT NULL,
  `Tooth13` varchar(30) NOT NULL,
  `Tooth12` varchar(30) NOT NULL,
  `Tooth11` varchar(30) NOT NULL,
  `Tooth10` varchar(30) NOT NULL,
  `Tooth9` varchar(30) NOT NULL,
  `Tooth8` varchar(30) NOT NULL,
  `Tooth7` varchar(30) NOT NULL,
  `Tooth6` varchar(30) NOT NULL,
  `Tooth5` varchar(30) NOT NULL,
  `Tooth4` varchar(30) NOT NULL,
  `Tooth3` varchar(30) NOT NULL,
  `Tooth2` varchar(30) NOT NULL,
  `Tooth1` varchar(30) NOT NULL,
  `description` varchar(500) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `odontogram`
--

INSERT INTO `odontogram` (`id`, `patient_id`, `Tooth32`, `Tooth31`, `Tooth30`, `Tooth29`, `Tooth28`, `Tooth27`, `Tooth26`, `Tooth25`, `Tooth24`, `Tooth23`, `Tooth22`, `Tooth21`, `Tooth20`, `Tooth19`, `Tooth18`, `Tooth17`, `Tooth16`, `Tooth15`, `Tooth14`, `Tooth13`, `Tooth12`, `Tooth11`, `Tooth10`, `Tooth9`, `Tooth8`, `Tooth7`, `Tooth6`, `Tooth5`, `Tooth4`, `Tooth3`, `Tooth2`, `Tooth1`, `description`) VALUES
(9, 11, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'Descriptionn'),
(10, 21, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', ''),
(11, 22, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', ''),
(12, 23, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'Description goes here ...'),
(13, 24, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'Description'),
(14, 26, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', ''),
(15, 27, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', ''),
(16, 29, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', ''),
(17, 32, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', ''),
(18, 33, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', ''),
(19, 44, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', ''),
(20, 46, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', ''),
(21, 47, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', ''),
(22, 51, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', ''),
(23, 50, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', ''),
(24, 52, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', ''),
(25, 53, 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', 'white', '');

-- --------------------------------------------------------

--
-- Table structure for table `ot_payment`
--

CREATE TABLE `ot_payment` (
  `id` int(100) NOT NULL,
  `patient` varchar(100) DEFAULT NULL,
  `doctor_c_s` varchar(100) DEFAULT NULL,
  `doctor_a_s_1` varchar(100) DEFAULT NULL,
  `doctor_a_s_2` varchar(100) DEFAULT NULL,
  `doctor_anaes` varchar(100) DEFAULT NULL,
  `n_o_o` varchar(100) DEFAULT NULL,
  `c_s_f` varchar(100) DEFAULT NULL,
  `a_s_f_1` varchar(100) DEFAULT NULL,
  `a_s_f_2` varchar(11) DEFAULT NULL,
  `anaes_f` varchar(100) DEFAULT NULL,
  `ot_charge` varchar(100) DEFAULT NULL,
  `cab_rent` varchar(100) DEFAULT NULL,
  `seat_rent` varchar(100) DEFAULT NULL,
  `others` varchar(100) DEFAULT NULL,
  `discount` varchar(100) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `amount` varchar(100) DEFAULT NULL,
  `doctor_fees` varchar(100) DEFAULT NULL,
  `hospital_fees` varchar(100) DEFAULT NULL,
  `gross_total` varchar(100) DEFAULT NULL,
  `flat_discount` varchar(100) DEFAULT NULL,
  `amount_received` varchar(100) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `package`
--

CREATE TABLE `package` (
  `id` int(100) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `monthly_price` varchar(100) DEFAULT NULL,
  `p_limit` varchar(100) DEFAULT NULL,
  `d_limit` varchar(100) DEFAULT NULL,
  `module` varchar(1000) DEFAULT NULL,
  `show_in_frontend` varchar(100) DEFAULT NULL,
  `frontend_order` varchar(100) DEFAULT NULL,
  `set_as_default` varchar(100) DEFAULT NULL,
  `yearly_price` varchar(1000) DEFAULT NULL,
  `recommended` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `package`
--

INSERT INTO `package` (`id`, `name`, `monthly_price`, `p_limit`, `d_limit`, `module`, `show_in_frontend`, `frontend_order`, `set_as_default`, `yearly_price`, `recommended`) VALUES
(1, 'Premium ', '10000', '2000', '1000', 'accountant,appointment,lab,bed,department,doctor,donor,finance,pharmacy,laboratorist,medicine,nurse,patient,pharmacist,prescription,receptionist,report,notice,email,sms,file,payroll,attendance,leave,chat,site', 'Yes', NULL, NULL, '100000', 'Yes'),
(2, 'Standard', '5000', '1000', '500', 'accountant,appointment,lab,bed,department,doctor,donor,finance,pharmacy,laboratorist,medicine,nurse,patient,pharmacist,prescription,receptionist,report,notice,email,sms,file,payroll,attendance,leave,chat', 'Yes', NULL, NULL, '50000', 'Yes'),
(3, 'Starter', '3000', '100', '50', 'accountant,appointment,lab,bed,department,doctor,donor,finance,pharmacy,laboratorist,medicine,nurse,patient,pharmacist,prescription,receptionist,report,notice,email,sms,file,payroll', 'Yes', NULL, NULL, '30000', 'Yes');

-- --------------------------------------------------------

--
-- Table structure for table `patient`
--

CREATE TABLE `patient` (
  `id` int(100) NOT NULL,
  `img_url` varchar(100) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `email` varchar(1000) DEFAULT NULL,
  `doctor` varchar(100) DEFAULT NULL,
  `address` varchar(100) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `sex` varchar(100) DEFAULT NULL,
  `birthdate` varchar(100) DEFAULT NULL,
  `age` varchar(100) DEFAULT NULL,
  `bloodgroup` varchar(100) DEFAULT NULL,
  `ion_user_id` varchar(100) DEFAULT NULL,
  `patient_id` varchar(100) DEFAULT NULL,
  `add_date` varchar(100) DEFAULT NULL,
  `registration_time` varchar(100) DEFAULT NULL,
  `how_added` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `appointment_confirmation` varchar(1000) DEFAULT NULL,
  `appointment_creation` varchar(1000) DEFAULT NULL,
  `payment_confirmation` varchar(1000) DEFAULT NULL,
  `meeting_schedule` varchar(1000) DEFAULT NULL,
  `language` varchar(300) DEFAULT NULL,
  `national_id` varchar(100) DEFAULT NULL,
  `height` varchar(100) DEFAULT NULL,
  `weight` varchar(100) DEFAULT NULL,
  `known_allergies` varchar(500) DEFAULT NULL,
  `medical_history` varchar(500) DEFAULT NULL,
  `emergency_contact_name` varchar(255) DEFAULT NULL,
  `emergency_contact_number` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `patient`
--

INSERT INTO `patient` (`id`, `img_url`, `name`, `email`, `doctor`, `address`, `phone`, `sex`, `birthdate`, `age`, `bloodgroup`, `ion_user_id`, `patient_id`, `add_date`, `registration_time`, `how_added`, `hospital_id`, `appointment_confirmation`, `appointment_creation`, `payment_confirmation`, `meeting_schedule`, `language`, `national_id`, `height`, `weight`, `known_allergies`, `medical_history`, `emergency_contact_name`, `emergency_contact_number`) VALUES
(25, NULL, 'caSoft', 'admin@example.commm', NULL, 'Ka, 3/I, Bashundhara Main Road, Baridhara', '01777024443', 'Male', '11-09-1987', '35-6-30', '', '1065', '631632', '04/10/23', '1681107777', NULL, '113', 'Active', 'Active', 'Active', 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(34, NULL, ' Rizvi Mahmud', 'rizvi@example.com', NULL, NULL, ' 012345678', 'Male', '05-10-2024', '0-0-2', NULL, '1113', '776677', '10/07/24', NULL, 'from_pos', '133', 'Active', 'Active', 'Active', 'Active', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(53, NULL, 'Mr Patient', 'patient@hms.com', '44,49', 'Bashundhara, Dhaka', '01749335508', 'Male', '01-01-2025', '0-0-13', 'A+', '1141', '734154', '01/14/25', '1736862254', NULL, '98', 'Active', 'Active', 'Active', 'Active', NULL, '123456', '156', '67', 'dfgdfg', 'dfgdfg', '', '');

-- --------------------------------------------------------

--
-- Table structure for table `patient_deposit`
--

CREATE TABLE `patient_deposit` (
  `id` int(10) NOT NULL,
  `patient` varchar(100) DEFAULT NULL,
  `payment_id` varchar(100) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `deposited_amount` varchar(100) DEFAULT NULL,
  `amount_received_id` varchar(100) DEFAULT NULL,
  `deposit_type` varchar(100) DEFAULT NULL,
  `gateway` varchar(100) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `payment_from` varchar(1000) DEFAULT NULL,
  `insurance_company` varchar(100) DEFAULT NULL,
  `insurance_details` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `patient_material`
--

CREATE TABLE `patient_material` (
  `id` int(100) NOT NULL,
  `date` varchar(100) DEFAULT NULL,
  `title` varchar(100) DEFAULT NULL,
  `category` varchar(100) DEFAULT NULL,
  `patient` varchar(100) DEFAULT NULL,
  `patient_name` varchar(100) DEFAULT NULL,
  `patient_address` varchar(100) DEFAULT NULL,
  `patient_phone` varchar(100) DEFAULT NULL,
  `url` varchar(1000) DEFAULT NULL,
  `date_string` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `folder` varchar(1000) DEFAULT NULL,
  `type` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `patient_material`
--

INSERT INTO `patient_material` (`id`, `date`, `title`, `category`, `patient`, `patient_name`, `patient_address`, `patient_phone`, `url`, `date_string`, `hospital_id`, `folder`, `type`) VALUES
(49, '1742978889', 'rtetre', NULL, '53', 'Mr Patient', 'Bashundhara, Dhaka', '01749335508', 'uploads/documents/PatientHospitalManagementSystem.pdf', '26-03-25', '98', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `payment`
--

CREATE TABLE `payment` (
  `id` int(10) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `patient` varchar(100) DEFAULT NULL,
  `doctor` varchar(100) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `amount` varchar(100) DEFAULT NULL,
  `vat` varchar(100) NOT NULL DEFAULT '0',
  `x_ray` varchar(100) DEFAULT NULL,
  `flat_vat` varchar(100) DEFAULT NULL,
  `discount` varchar(100) NOT NULL DEFAULT '0',
  `flat_discount` varchar(100) DEFAULT NULL,
  `gross_total` varchar(100) DEFAULT NULL,
  `remarks` varchar(500) DEFAULT NULL,
  `hospital_amount` varchar(100) DEFAULT NULL,
  `doctor_amount` varchar(100) DEFAULT NULL,
  `category_amount` varchar(1000) DEFAULT NULL,
  `category_name` varchar(1000) DEFAULT NULL,
  `amount_received` varchar(100) DEFAULT NULL,
  `deposit_type` varchar(100) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `patient_name` varchar(100) DEFAULT NULL,
  `patient_phone` varchar(100) DEFAULT NULL,
  `patient_address` varchar(100) DEFAULT NULL,
  `doctor_name` varchar(100) DEFAULT NULL,
  `date_string` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `payment_from` varchar(1000) DEFAULT NULL,
  `date_delivery` varchar(1000) DEFAULT NULL,
  `time_delivery` varchar(1000) DEFAULT NULL,
  `percent_discount` varchar(100) DEFAULT NULL,
  `vat_amount_percent` varchar(100) DEFAULT NULL,
  `appointment_id` varchar(50) DEFAULT NULL,
  `hospital_payment_id` varchar(100) DEFAULT NULL,
  `alloted_bed_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `paymentGateway`
--

CREATE TABLE `paymentGateway` (
  `id` int(100) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `merchant_key` varchar(100) DEFAULT NULL,
  `salt` varchar(100) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `y` varchar(100) DEFAULT NULL,
  `APIUsername` varchar(100) DEFAULT NULL,
  `APIPassword` varchar(100) DEFAULT NULL,
  `APISignature` varchar(100) DEFAULT NULL,
  `status` varchar(1000) DEFAULT NULL,
  `publish` varchar(1000) DEFAULT NULL,
  `secret` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `public_key` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `paymentGateway`
--

INSERT INTO `paymentGateway` (`id`, `name`, `merchant_key`, `salt`, `x`, `y`, `APIUsername`, `APIPassword`, `APISignature`, `status`, `publish`, `secret`, `hospital_id`, `public_key`) VALUES
(373, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '84', NULL),
(372, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '84', NULL),
(371, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '84', NULL),
(368, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '83', NULL),
(369, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '83', NULL),
(370, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '83', 'Public key'),
(367, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '83', NULL),
(366, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', NULL, 'Public key'),
(365, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', NULL, NULL),
(364, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, NULL, NULL),
(363, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, NULL, NULL),
(362, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', NULL, 'Public key'),
(361, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', NULL, NULL),
(360, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, NULL, NULL),
(359, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, NULL, NULL),
(358, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', NULL, 'Public key'),
(357, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', NULL, NULL),
(356, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, NULL, NULL),
(355, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, NULL, NULL),
(354, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', NULL, 'Public key'),
(353, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', NULL, NULL),
(352, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, NULL, NULL),
(351, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, NULL, NULL),
(350, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '82', 'Public key'),
(349, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '82', NULL),
(348, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '82', NULL),
(87, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', 'pk_test_51LCOGdKx67N5dEGbYuv5r', 'sk_test_51LCOGdKx67N5dEGb6KrT1Nl4', 'superadmin', NULL),
(88, 'PayPal', NULL, NULL, NULL, NULL, 'API Username', 'API Password', 'API Signature', 'test', NULL, NULL, 'superadmin', NULL),
(89, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'Secret Key', 'superadmin', 'Public Key'),
(90, 'Pay U Money', 'Merchant Key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, 'superadmin', NULL),
(347, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '82', NULL),
(346, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '79', 'Public key'),
(345, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '79', NULL),
(344, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '79', NULL),
(343, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '79', NULL),
(342, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '78', 'Public key'),
(341, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '78', NULL),
(340, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '78', NULL),
(339, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '78', NULL),
(338, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '77', 'Public key'),
(337, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '77', NULL),
(336, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '77', NULL),
(335, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '77', NULL),
(334, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '76', 'Public key'),
(333, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '76', NULL),
(332, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '76', NULL),
(331, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '76', NULL),
(330, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '75', 'Public key'),
(329, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '75', NULL),
(328, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '75', NULL),
(327, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '75', NULL),
(326, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '74', 'Public key'),
(325, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '74', NULL),
(324, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '74', NULL),
(323, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '74', NULL),
(322, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '73', 'Public key'),
(321, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '73', NULL),
(320, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '73', NULL),
(319, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '73', NULL),
(318, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '72', 'Public key'),
(317, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '72', NULL),
(316, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '72', NULL),
(315, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '72', NULL),
(314, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '71', 'Public key'),
(313, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '71', NULL),
(312, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '71', NULL),
(311, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '71', NULL),
(310, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '70', 'Public key'),
(309, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '70', NULL),
(308, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '70', NULL),
(307, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '70', NULL),
(306, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '69', 'Public key'),
(305, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '69', NULL),
(304, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '69', NULL),
(303, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '69', NULL),
(302, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', NULL, 'Public key'),
(301, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', NULL, NULL),
(300, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, NULL, NULL),
(299, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, NULL, NULL),
(298, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', NULL, 'Public key'),
(297, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', NULL, NULL),
(296, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, NULL, NULL),
(295, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, NULL, NULL),
(294, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '65', 'Public key'),
(293, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '65', NULL),
(292, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '65', NULL),
(291, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '65', NULL),
(290, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '64', 'Public key'),
(289, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '64', NULL),
(288, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '64', NULL),
(287, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '64', NULL),
(286, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', NULL, 'Public key'),
(285, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', NULL, NULL),
(284, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, NULL, NULL),
(283, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, NULL, NULL),
(282, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '15', 'Public key'),
(281, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '15', NULL),
(280, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '15', NULL),
(279, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '15', NULL),
(278, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '14', 'Public key'),
(277, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '14', NULL),
(276, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '14', NULL),
(275, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '14', NULL),
(273, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '13', NULL),
(274, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '13', 'Public key'),
(272, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '13', NULL),
(271, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '13', NULL),
(270, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '12', 'Public key'),
(269, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '12', NULL),
(268, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '12', NULL),
(267, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '12', NULL),
(266, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '11', 'Public key'),
(265, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '11', NULL),
(264, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '11', NULL),
(263, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '11', NULL),
(262, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '10', 'Public key'),
(261, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '10', NULL),
(260, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '10', NULL),
(259, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '10', NULL),
(258, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '9', 'Public key'),
(257, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '9', NULL),
(256, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '9', NULL),
(255, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '9', NULL),
(254, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '8', 'Public key'),
(253, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '8', NULL),
(252, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '8', NULL),
(251, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '8', NULL),
(250, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '7', 'Public key'),
(249, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '7', NULL),
(248, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '7', NULL),
(247, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '7', NULL),
(245, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '6', NULL),
(246, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '6', 'Public key'),
(244, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '6', NULL),
(240, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '5', NULL),
(241, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '5', NULL),
(242, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '5', 'Public key'),
(243, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '6', NULL),
(239, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '5', NULL),
(238, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '4', 'Public key'),
(237, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '4', NULL),
(236, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '4', NULL),
(235, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '4', NULL),
(234, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '3', 'Public key'),
(233, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '3', NULL),
(232, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '3', NULL),
(231, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '3', NULL),
(230, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '2', 'Public key'),
(229, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '2', NULL),
(228, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '2', NULL),
(227, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '2', NULL),
(226, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '1', 'Public key'),
(225, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', 'pk_test_gexcE9ANRKNDmyzipYfTuWDO00IbHkv9kW', 'sk_test_A5Ylbv0HHQXNWJDLvJsijF0o00jXeE1uc7', '1', NULL),
(224, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '1', NULL),
(223, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '1', NULL),
(374, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '84', 'Public key'),
(375, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '85', NULL),
(376, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '85', NULL),
(377, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '85', NULL),
(378, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '85', 'Public key'),
(379, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '86', NULL),
(380, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '86', NULL),
(381, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '86', NULL),
(382, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '86', 'Public key'),
(383, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '87', NULL),
(384, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '87', NULL),
(385, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '87', NULL),
(386, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '87', 'Public key'),
(387, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '88', NULL),
(388, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '88', NULL),
(389, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '88', NULL),
(390, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '88', 'Public key'),
(391, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '89', NULL),
(392, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '89', NULL),
(393, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '89', NULL),
(394, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '89', 'Public key'),
(395, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '90', NULL),
(396, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '90', NULL),
(397, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '90', NULL),
(398, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '90', 'Public key'),
(399, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '91', NULL),
(400, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '91', NULL),
(401, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '91', NULL),
(402, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '91', 'Public key'),
(403, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '92', NULL),
(404, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '92', NULL),
(405, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '92', NULL),
(406, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '92', 'Public key'),
(407, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '93', NULL),
(408, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '93', NULL),
(409, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '93', NULL),
(410, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '93', 'Public key'),
(411, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '94', NULL),
(412, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '94', NULL),
(413, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '94', NULL),
(414, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '94', 'Public key'),
(415, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '95', NULL),
(416, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '95', NULL),
(417, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '95', NULL),
(418, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '95', 'Public key'),
(419, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '96', NULL),
(420, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '96', NULL),
(421, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '96', NULL),
(422, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '96', 'Public key'),
(423, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '97', NULL),
(424, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '97', NULL),
(425, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '97', NULL),
(426, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '97', 'Public key'),
(427, 'PayPal', NULL, NULL, NULL, NULL, 'API Username', 'API Password', 'API Signature', 'test', NULL, NULL, '98', NULL),
(428, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '98', NULL),
(429, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', 'Publish key', 'Secret Key', '98', NULL),
(430, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'sk_test_ff30eb12496cc345ce7db1d2a059842e6efcda53', '98', 'pk_test_b26328a3253038fd8de9e8fbf14ae0fe06fab45b'),
(431, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '99', NULL),
(432, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '99', NULL),
(433, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '99', NULL),
(434, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '99', 'Public key'),
(435, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '100', NULL),
(436, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '100', NULL),
(437, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '100', NULL),
(438, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '100', 'Public key'),
(439, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '101', NULL),
(440, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '101', NULL),
(441, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '101', NULL),
(442, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '101', 'Public key'),
(443, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '102', NULL),
(444, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '102', NULL),
(445, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '102', NULL),
(446, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '102', 'Public key'),
(447, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '103', NULL),
(448, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '103', NULL),
(449, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '103', NULL),
(450, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '103', 'Public key'),
(451, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '104', NULL),
(452, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '104', NULL),
(453, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '104', NULL),
(454, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '104', 'Public key'),
(455, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '105', NULL),
(456, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '105', NULL),
(457, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '105', NULL),
(458, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '105', 'Public key'),
(459, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '106', NULL),
(460, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '106', NULL),
(461, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '106', NULL),
(462, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '106', 'Public key'),
(463, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '107', NULL),
(464, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '107', NULL),
(465, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '107', NULL),
(466, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '107', 'Public key'),
(467, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '108', NULL),
(468, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '108', NULL),
(469, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '108', NULL),
(470, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '108', 'Public key'),
(471, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '109', NULL),
(472, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '109', NULL),
(473, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '109', NULL),
(474, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '109', 'Public key'),
(475, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '110', NULL),
(476, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '110', NULL),
(477, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '110', NULL),
(478, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '110', 'Public key'),
(479, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '111', NULL),
(480, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '111', NULL),
(481, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '111', NULL),
(482, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '111', 'Public key'),
(483, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '112', NULL),
(484, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '112', NULL),
(485, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '112', NULL),
(486, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '112', 'Public key'),
(487, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '113', NULL),
(488, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '113', NULL),
(489, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '113', NULL),
(490, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '113', 'Public key'),
(491, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '114', NULL),
(492, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '114', NULL),
(493, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '114', NULL),
(494, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '114', 'Public key'),
(495, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '115', NULL),
(496, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '115', NULL),
(497, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '115', NULL),
(498, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '115', 'Public key'),
(499, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '116', NULL),
(500, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '116', NULL),
(501, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '116', NULL),
(502, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '116', 'Public key'),
(503, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '117', NULL),
(504, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '117', NULL),
(505, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '117', NULL),
(506, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '117', 'Public key'),
(507, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '118', NULL),
(508, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '118', NULL),
(509, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '118', NULL),
(510, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '118', 'Public key'),
(511, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '119', NULL),
(512, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '119', NULL),
(513, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '119', NULL),
(514, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '119', 'Public key'),
(515, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '120', NULL),
(516, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '120', NULL),
(517, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '120', NULL),
(518, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '120', 'Public key'),
(519, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '121', NULL),
(520, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '121', NULL),
(521, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '121', NULL),
(522, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '121', 'Public key'),
(523, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '122', NULL),
(524, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '122', NULL),
(525, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '122', NULL),
(526, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '122', 'Public key'),
(527, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '123', NULL),
(528, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '123', NULL),
(529, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '123', NULL),
(530, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '123', 'Public key'),
(531, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '124', NULL),
(532, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '124', NULL),
(533, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '124', NULL),
(534, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '124', 'Public key'),
(535, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '125', NULL),
(536, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '125', NULL),
(537, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '125', NULL),
(538, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '125', 'Public key'),
(539, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '126', NULL),
(540, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '126', NULL),
(541, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '126', NULL),
(542, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '126', 'Public key'),
(543, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '127', NULL),
(544, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '127', NULL),
(545, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '127', NULL),
(546, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '127', 'Public key'),
(547, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '128', NULL),
(548, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '128', NULL),
(549, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '128', NULL),
(550, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '128', 'Public key'),
(551, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '129', NULL),
(552, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '129', NULL),
(553, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '129', NULL),
(554, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '129', 'Public key'),
(555, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '130', NULL),
(556, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '130', NULL),
(557, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '130', NULL),
(558, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '130', 'Public key'),
(559, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '131', NULL),
(560, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '131', NULL),
(561, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '131', NULL),
(562, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '131', 'Public key'),
(563, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '132', NULL),
(564, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '132', NULL),
(565, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '132', NULL),
(566, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '132', 'Public key'),
(567, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '133', NULL),
(568, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '133', NULL),
(569, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '133', NULL),
(570, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '133', 'Public key'),
(571, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '134', NULL),
(572, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '134', NULL),
(573, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '134', NULL),
(574, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '134', 'Public key'),
(575, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '135', NULL),
(576, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '135', NULL),
(577, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '135', NULL),
(578, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '135', 'Public key'),
(579, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '136', NULL),
(580, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '136', NULL),
(581, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '136', NULL),
(582, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '136', 'Public key'),
(583, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '137', NULL),
(584, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '137', NULL),
(585, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '137', NULL),
(586, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '137', 'Public key'),
(587, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '138', NULL),
(588, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '138', NULL),
(589, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '138', NULL),
(590, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '138', 'Public key'),
(591, 'PayPal', NULL, NULL, NULL, NULL, 'PayPal API Username', 'PayPal API Password', 'PayPal API Signature', 'test', NULL, NULL, '139', NULL),
(592, 'Pay U Money', 'Merchant key', 'Salt', NULL, NULL, NULL, NULL, NULL, 'test', NULL, NULL, '139', NULL),
(593, 'Stripe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Publish', 'Secret', '139', NULL),
(594, 'Paystack', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'test', NULL, 'secret', '139', 'Public key');

-- --------------------------------------------------------

--
-- Table structure for table `payment_category`
--

CREATE TABLE `payment_category` (
  `id` int(10) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `description` varchar(100) DEFAULT NULL,
  `c_price` varchar(100) DEFAULT NULL,
  `type` varchar(100) DEFAULT NULL,
  `d_commission` int(100) DEFAULT NULL,
  `h_commission` int(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `code` varchar(1000) DEFAULT NULL,
  `payment_category` varchar(1000) DEFAULT NULL,
  `payment_category_name` varchar(1000) DEFAULT NULL,
  `report` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `payment_category`
--

INSERT INTO `payment_category` (`id`, `category`, `description`, `c_price`, `type`, `d_commission`, `h_commission`, `hospital_id`, `code`, `payment_category`, `payment_category_name`, `report`) VALUES
(86, 'X-ray', 'dsfs', '500', 'diagnostic', 0, NULL, '98', 'K0001', NULL, NULL, NULL),
(83, 'Blood Test', 'Room 1207', '400', 'diagnostic', 0, NULL, '133', 'A90', '12', 'Pathology', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `payroll`
--

CREATE TABLE `payroll` (
  `id` int(100) NOT NULL,
  `staff` varchar(100) DEFAULT NULL,
  `month` varchar(100) DEFAULT NULL,
  `year` varchar(100) DEFAULT NULL,
  `paid_on` varchar(100) DEFAULT NULL,
  `expense` varchar(100) DEFAULT NULL,
  `earning` mediumtext DEFAULT NULL,
  `deduction` mediumtext DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `payroll`
--

INSERT INTO `payroll` (`id`, `staff`, `month`, `year`, `paid_on`, `expense`, `earning`, `deduction`, `status`, `hospital_id`) VALUES
(1, '882', 'September', '2021', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '1'),
(2, '881', 'September', '2021', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '1'),
(3, '883', 'September', '2021', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '1'),
(4, '880', 'September', '2021', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '1'),
(5, '879', 'September', '2021', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '1'),
(6, '878', 'September', '2021', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '1'),
(7, '998', 'April', '2022', NULL, NULL, 'Gross Salary_20000', NULL, 'Generated', '98'),
(8, '1011', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(9, '997', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(10, '1015', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(11, '999', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(12, '1013', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(13, '996', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(14, '1014', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(15, '995', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(16, '1012', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(17, '994', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(18, '1004', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(19, '1005', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(20, '1008', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(21, '1009', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(22, '1010', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(23, '998', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(24, '1011', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(25, '997', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(26, '1015', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(27, '999', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(28, '1013', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(29, '996', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(30, '1014', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(31, '995', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(32, '1012', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(33, '994', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(34, '1004', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(35, '1005', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(36, '1008', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(37, '1009', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(38, '1010', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(39, '1020', 'March', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(40, '1020', 'April', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(41, '998', 'July', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(42, '997', 'July', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(43, '999', 'July', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(44, '996', 'July', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(45, '1037', 'July', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(46, '994', 'July', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(47, '1039', 'July', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(48, '998', 'June', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(49, '997', 'June', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(50, '999', 'June', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(51, '996', 'June', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(52, '1037', 'June', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(53, '994', 'June', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(54, '1039', 'June', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(55, '1040', 'July', '2022', '19-07-2022', '500', 'Gross Salary_20000#Sales Commission_2000', '', 'Generated', '98'),
(56, '1043', 'July', '2022', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(57, '998', 'January', '2021', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(58, '997', 'January', '2021', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(59, '999', 'January', '2021', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(60, '996', 'January', '2021', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(61, '1040', 'January', '2021', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(62, '1037', 'January', '2021', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(63, '994', 'January', '2021', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(64, '998', 'April', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(65, '1062', 'April', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(66, '997', 'April', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(67, '1061', 'April', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(68, '999', 'April', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(69, '1063', 'April', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(70, '996', 'April', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(71, '1060', 'April', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(72, '1059', 'April', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(73, '1037', 'April', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(74, '994', 'April', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(75, '1067', 'August', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(76, '997', 'August', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(77, '999', 'August', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(78, '996', 'August', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(79, '1037', 'August', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(80, '994', 'August', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(81, '1067', 'January', '2024', '18-01-2024', '', 'Gross Salary_0', 'deduction_0', 'Paid', '98'),
(82, '997', 'January', '2024', '18-01-2024', '500', 'Gross Salary_1000#sdsad_100', 'fdgdfg_50', 'Paid', '98'),
(83, '999', 'January', '2024', '30-01-2024', '0', 'Gross Salary_0#sdsad_50', '', 'Paid', '98'),
(84, '996', 'January', '2024', '18-01-2024', '', 'Gross Salary_0', NULL, 'Generated', '98'),
(85, '1037', 'January', '2024', '28-01-2024', '100', 'Gross Salary_1000#sdsad_100', NULL, 'Paid', '98'),
(86, '994', 'January', '2024', '18-01-2024', '', 'Gross Salary_0', '', 'Paid', '98'),
(87, '1067', 'January', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(88, '997', 'January', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(89, '999', 'January', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(90, '996', 'January', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(91, '1037', 'January', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(92, '994', 'January', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(93, '1067', 'December', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(94, '997', 'December', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(95, '999', 'December', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(96, '996', 'December', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(97, '1037', 'December', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(98, '994', 'December', '2023', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(99, '1067', 'November', '2024', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(100, '997', 'November', '2024', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(101, '999', 'November', '2024', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(102, '996', 'November', '2024', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(103, '1037', 'November', '2024', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98'),
(104, '994', 'November', '2024', NULL, NULL, 'Gross Salary_0', NULL, 'Generated', '98');

-- --------------------------------------------------------

--
-- Table structure for table `pharmacist`
--

CREATE TABLE `pharmacist` (
  `id` int(100) NOT NULL,
  `img_url` varchar(100) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `address` varchar(100) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `y` varchar(100) DEFAULT NULL,
  `ion_user_id` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `profile` varchar(1000) DEFAULT NULL,
  `signature` varchar(1000) DEFAULT NULL,
  `available` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `pharmacist`
--

INSERT INTO `pharmacist` (`id`, `img_url`, `name`, `email`, `address`, `phone`, `x`, `y`, `ion_user_id`, `hospital_id`, `profile`, `signature`, `available`) VALUES
(3, 'uploads/userIcon2.png', 'Mr. Pharmacist', 'pharmacist@hms.com', 'Ka/5, Bashundhara R/A Gate', '123456789', NULL, NULL, '996', '98', '<p>bhjgjgj</p>', 'uploads/Screenshot_from_2022-03-23_16-27-062.png', '0');

-- --------------------------------------------------------

--
-- Table structure for table `pharmacy_expense`
--

CREATE TABLE `pharmacy_expense` (
  `id` int(10) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `amount` varchar(100) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `pharmacy_expense_category`
--

CREATE TABLE `pharmacy_expense_category` (
  `id` int(10) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `description` varchar(100) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `y` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `pharmacy_payment`
--

CREATE TABLE `pharmacy_payment` (
  `id` int(10) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `patient` varchar(100) DEFAULT NULL,
  `doctor` varchar(100) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `amount` varchar(100) DEFAULT NULL,
  `vat` varchar(100) NOT NULL DEFAULT '0',
  `x_ray` varchar(100) DEFAULT NULL,
  `flat_vat` varchar(100) DEFAULT NULL,
  `discount` varchar(100) NOT NULL DEFAULT '0',
  `flat_discount` varchar(100) DEFAULT NULL,
  `gross_total` varchar(100) DEFAULT NULL,
  `hospital_amount` varchar(100) DEFAULT NULL,
  `doctor_amount` varchar(100) DEFAULT NULL,
  `category_amount` varchar(1000) DEFAULT NULL,
  `category_name` varchar(1000) DEFAULT NULL,
  `amount_received` varchar(100) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `pharmacy_payment`
--

INSERT INTO `pharmacy_payment` (`id`, `category`, `patient`, `doctor`, `date`, `amount`, `vat`, `x_ray`, `flat_vat`, `discount`, `flat_discount`, `gross_total`, `hospital_amount`, `doctor_amount`, `category_amount`, `category_name`, `amount_received`, `status`, `hospital_id`) VALUES
(20, NULL, NULL, NULL, '1754820327', '12', '0', NULL, NULL, '0', '0', '12', NULL, NULL, NULL, '33*12*1*10', NULL, 'unpaid', '98'),
(21, NULL, 'Walk-in Customer', NULL, '1756820809', '12', '0', NULL, NULL, '0', '0', '12', NULL, NULL, NULL, '35*12*1*10', '100', 'unpaid', '98'),
(22, NULL, 'Walk-in Customer', NULL, '1756821413', '264', '0', NULL, NULL, '0', '0', '264', NULL, NULL, NULL, '35*12*10*10,33*12*12*10', '500', 'unpaid', '98'),
(23, NULL, 'Walk-in Customer', NULL, '1756959636', '120', '0', NULL, NULL, '20', '20', '100', NULL, NULL, NULL, '35*12*10*10', '100', 'unpaid', '98'),
(24, NULL, 'Walk-in Customer', NULL, '1756959780', '108', '0', NULL, NULL, '8', '8', '100', NULL, NULL, NULL, '35*12*9*10', '100', 'unpaid', '98'),
(25, NULL, 'Walk-in Customer', NULL, '1757147054', '12', '0', NULL, NULL, '10', '10', '2', NULL, NULL, NULL, '35*12*1*10', '20', 'unpaid', '98'),
(26, NULL, 'Walk-in Customer', NULL, '1757147247', '12', '0', NULL, NULL, '10', '10', '2', NULL, NULL, NULL, '35*12*1*10', '', 'unpaid', '98');

-- --------------------------------------------------------

--
-- Table structure for table `pharmacy_payment_category`
--

CREATE TABLE `pharmacy_payment_category` (
  `id` int(10) NOT NULL,
  `category` varchar(100) DEFAULT NULL,
  `description` varchar(100) DEFAULT NULL,
  `c_price` varchar(100) DEFAULT NULL,
  `d_commission` int(100) DEFAULT NULL,
  `h_commission` int(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `prescription`
--

CREATE TABLE `prescription` (
  `id` int(100) NOT NULL,
  `date` varchar(100) DEFAULT NULL,
  `patient` varchar(100) DEFAULT NULL,
  `doctor` varchar(100) DEFAULT NULL,
  `symptom` varchar(100) DEFAULT NULL,
  `advice` varchar(1000) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `dd` varchar(100) DEFAULT NULL,
  `medicine` varchar(1000) DEFAULT NULL,
  `validity` varchar(100) DEFAULT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `patientname` varchar(1000) DEFAULT NULL,
  `doctorname` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `pservice`
--

CREATE TABLE `pservice` (
  `id` int(100) NOT NULL,
  `name` varchar(1000) DEFAULT NULL,
  `code` varchar(1000) DEFAULT NULL,
  `alpha_code` varchar(1000) DEFAULT NULL,
  `price` varchar(1000) DEFAULT NULL,
  `active` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `purchase_orders`
--

CREATE TABLE `purchase_orders` (
  `id` int(11) NOT NULL,
  `po_number` varchar(50) NOT NULL,
  `supplier_id` int(11) NOT NULL,
  `order_date` date NOT NULL,
  `expected_delivery_date` date DEFAULT NULL,
  `delivery_date` date DEFAULT NULL,
  `status` enum('draft','sent','confirmed','partially_received','completed','cancelled') DEFAULT 'draft',
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `discount_amount` decimal(15,2) DEFAULT 0.00,
  `shipping_amount` decimal(15,2) DEFAULT 0.00,
  `grand_total` decimal(15,2) DEFAULT 0.00,
  `payment_terms` varchar(255) DEFAULT NULL,
  `delivery_address` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `approved_by` int(11) DEFAULT NULL,
  `approved_at` timestamp NULL DEFAULT NULL,
  `hospital_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `purchase_orders`
--

INSERT INTO `purchase_orders` (`id`, `po_number`, `supplier_id`, `order_date`, `expected_delivery_date`, `delivery_date`, `status`, `total_amount`, `tax_amount`, `discount_amount`, `shipping_amount`, `grand_total`, `payment_terms`, `delivery_address`, `notes`, `approved_by`, `approved_at`, `hospital_id`, `created_at`, `updated_at`, `created_by`, `updated_by`) VALUES
(8, 'PO20250001', 1, '2025-08-08', '2025-08-08', NULL, 'completed', 0.00, 0.00, 0.00, 0.00, 0.00, 'COD', '', 'sdfgfdg', NULL, NULL, 98, '2025-08-08 19:49:04', '2025-08-08 09:49:04', 992, NULL),
(9, 'PO20250002', 1, '2025-08-08', '2025-08-05', NULL, 'completed', 120.00, 0.00, 0.00, 0.00, 120.00, '', '', '', NULL, NULL, 98, '2025-08-08 22:10:57', '2025-08-08 12:10:57', 992, NULL),
(10, 'PO20250003', 1, '2025-08-08', '0000-00-00', NULL, 'completed', 1200.00, 0.00, 0.00, 0.00, 1200.00, 'COD', '', '', NULL, NULL, 98, '2025-08-08 22:25:04', '2025-08-08 12:25:04', 992, NULL),
(11, 'PO20250004', 3, '2025-08-27', '2025-08-29', NULL, 'completed', 240.00, 0.00, 0.00, 0.00, 240.00, 'Net 30', '', 'sdfsdfdsf', NULL, NULL, 98, '2025-08-27 17:43:17', '2025-08-27 07:43:17', 992, NULL),
(12, 'PO20250005', 2, '2025-09-04', '2025-09-04', NULL, 'completed', 1000.00, 0.00, 0.00, 0.00, 1000.00, 'Net 15', '', 'sdfdsf', NULL, NULL, 98, '2025-09-04 14:30:14', '2025-09-04 04:30:14', 992, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `purchase_order_items`
--

CREATE TABLE `purchase_order_items` (
  `id` int(11) NOT NULL,
  `purchase_order_id` int(11) NOT NULL,
  `inventory_item_id` int(11) NOT NULL,
  `quantity_ordered` int(11) NOT NULL,
  `quantity_received` int(11) DEFAULT 0,
  `unit_price` decimal(10,2) NOT NULL,
  `total_price` decimal(15,2) NOT NULL,
  `expiry_date` date DEFAULT NULL,
  `batch_number` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `received_at` timestamp NULL DEFAULT NULL,
  `received_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `purchase_order_items`
--

INSERT INTO `purchase_order_items` (`id`, `purchase_order_id`, `inventory_item_id`, `quantity_ordered`, `quantity_received`, `unit_price`, `total_price`, `expiry_date`, `batch_number`, `notes`, `received_at`, `received_by`) VALUES
(4, 8, 1, 1500, 1500, 10.00, 15000.00, NULL, NULL, NULL, '2025-08-08 19:49:04', 992),
(5, 9, 3, 10, 10, 12.00, 120.00, NULL, NULL, NULL, '2025-08-08 22:10:57', 992),
(6, 10, 2, 100, 100, 12.00, 1200.00, NULL, NULL, NULL, '2025-08-08 22:25:04', 992),
(7, 11, 3, 10, 10, 12.00, 120.00, NULL, NULL, NULL, '2025-08-27 17:43:17', 992),
(8, 11, 2, 10, 10, 12.00, 120.00, NULL, NULL, NULL, '2025-08-27 17:43:17', 992),
(9, 12, 4, 100, 100, 10.00, 1000.00, NULL, NULL, NULL, '2025-09-04 14:30:14', 992);

--
-- Triggers `purchase_order_items`
--
DELIMITER $$
CREATE TRIGGER `tr_update_stock_on_purchase` AFTER UPDATE ON `purchase_order_items` FOR EACH ROW BEGIN
    IF NEW.quantity_received > OLD.quantity_received THEN
        UPDATE inventory_items 
        SET current_stock = current_stock + (NEW.quantity_received - OLD.quantity_received),
            updated_at = CURRENT_TIMESTAMP
        WHERE id = NEW.inventory_item_id;
        
        INSERT INTO stock_transactions (
            inventory_item_id, transaction_type, reference_type, reference_id, 
            quantity, unit_cost, total_cost, previous_stock, new_stock, 
            expiry_date, batch_number, hospital_id, created_by
        ) VALUES (
            NEW.inventory_item_id, 'purchase', 'purchase_order', NEW.purchase_order_id,
            (NEW.quantity_received - OLD.quantity_received), NEW.unit_price, 
            (NEW.quantity_received - OLD.quantity_received) * NEW.unit_price,
            (SELECT current_stock - (NEW.quantity_received - OLD.quantity_received) FROM inventory_items WHERE id = NEW.inventory_item_id),
            (SELECT current_stock FROM inventory_items WHERE id = NEW.inventory_item_id),
            NEW.expiry_date, NEW.batch_number,
            (SELECT hospital_id FROM inventory_items WHERE id = NEW.inventory_item_id),
            NEW.received_by
        );
    END IF;
END
$$
DELIMITER ;

-- --------------------------------------------------------

--
-- Stand-in structure for view `purchase_order_summary`
-- (See below for the actual view)
--
CREATE TABLE `purchase_order_summary` (
`id` int(11)
,`po_number` varchar(50)
,`supplier_name` varchar(255)
,`order_date` date
,`expected_delivery_date` date
,`status` enum('draft','sent','confirmed','partially_received','completed','cancelled')
,`grand_total` decimal(15,2)
,`total_items` bigint(21)
,`total_quantity_ordered` decimal(32,0)
,`total_quantity_received` decimal(32,0)
,`hospital_id` int(11)
);

-- --------------------------------------------------------

--
-- Table structure for table `receptionist`
--

CREATE TABLE `receptionist` (
  `id` int(100) NOT NULL,
  `img_url` varchar(100) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `address` varchar(100) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `ion_user_id` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `signature` varchar(1000) DEFAULT NULL,
  `profile` varchar(1000) DEFAULT NULL,
  `available` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `receptionist`
--

INSERT INTO `receptionist` (`id`, `img_url`, `name`, `email`, `address`, `phone`, `x`, `ion_user_id`, `hospital_id`, `signature`, `profile`, `available`) VALUES
(3, 'uploads/userIcon4.png', 'Mr. Receptionist', 'receptionist@hms.com', 'Ka/5, Bashundhara R/A Gate', '112345678', NULL, '999', '98', 'uploads/Screenshot_from_2022-03-11_03-49-482.png', '<p>ghfghgfhfg</p>', '1');

-- --------------------------------------------------------

--
-- Table structure for table `report`
--

CREATE TABLE `report` (
  `id` int(100) NOT NULL,
  `report_type` varchar(100) DEFAULT NULL,
  `patient` varchar(100) DEFAULT NULL,
  `description` varchar(500) DEFAULT NULL,
  `doctor` varchar(100) DEFAULT NULL,
  `date` varchar(100) DEFAULT NULL,
  `add_date` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `request`
--

CREATE TABLE `request` (
  `id` int(100) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `address` varchar(500) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `other` varchar(100) DEFAULT NULL,
  `package` varchar(1000) DEFAULT NULL,
  `language` varchar(100) DEFAULT NULL,
  `remarks` varchar(500) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `review`
--

CREATE TABLE `review` (
  `id` int(10) NOT NULL,
  `name` varchar(100) NOT NULL,
  `designation` varchar(500) NOT NULL,
  `review` varchar(1000) NOT NULL,
  `img` varchar(1000) NOT NULL,
  `status` varchar(100) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `review`
--

INSERT INTO `review` (`id`, `name`, `designation`, `review`, `img`, `status`) VALUES
(1, 'Test Reviewer 1', 'Reviewer, XYZ', '“ Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero expedita cumque assumenda cum neque, atque nesciunt, molestiae architecto doloremque quis, placeat ipsam quidem provident in! Illum voluptas harum animi consequatur! ”', 'uploads/doctor-icon-avatar-white136162-581.jpg', 'Active'),
(3, 'Test Reviewer 2', 'Reviewer, ABC', '“ Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero expedita cumque assumenda cum neque, atque nesciunt, molestiae architecto doloremque quis, placeat ipsam quidem provident in! Illum voluptas harum animi consequatur! ”', 'uploads/doctor-icon-avatar-white136162-582.jpg', 'Active'),
(4, 'Test Reviewer 3', 'Reviewer, NMP', '“ Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero expedita cumque assumenda cum neque, atque nesciunt, molestiae architecto doloremque quis, placeat ipsam quidem provident in! Illum voluptas harum animi consequatur! ”', 'uploads/doctor-icon-avatar-white136162-583.jpg', 'Active'),
(5, 'Test Reviewer 4', 'Reviewer, TRP', '“ Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero expedita cumque assumenda cum neque, atque nesciunt, molestiae architecto doloremque quis, placeat ipsam quidem provident in! Illum voluptas harum animi consequatur! ”', 'uploads/doctor-icon-avatar-white136162-584.jpg', 'Active'),
(6, 'Test Reviewer 5', 'Reviewer, CVB', '“ Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero expedita cumque assumenda cum neque, atque nesciunt, molestiae architecto doloremque quis, placeat ipsam quidem provident in! Illum voluptas harum animi consequatur! ”', 'uploads/doctor-icon-avatar-white136162-585.jpg', 'Inactive');

-- --------------------------------------------------------

--
-- Table structure for table `salary`
--

CREATE TABLE `salary` (
  `id` int(100) NOT NULL,
  `staff` varchar(100) DEFAULT NULL,
  `salary` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `service`
--

CREATE TABLE `service` (
  `id` int(100) NOT NULL,
  `img_url` varchar(1000) DEFAULT NULL,
  `title` varchar(100) DEFAULT NULL,
  `description` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `service`
--

INSERT INTO `service` (`id`, `img_url`, `title`, `description`) VALUES
(1, 'uploads/handsome-smiling-medical-professional-examining-with-stethoscope-colored-background_1.png', 'Alex ', 'Maximize clinic efficiency with our customizable hospital management SaaS. Streamline operations, enhance care, and propel growth.'),
(2, 'uploads/Video_Consult.png', 'Steve', 'Elevate your hospital services with our comprehensive automation tools. Tailored for clinics big and small.'),
(3, 'uploads/Plan_Surgeries.png', 'Max', 'Immediate assistance and extensive resources at your fingertips, ensuring your clinic'),
(9, 'uploads/Video_Consult1.png', 'David', 'Maximize clinic efficiency with our customizable hospital management SaaS. Streamline operations, enhance care, and propel growth.');

-- --------------------------------------------------------

--
-- Table structure for table `settings`
--

CREATE TABLE `settings` (
  `id` int(10) NOT NULL,
  `system_vendor` varchar(100) DEFAULT NULL,
  `title` varchar(100) DEFAULT NULL,
  `address` varchar(100) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `facebook_id` varchar(100) DEFAULT NULL,
  `currency` varchar(100) DEFAULT NULL,
  `language` varchar(100) DEFAULT NULL,
  `discount` varchar(100) DEFAULT NULL,
  `time_format` varchar(100) DEFAULT NULL,
  `live_appointment_type` varchar(100) DEFAULT NULL,
  `vat` varchar(100) DEFAULT NULL,
  `login_title` varchar(100) DEFAULT NULL,
  `logo` varchar(500) DEFAULT NULL,
  `invoice_logo` varchar(500) DEFAULT NULL,
  `payment_gateway` varchar(100) DEFAULT NULL,
  `sms_gateway` varchar(100) DEFAULT NULL,
  `codec_username` varchar(100) DEFAULT NULL,
  `codec_purchase_code` varchar(100) DEFAULT NULL,
  `token` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `emailtype` varchar(1000) DEFAULT NULL,
  `remainder_appointment` varchar(1000) DEFAULT NULL,
  `footer_message` varchar(1000) DEFAULT NULL,
  `show_odontogram_in_history` varchar(1000) DEFAULT NULL,
  `invoice_choose` varchar(1000) DEFAULT NULL,
  `discount_percent` varchar(100) DEFAULT NULL,
  `footer_invoice_message` varchar(1000) DEFAULT NULL,
  `logo_title` varchar(1000) DEFAULT NULL,
  `chatgpt_api_key` varchar(1000) DEFAULT NULL,
  `show_tawkto_in_website` varchar(100) DEFAULT NULL,
  `feature_button` varchar(255) DEFAULT NULL,
  `hero_title` varchar(255) DEFAULT NULL,
  `hero_subtitle` varchar(500) DEFAULT NULL,
  `hero_image1` varchar(255) DEFAULT NULL,
  `hero_image2` varchar(255) DEFAULT NULL,
  `hero_image3` varchar(255) DEFAULT NULL,
  `s_title1` varchar(100) DEFAULT NULL,
  `s_title2` varchar(100) DEFAULT NULL,
  `s_title3` varchar(200) DEFAULT NULL,
  `s_value1` varchar(200) DEFAULT NULL,
  `s_value2` varchar(200) DEFAULT NULL,
  `s_value3` varchar(200) DEFAULT NULL,
  `timezone` varchar(500) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `settings`
--

INSERT INTO `settings` (`id`, `system_vendor`, `title`, `address`, `phone`, `email`, `facebook_id`, `currency`, `language`, `discount`, `time_format`, `live_appointment_type`, `vat`, `login_title`, `logo`, `invoice_logo`, `payment_gateway`, `sms_gateway`, `codec_username`, `codec_purchase_code`, `token`, `hospital_id`, `emailtype`, `remainder_appointment`, `footer_message`, `show_odontogram_in_history`, `invoice_choose`, `discount_percent`, `footer_invoice_message`, `logo_title`, `chatgpt_api_key`, `show_tawkto_in_website`, `feature_button`, `hero_title`, `hero_subtitle`, `hero_image1`, `hero_image2`, `hero_image3`, `s_title1`, `s_title2`, `s_title3`, `s_value1`, `s_value2`, `s_value3`, `timezone`) VALUES
(11, 'Hospital Saas', 'Hospital', 'Collegepara, Rajbari', '+880123456789', 'superadmin@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, 'uploads/Code-Aristos-logo2.png', NULL, 'Stripe', 'Twilio', NULL, NULL, 'n2cJMp7r6kMjYcllDD4hqaFlryf0JFHl', 'superadmin', 'Domain Email', '', 'By Code Aristos', NULL, 'invoice1', NULL, NULL, 'uploads/504093.png', NULL, 'no', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(134, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'Binodpur, Rajbari', '01749335505', 'tanvir.mahmud.opu@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '119', 'Smtp', NULL, 'ByTanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(62, 'Code Aristos - Hospital management System', 'Demo Hospital', 'Ka/5 Jagannathpur,Bashundhara', '+88017777024443', 'admin@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, 'Stripe', 'Twilio', '', '', NULL, '1', 'Smtp', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(63, 'Code Aristos - Hospital management System', 'Demo Hospital2', 'House-11,Road-13,Nikunja-2', '+8801819636104', 'admin2@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '2', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(64, 'Code Aristos - Hospital management System', 'Demo Hospital3', 'PLOT NO-120,BLOCK-D,BASHUNDHARA R/A', '01999949761', 'admin3@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '3', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(65, 'Code Aristos - Hospital management System', 'Hospital', 'Ka/5, Bashundhara R/A Gate', '+8801777024443', 'admin@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', '', '', NULL, '4', 'Smtp', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(66, 'Code Aristos - Hospital management System', 'testing Hospital', 'House-11,Road-13,NIkunja-2', '+8801819636109', 'testing@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '5', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(67, 'Code Aristos - Hospital management System', 'testing1', 'House-11,Road-13,NIkunja-2', '+8801819636108', 'testing1@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '6', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(68, 'Code Aristos - Hospital management System', 'asdasdas', 'asdsadasd', '32423423423', 'asd@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '7', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(69, 'Code Aristos - Hospital management System', 'asdasdas', 'asdasdas', '35345645', 'tytty@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '8', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(70, 'Code Aristos - Hospital management System', 'Testing Hospital', 'House-11,Road-13,NIkunja-2', '+8801819636104', 'sahashaibal22@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '9', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(71, 'Code Aristos - Hospital management System', 'adasda', 'sdasdasd', '32424234', 'adasdad@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '10', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(72, 'Code Aristos - Hospital management System', 'weqweqwe', 'qwewqeweq', '12345', 'qwesadsad@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '11', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(73, 'Code Aristos - Hospital management System', 'asdsdasdas', 'asdsadas', '24234234', 'asdsd@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '12', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(74, 'Code Aristos - Hospital management System', 'Rizvi Mahmud', 'Road:24, Block: F', '+8801777024443', 'rizvi.mahmud.plabon@gmail.comibbu', NULL, '$', 'arabic', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '13', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(75, 'Code Aristos - Hospital management System', 'Rizvi Mahmud', 'Road:24, Block: F', '+8801777024443', 'rizvi.mahmud.plabon@gmail.comgbfgbfgbgf', NULL, '$', 'arabic', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '14', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(76, 'Code Aristos - Hospital management System', 'sdadas', 'dsadasd', '34324324', 'asdas@dfsdfsasdscom', NULL, '$', 'arabic', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '15', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(77, 'Code Aristos - Hospital management System', 'asdsadsa', 'asdsadsad', '33423423', '', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, NULL, 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(78, 'Code Aristos - Hospital management System', 'dfsfsdfs', 'dfsfsdfs', '32323232', 'qwedf11@gmail.com', NULL, '$', 'arabic', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '64', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(79, 'Code Aristos - Hospital management System', 'dfsdfdsfsdf', 'sfsfdsfdsf', '342343423423', 'fsdfdsfsdfdsf@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '65', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(80, 'Code Aristos - Hospital management System', 'jhjhkjhk', 'jhhkhk', '7005179958', 'sahashaibal22@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, NULL, 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(81, 'Code Aristos - Hospital management System', 'asdas asdasd', 'asdasdasdasdsa', '7005179958', 'sahashaibal22@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, NULL, 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(82, 'Code Aristos - Hospital management System', 'adsasad', 'asdsadsad', '4354354543', 'sadsads@hms.com', NULL, '$', 'arabic', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '69', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(83, 'Code Aristos - Hospital management System', 'dgdfgfd fgfgdfgdf', 'dfgdfgdfgfdg', '324234234', 'fdfdfcvbcv@gmail.com', NULL, '$', 'arabic', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '70', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(84, 'Code Aristos - Hospital management System', 'asdasdasd saassa', 'assaassaas', '2323423234', 'sxcx@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '71', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(85, 'Code Aristos - Hospital management System', 'qweerty', 'sfsfsdfs', '1232342342', 'vccccc@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '72', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(86, 'Code Aristos - Hospital management System', 'sdfsdfsd', 'sdfdsfsd', '34234234', 'sdfdsf@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '73', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(87, 'Code Aristos - Hospital management System', 'asjhdasd asdasd', 'asdasd asdsad', '344234324', 'asdsac@gmail.com', NULL, '$', 'arabic', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '74', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(88, 'Code Aristos - Hospital management System', 'ncmzczx zxczxc', 'zxcxzcxz', '343453453', 'qwert444@hms.com', NULL, '$', 'arabic', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '75', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(89, 'Code Aristos - Hospital management System', 'fdsfdsfds', 'sdfdsfdsfds', '34543554534', 'wqewewe@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '76', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(90, 'Code Aristos - Hospital management System', 'asdsaddas', 'asdsadasd', '34342423', 'sadds343@gmail.com', NULL, '$', 'arabic', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '77', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(91, 'Code Aristos - Hospital management System', 'asdasdsa', 'sdsadasdas', '344234234', 'qwewqewq@gmail.com', NULL, '$', 'arabic', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '78', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(92, 'Code Aristos - Hospital management System', 'fgdgdfgdfg', 'dfgdfgdfg', '35546464', 'rizvi.mahmud.plabon@gmail.com', NULL, '$', 'arabic', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '79', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(93, 'Code Aristos - Hospital management System', 'gdgdgdfg', 'fgdfgdfgfdfdgdfgdf', '56456456456', 'customer@hms.com1', NULL, '$', 'arabic', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '82', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(94, 'Code Aristos - Hospital management System', 'asdasd asdasd', 'asdasdas', '32213123123', 'qwsder@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, NULL, 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(95, 'Code Aristos - Hospital management System', 'asdasd asdasd', 'asdasd ad', '34534534', 'asdxczc@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, NULL, 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(96, 'Code Aristos - Hospital management System', 'dsfsdfdsfs sdfdsf', 'dfsdf sdfdsf', '7005179958', 'sahashaibal22@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, NULL, 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(97, 'Code Aristos - Hospital management System', 'asdasdasd', 'asdasdas', '32423432', 'asda22sd@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, NULL, 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(98, 'Code Aristos - Hospital management System', 'sddsadasd', 'asdasdas', '32423432', 'asdasddsa@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '83', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(99, 'Code Aristos - Hospital management System', 'asdsadas', 'sadsadsad', '12312312213', 'sadasd1231s@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '84', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(100, 'Code Aristos - Hospital management System', 'adasdsadas', 'asdsadsa', '432432423', 'sdasdsa@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '85', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(101, 'Code Aristos - Hospital management System', 'asdasda', 'asdsadsad', '345345343', 'asdasdasxzx@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '86', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(102, 'Code Aristos - Hospital management System', 'asdasdasd', 'asdasdasdadas', '2342343243242', 'asdasdasdsas@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '87', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(103, 'Code Aristos - Hospital management System', 'Rizvi Mahmud', 'Road:24, Block: F', '23432423', 'rizvi.mahmud.plabon@gmail.comsscdcsd', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '88', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(104, 'Code Aristos - Hospital management System', 'asdasdasd', 'asdasdasd', '32423423423', 'asdsadsad21321@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '89', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(105, 'Code Aristos - Hospital management System', 'adasdas', 'asdasdsadasd', '32432432432', 'asdsadsazccz@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '90', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(106, 'Code Aristos - Hospital management System', 'Rizvi Mahmud', 'Road:24, Block: F', '424242', 'rizvi.mahmud.plabon@gmail.comdcsdsdfsd', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '91', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(107, 'Code Aristos - Hospital management System', 'asdasdsad', 'asdsadsadas', '323423432432', 'asdsadasxzczx23@gmail.coom', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '92', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(108, 'Code Aristos - Hospital management System', 'asdasdasd', 'asdasdasd', '3423423423', 'asdasdasd212312@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '93', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(109, 'Code Aristos - Hospital management System', 'asdasd asdsad', 'sadasdsa sadsad', '345435435', 'sdadzcxc@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '94', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(110, 'Code Aristos - Hospital management System', 'adasdasdas', 'adasdasdasdsa', '435345435', 'ascxvvc2232@gmail.coom', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '95', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(111, 'Code Aristos - Hospital management System', 'fhfhfh', 'bvvnvn', '675675798', 'gfhfhfh6665@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '96', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(112, 'Code Aristos - Hospital management System', 'adadsad', 'dfdsfsdf', '34324324234', 'asdasddcv34343@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '97', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(113, 'Hospital management System', 'Hospital', 'Ka/5, Bashundhara R/A Gate', '+8801777024443', 'admin@hms.com', NULL, '$', 'english', 'flat', '12', NULL, '10', NULL, 'uploads/501455.png', NULL, 'Paystack', 'Twilio', NULL, NULL, NULL, '98', 'Smtp', '', 'By Code Aristos', 'yes', 'invoice1', '10', 'Report Delivery Service is Open from 9.00 am. to 9.00 pm.(2nd floor).Unclaimed Report will be held for 3 months Only.', 'uploads/50409310.png', 'sdgdfgfdgdgfdg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Asia/Dhaka'),
(114, 'Code Aristos - Hospital management System', 'aasdsa', 'asdadasd', '45535435', 'asdsadas@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '99', 'Smtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(115, 'Code Aristos - Hospital management System', 'tester', 'India', '123456', 'tester@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '100', 'Smtp', NULL, 'Bytester', 'yes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(116, 'Code Aristos - Hospital management System', 'Demo 2 Hospital', 'Ka/5, Bashundhara R/A Gate', '+880123456789', 'demo@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '101', 'Smtp', NULL, 'ByDemo 2 Hospital', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(117, 'Code Aristos - Hospital management System', 'Demo 3 Package', 'Ka/5, Bashundhara R/A Gate', '+880123456789', 'demo3@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '102', 'Smtp', NULL, 'ByDemo 3 Package', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(118, 'Code Aristos - Hospital management System', 'Rajbari Clinic', 'Ka/5, Bashundhara R/A Gate', '+880123456789', 'rajbariclinic@gmail.com', NULL, '$', 'portuguese', 'flat', NULL, NULL, '0', NULL, NULL, NULL, 'PayPal', 'Twilio', NULL, NULL, NULL, '103', 'Smtp', NULL, 'ByRajbari Clinic', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(119, 'Code Aristos - Hospital management System', 'Apollo Hospital', 'Ka/5, Bashundhara R/A Gate', '+8801777024443', 'rizvi@codearistos.net', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '104', 'Smtp', NULL, 'ByApollo Hospital', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(120, 'Code Aristos - Hospital management System', 'New Hospital', 'Ka, 3/I, Bashundhara Main Road', '01777024443', 'rizvi.mahmud.plabon@gmail.com1', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '105', 'Smtp', NULL, 'ByNew Hospital', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(121, 'Code Aristos - Hospital management System', 'Rizvi Hospital', 'Ka, 3/I, Bashundhara Main Road', '01777024443', 'rizvi@codearistos.net', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '106', 'Smtp', NULL, 'By Rizvi Hospital', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(122, 'Code Aristos - Hospital management System', 'Rizvi Mahmud', 'Ka, 3/I, Bashundhara Main Road', '01777024443', 'RizviMahmud@example.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '107', 'Smtp', NULL, 'By Rizvi Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(123, 'Code Aristos - Hospital management System', 'fsgdfgdf', 'Ka, 3/I, Bashundhara Main Road', '01777024443', 'rizvi.mahmud.plabon@gmail.comgdfgdfg', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '108', 'Smtp', NULL, 'By fsgdfgdf', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(127, 'Code Aristos - Hospital management System', 'Rizvi Mahmud Plabon', 'Ka, 3/I, Bashundhara Main Road', '01777024443', 'admin@example.commmm', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '112', 'Smtp', NULL, 'ByRizvi Mahmud Plabon', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(124, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'dfgdfgdfgopu', '01749335505', 'tanvir@gmail.comsdfsdfdsf', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '109', 'Smtp', NULL, 'By Tanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(125, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'dfgdfgdfgopu', '01749335505', 'tanvir@gmail.comsdfsf', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '110', 'Smtp', NULL, 'By Tanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(126, 'Code Aristos - Hospital management System', 'United Hospital', 'Bashundhara', '0174933550500', 'united@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '111', 'Smtp', NULL, 'By United Hospital', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(128, 'Code Aristos - Hospital management System', 'New Hospital', 'Ka, 3/I, Bashundhara Main Road, Baridhara', '01777024443', 'newhospital@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '113', 'Smtp', NULL, 'By New Hospital', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(129, 'Code Aristos - Hospital management System', 'Demo Hospital', 'Bashundhara', '01749335505', 'demo@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '114', 'Smtp', NULL, 'By Demo Hospital', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(130, 'Code Aristos - Hospital management System', 'Demo Hospital', 'Binodpur, Rajbarii', '01716278932', 'demo@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '115', 'Smtp', NULL, 'By Demo Hospital', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(131, 'Code Aristos - Hospital management System', 'Rajbari Clinic', 'Ka/5 Jagannathpur', '01777024443', 'rizvi@codearistos.net', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '116', 'Smtp', NULL, 'ByRajbari Clinic', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(132, 'Code Aristos - Hospital management System', 'Rizvi Mahmud Plabon', 'Ka, 3/I, Bashundhara Main Road, Baridhara', '01777024443', 'rizvi.mahmud.plabon@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '117', 'Smtp', NULL, 'ByRizvi Mahmud Plabon', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(133, 'Code Aristos - Hospital management System', 'caSoft', 'Ka, 3/I, Bashundhara Main Road, Baridhara', '01777024443', 'rizvi.mahmud.plabon@gmail.comaaaaa', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '118', 'Smtp', NULL, 'BycaSoft', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(135, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'Binodpur, Rajbari', '01749335505', 'tanvir.mahmud.opu@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '120', 'Smtp', NULL, 'ByTanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(136, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'Binodpur, Rajbari', '01749335505', 'tanvir.mahmud.opu@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '121', 'Smtp', NULL, 'ByTanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(137, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'Binodpur, Rajbari', '01749335505', 'tanvir.mahmud.opu@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '122', 'Smtp', NULL, 'ByTanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(138, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'Binodpur, Rajbari', '01749335505', 'tanvir.mahmud.opu@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '123', 'Smtp', NULL, 'ByTanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(139, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'Binodpur, Rajbari', '01749335505', 'tanvir.mahmud.opu@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '124', 'Smtp', NULL, 'ByTanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(140, 'Code Aristos - Hospital management System', 'Demo Doctor', 'Binodpur, Rajbari', '01749335505', 'mdopu297@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '125', 'Smtp', NULL, 'ByDemo Doctor', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(141, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'Binodpur, Rajbari', '01749335505', 'tanvir.mahmud.opu@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '126', 'Smtp', NULL, 'ByTanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(142, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'Binodpur, Rajbari', '01749335505', 'tanvir.mahmud.opu@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '127', 'Smtp', NULL, 'ByTanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(143, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'Binodpur, Rajbari', '01749335505', 'tanvir.mahmud.opu@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '128', 'Smtp', NULL, 'ByTanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(144, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'Binodpur, Rajbari', '01749335505', 'tanvir.mahmud.opu@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '129', 'Smtp', NULL, 'ByTanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(145, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'Binodpur, Rajbari', '01749335505', 'tanvir.mahmud.opu@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '130', 'Smtp', NULL, 'ByTanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(146, 'Code Aristos - Hospital management System', 'Tanvir Mahmud', 'Binodpur, Rajbari', '01749335505', 'tanvir.mahmud.opu@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '131', 'Smtp', NULL, 'ByTanvir Mahmud', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(147, 'Code Aristos - Hospital management System', 'Demo Hospital', 'Ka/5, Bashundhara R/A Gate', '01777024443', 'demo@hms.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '132', 'Smtp', NULL, 'By Demo Hospital', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(148, 'Code Aristos - Hospital management System', 'Rajbari Clinic', 'House: 2738, 18th N', '01777024443', 'rajbariclinic@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '133', 'Smtp', NULL, 'By Rajbari Clinic', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(149, 'Code Aristos - Hospital management System', 'Supreme Clinics', '42 Onitsha Crescent, off Gimbiya Street, Area 11,Garki', '08172371198', 'philipihesiulo@gmail.com', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '134', 'Smtp', NULL, 'BySupreme Clinics', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(150, 'Code Aristos - Hospital management System', 'fvpvkkpmxv', 'redirect-2098a20dcad1964ecbd22963695e5363@webmark.eting.org', '+1 213 425 1453', 'redirect-2098a20dcad1964ecbd22963695e5363@webmark.eting.org', NULL, '$', 'italian', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '135', 'Smtp', NULL, 'Byfvpvkkpmxv', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(151, 'Code Aristos - Hospital management System', 'Md Opu', 'Bashundhara, Dhaka', '01749335508', 'info@codearistos.netsdfsdf', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '136', 'Smtp', NULL, 'ByMd Opu', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(152, 'Code Aristos - Hospital management System', 'Md Opu', 'Bashundhara, Dhaka', '01749335508', 'info@codearistos.netiiiii', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '137', 'Smtp', NULL, 'ByMd Opu', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(153, 'Code Aristos - Hospital management System', 'Md Opu', 'Bashundhara, Dhaka', '01749335508', 'info@codearistos.netlkllkl', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '138', 'Smtp', NULL, 'ByMd Opu', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(154, 'Code Aristos - Hospital management System', 'Md Opu', 'Bashundhara, Dhaka', '01749335508', 'info@codearistos.netsdfdsf', NULL, '$', 'english', 'flat', NULL, NULL, '0', NULL, NULL, NULL, NULL, 'Twilio', NULL, NULL, NULL, '139', 'Smtp', NULL, 'ByMd Opu', 'yes', 'invoice1', '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `site_featured`
--

CREATE TABLE `site_featured` (
  `id` int(100) NOT NULL,
  `img_url` varchar(1000) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `profile` varchar(100) DEFAULT NULL,
  `description` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `site_featured`
--

INSERT INTO `site_featured` (`id`, `img_url`, `name`, `profile`, `description`, `hospital_id`) VALUES
(3, 'uploads/63cf6786064293398b6c3cc75.jpg', 'Dr RahmatUllah Asif', 'Cardiac Specialized', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>', '98'),
(2, 'uploads/63cf67653670fe67118a3c7c3.jpg', 'Dr Momenuzzaman', 'Cardiac Specialized', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>', '98'),
(4, 'uploads/63cf66af0b6557c1902b8fdd2.jpg', 'Dr A.R.M. Jamil', 'General Physician', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>', '98'),
(6, 'uploads/63cf67653670fe67118a3c7c31.jpg', 'Dr. Elora Williams', 'Cardiac Specialized', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>', '98');

-- --------------------------------------------------------

--
-- Table structure for table `site_gallery`
--

CREATE TABLE `site_gallery` (
  `id` int(10) NOT NULL,
  `img` varchar(500) NOT NULL,
  `position` varchar(100) NOT NULL,
  `status` varchar(100) NOT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `site_gallery`
--

INSERT INTO `site_gallery` (`id`, `img`, `position`, `status`, `hospital_id`) VALUES
(1, 'uploads/gallery-img-11.png', '1', 'Active', '98'),
(2, 'uploads/gallery-img-21.png', '2', 'Active', '98'),
(3, 'uploads/gallery-img-31.png', '3', 'Active', '98'),
(4, 'uploads/gallery-img-41.png', '4', 'Active', '98'),
(5, 'uploads/gallery-img-51.png', '5', 'Active', '98'),
(6, 'uploads/gallery-img-61.png', '6', 'Active', '98');

-- --------------------------------------------------------

--
-- Table structure for table `site_grid`
--

CREATE TABLE `site_grid` (
  `id` int(10) NOT NULL,
  `category` varchar(100) NOT NULL,
  `title` varchar(500) NOT NULL,
  `description` varchar(1000) NOT NULL,
  `img` varchar(1000) NOT NULL,
  `position` varchar(100) NOT NULL,
  `status` varchar(100) NOT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `site_grid`
--

INSERT INTO `site_grid` (`id`, `category`, `title`, `description`, `img`, `position`, `status`, `hospital_id`) VALUES
(3, 'FEATURED', 'Professional surgeons', 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Eum tenetur, aut veritatis maxime ducimus modi delectus vero expedita illo ratione, eveniet laboriosam cupiditate reiciendis, repellat minima. Optio consectetur inventore ipsa!', 'uploads/frature-img-11.png', '1', 'Active', '98'),
(4, 'FEATURED', 'Good Care', 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Eum tenetur, aut veritatis maxime ducimus modi delectus vero expedita illo ratione, eveniet laboriosam cupiditate reiciendis, repellat minima. Optio consectetur inventore ipsa!', 'uploads/frature-img-21.png', '2', 'Active', '98');

-- --------------------------------------------------------

--
-- Table structure for table `site_map`
--

CREATE TABLE `site_map` (
  `id` int(100) NOT NULL,
  `name` varchar(1000) DEFAULT NULL,
  `url` varchar(1000) DEFAULT NULL,
  `for_login` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `site_map`
--

INSERT INTO `site_map` (`id`, `name`, `url`, `for_login`) VALUES
(1, 'Patient', 'patient', 'admin'),
(2, 'Appointment', 'appointment', 'admin'),
(3, 'Doctor', 'doctor', 'admin'),
(4, 'Doctor Visit', 'doctor/doctorvisit', 'admin'),
(5, 'Add New Doctor', 'doctor/addNewView', 'admin'),
(6, 'Department', 'department', 'admin'),
(7, 'Nurse', 'nurse', 'admin'),
(8, 'Add New Nurse', 'nurse/addNewView', 'admin'),
(9, 'Add New Pharmacist', 'pharmacist/addNewView', 'admin'),
(10, 'Pharmacist', 'pharmacist', 'admin'),
(11, 'Add New Laboratorist', 'laboratorist/addNewView', 'admin'),
(12, 'Laboratorist', 'laboratorist', 'admin'),
(13, 'Add New Accountant', 'accountant/addNewView', 'admin'),
(14, 'Accountant', 'accountant', 'admin'),
(15, 'Add New Receptionist', 'receptionist/addNewView', 'admin'),
(16, 'Receptionist', 'receptionist', 'admin'),
(17, 'Payment List', 'finance/payment', 'admin'),
(18, 'Add New Payment', 'finance/addPaymentView', 'admin'),
(19, 'Payment Procedures List', 'finance/paymentCategory', 'admin'),
(20, 'Add Payment Procedure', 'finance/addPaymentCategoryView', 'admin'),
(21, 'Expense List', 'finance/expense', 'admin'),
(22, 'Add New Expense', 'finance/addExpenseView', 'admin'),
(23, 'Expense categories List', 'finance/expenseCategory', 'admin'),
(24, 'Add New Expense categories List', 'finance/addExpenseCategoryView', 'admin'),
(25, 'Prescription List', 'prescription/all', 'admin'),
(26, 'Add New Prescription', 'prescription/addPrescriptionView', 'admin'),
(27, 'Lab Report List', 'lab', 'admin'),
(28, 'Add New Lab Report', 'lab/addLabView', 'admin'),
(29, 'Add New Lab Template', 'lab/template', 'admin'),
(30, 'Doctor Treatment History', 'appointment/treatmentReport', 'admin'),
(31, 'Doctor Schedule List', 'schedule', 'admin'),
(32, 'Doctor Holiday List', 'schedule/allHolidays', 'admin'),
(33, 'Add New Appointment', 'appointment/addNewView', 'admin'),
(34, 'Todays Appointment', 'appointment/todays', 'admin'),
(35, 'Upcoming Appointment', 'appointment/upcoming', 'admin'),
(36, 'Calendar', 'appointment/calendar', 'admin'),
(37, 'Medicine List', 'medicine', 'admin'),
(38, 'Add New Medicine', 'medicine/addMedicineView', 'admin'),
(39, 'Medicine Category List', 'medicine/medicineCategory', 'admin'),
(40, 'Add New Medicine Category', 'medicine/addCategoryView', 'admin'),
(41, 'Medicine Stock Alert List', 'medicine/medicineStockAlert', 'admin'),
(42, 'Pharmacy Dashboard', 'finance/pharmacy/home', 'admin'),
(43, 'Dashboard', 'home', 'admin'),
(44, 'Pharmacy Sales List', 'finance/pharmacy/payment', 'admin'),
(45, 'Add New Pharmacy Sale', 'finance/pharmacy/addPaymentView', 'admin'),
(46, 'Pharmacy Expenses List', 'finance/pharmacy/expense', 'admin'),
(47, 'Add New Pharmacy Expense', 'finance/pharmacy/addExpenseView', 'admin'),
(48, 'Pharmacy Expense Categories List', 'finance/pharmacy/expenseCategory', 'admin'),
(49, 'Add New Pharmacy Expense Category', 'finance/pharmacy/addExpenseCategoryView', 'admin'),
(50, 'Pharmacy Financial report', 'finance/pharmacy/financialReport', 'admin'),
(51, 'Pharmacy Monthly Sales', 'finance/pharmacy/monthly', 'admin'),
(52, 'Pharmacy Daily Sales', 'finance/pharmacy/daily', 'admin'),
(53, 'Pharmacy Monthly Expense', 'finance/pharmacy/monthlyExpense', 'admin'),
(54, 'Pharmacy Daily Expense', 'finance/pharmacy/dailyExpense', 'admin'),
(55, 'Donor List', 'donor', 'admin'),
(56, 'Add New Donor', 'donor/addDonorView', 'admin'),
(57, 'Blood Bank List ', 'donor/bloodBank', 'admin'),
(58, 'Bed List', 'bed', 'admin'),
(59, 'Add New Bed', 'bed/addBedView', 'admin'),
(60, 'Bed Category List', 'bed/bedCategory', 'admin'),
(61, 'Alloted Bed List', 'bed/bedAllotment', 'admin'),
(62, 'Add New Bed Allotment', 'bed/addAllotmentView', 'admin'),
(63, 'Financial Report', 'finance/financialReport', 'admin'),
(64, 'User Activity Report', 'finance/allUserActivityReport', 'admin'),
(65, 'Doctor Commission', 'finance/doctorsCommission', 'admin'),
(66, 'Monthly Financial report', 'finance/monthly', 'admin'),
(67, 'Daily Financial report', 'finance/daily', 'admin'),
(68, 'Monthly Financial Expense', 'finance/monthlyExpense', 'admin'),
(69, 'Daily Financial Expense', 'finance/dailyExpense', 'admin'),
(70, 'Expense Vs Income Report', 'finance/expenseVsIncome', 'admin'),
(71, 'Birth Report', 'report/birth', 'admin'),
(72, 'Operation Report', 'report/operation', 'admin'),
(73, 'Expire Report', 'report/expire', 'admin'),
(74, 'Notice List', 'notice', 'admin'),
(75, 'Add New Notice', 'notice/addNewView', 'admin'),
(76, 'Auto Email Template List', 'email/autoEmailTemplate', 'admin'),
(77, 'Send Email', 'email/sendView', 'admin'),
(78, 'Email Settings', 'email/emailSettings', 'admin'),
(79, 'Auto SMS Template List', 'sms/autoSMSTemplate', 'admin'),
(80, 'Send SMS', 'sms/sendView', 'admin'),
(81, 'SMS Settings', 'sms', 'admin'),
(82, 'Settings', 'settings', 'admin'),
(83, 'Payment Gateway Settings', 'pgateway', 'admin'),
(84, 'Language Settings', 'settings/language', 'admin'),
(85, 'Bulk Import', 'import', 'admin'),
(86, 'Language Settings\r\n', 'settings/language', 'superadmin'),
(87, 'Payment Gateway Settings', 'pgateway', 'superadmin'),
(88, 'Profile', 'profile', 'superadmin'),
(89, 'Profile', 'profile', 'admin'),
(90, 'Case Manager', 'patient/caseList', 'admin'),
(91, 'Patient Payment List', 'patient/patientPayments', 'admin'),
(92, 'Document List', 'patient/documents', 'admin'),
(93, 'Visit Website', 'frontend', 'admin'),
(94, 'Website Settings', 'frontend/settings', 'superadmin'),
(95, 'Contact Email', 'email/contactEmailSettings', 'superadmin'),
(96, 'Send Email', 'email/superadminSendView', 'superadmin'),
(97, 'Visit Website', 'frontend', 'superadmin'),
(98, 'Slide List', 'slide', 'admin'),
(99, 'Service List', 'service', 'admin'),
(100, 'Settings', 'settings', 'superadmin'),
(101, 'Add Payment', 'finance/addPaymentView', 'admin'),
(102, 'Add Expense', 'finance/addExpenseView', 'admin'),
(103, 'Add Medicine', 'medicine/addMedicineView', 'admin'),
(104, 'Add Medicine Category', 'medicine/addCategoryView', 'admin'),
(105, 'Add Notice', 'notice/addNewView', 'admin'),
(106, 'Add Bed Allotment', 'bed/addAllotmentView', 'admin'),
(107, 'Add Bed', 'bed/addBedView', 'admin'),
(108, 'Add Donor', 'donor/addDonorView', 'admin'),
(109, 'Add Pharmacy Expense Category', 'finance/pharmacy/addExpenseCategoryView', 'admin'),
(110, 'Add Pharmacy Expense', 'finance/pharmacy/addExpenseView', 'admin'),
(111, 'Add Pharmacy Sale', 'finance/pharmacy/addPaymentView', 'admin'),
(112, 'Add Appointment', 'appointment/addNewView', 'admin'),
(113, 'Add Lab Template', 'lab/addTemplateView', 'admin'),
(114, 'Add Lab Report', 'lab', 'admin'),
(115, 'Add Prescription', 'prescription/addPrescriptionView', 'admin'),
(116, 'Add Receptionist', 'receptionist/addNewView', 'admin'),
(117, 'Add Accountant', 'accountant/addNewView', 'admin'),
(118, 'Add Laboratorist', 'laboratorist/addNewView', 'admin'),
(119, 'Add Pharmacist', 'pharmacist/addNewView', 'admin'),
(120, 'Add Nurse', 'nurse/addNewView', 'admin'),
(121, 'Add Doctor', 'doctor/addNewView', 'admin'),
(122, 'Patient Service List', 'pservice', 'admin'),
(123, 'Add Patient Service', 'pservice/addNew', 'admin'),
(124, 'Add New Patient Service', 'pservice/addNew', 'admin'),
(125, 'Superadmin List', 'superadmin', 'superadmin'),
(126, 'All Hospital', 'hospital', 'superadmin'),
(127, 'Add New Hospital', 'hospital/addNewView', 'superadmin'),
(128, 'Add Hospital', 'hospital/addNewView', 'superadmin'),
(129, 'Package List', 'hospital/package', 'superadmin'),
(130, 'Add New Package', 'package/addNewView', 'superadmin'),
(131, 'Add New Package', 'package/addNewView', 'superadmin'),
(132, 'Website Request', 'request', 'superadmin'),
(133, 'Active Hospital List', 'systems/activeHospitals', 'superadmin'),
(134, 'Inactive Hospital List', 'systems/inactiveHospitals', 'superadmin'),
(135, 'Lisence Expired Hospital List', 'systems/expiredHospitals', 'superadmin'),
(136, 'Registered Patient List', 'systems/registeredPatient', 'superadmin'),
(137, 'Registered Doctor List', 'systems/registeredDoctor', 'superadmin'),
(138, 'Subscription Report', 'hospital/reportSubscription', 'superadmin'),
(139, 'Email Settings', 'email/emailSettings', 'superadmin');

-- --------------------------------------------------------

--
-- Table structure for table `site_review`
--

CREATE TABLE `site_review` (
  `id` int(10) NOT NULL,
  `name` varchar(100) NOT NULL,
  `designation` varchar(500) NOT NULL,
  `review` varchar(1000) NOT NULL,
  `img` varchar(1000) NOT NULL,
  `status` varchar(100) NOT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `site_review`
--

INSERT INTO `site_review` (`id`, `name`, `designation`, `review`, `img`, `status`, `hospital_id`) VALUES
(2, 'Michael Smith', 'Business Analyst', 'Diagnosy always help to provide proper care treatment for most of get the proper cure and health life which is the more an over that reason what should be care a lot about your health more perfect', 'uploads/63c269e3dd3beb84504e5081Client-p-500.png', 'Active', '98'),
(3, 'Roberto Carlos', 'Civil Engineer', 'Diagnosy always help to provide proper care treatment for most of get the proper cure and health life which is the more an over that reason what should be care a lot about your health more perfect', 'uploads/63c269e3dd3beb84504e5081Client-p-5001.png', 'Active', '98');

-- --------------------------------------------------------

--
-- Table structure for table `site_service`
--

CREATE TABLE `site_service` (
  `id` int(100) NOT NULL,
  `img_url` varchar(1000) DEFAULT NULL,
  `title` varchar(100) DEFAULT NULL,
  `description` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `site_service`
--

INSERT INTO `site_service` (`id`, `img_url`, `title`, `description`, `hospital_id`) VALUES
(2, 'uploads/63b536bfe06df82ddafdc76bOncology.png', 'Oncology', 'Oncology always try to provide the get the proper cure are and proper treatment for patient', '98'),
(3, 'uploads/63b514edd3a5520923d686a6Cardiology.png', 'Caridiology', 'Caridiology always try to provide the get the proper cure are and proper treatment for patient', '98'),
(4, 'uploads/63b50f8e8991fa2805d9b032Neurology.png', 'Neurology', 'Neurology always try to provide the get the proper cure are and proper treatment for patient', '98'),
(5, 'uploads/63b5126964a9588b232db451Gynecology.png', 'Gynecology', 'Gynecology always try to provide the get the proper cure are and proper treatment for patient', '98');

-- --------------------------------------------------------

--
-- Table structure for table `site_settings`
--

CREATE TABLE `site_settings` (
  `id` int(100) NOT NULL,
  `title` varchar(100) DEFAULT NULL,
  `description` varchar(1000) NOT NULL,
  `logo` varchar(1000) DEFAULT NULL,
  `address` varchar(500) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `emergency` varchar(100) DEFAULT NULL,
  `support` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `currency` varchar(100) DEFAULT NULL,
  `block_1_text_under_title` varchar(500) DEFAULT NULL,
  `service_block__text_under_title` varchar(500) DEFAULT NULL,
  `doctor_block__text_under_title` varchar(500) DEFAULT NULL,
  `facebook_id` varchar(100) DEFAULT NULL,
  `twitter_id` varchar(100) DEFAULT NULL,
  `google_id` varchar(100) DEFAULT NULL,
  `youtube_id` varchar(100) DEFAULT NULL,
  `skype_id` varchar(100) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `twitter_username` varchar(1000) DEFAULT NULL,
  `appointment_title` varchar(1000) NOT NULL,
  `appointment_subtitle` varchar(1000) NOT NULL,
  `appointment_description` varchar(1000) NOT NULL,
  `appointment_img_url` varchar(500) NOT NULL,
  `url_hospital` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL,
  `language` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `site_settings`
--

INSERT INTO `site_settings` (`id`, `title`, `description`, `logo`, `address`, `phone`, `emergency`, `support`, `email`, `currency`, `block_1_text_under_title`, `service_block__text_under_title`, `doctor_block__text_under_title`, `facebook_id`, `twitter_id`, `google_id`, `youtube_id`, `skype_id`, `x`, `twitter_username`, `appointment_title`, `appointment_subtitle`, `appointment_description`, `appointment_img_url`, `url_hospital`, `hospital_id`, `language`) VALUES
(2, 'Evercare Hospital', 'Copyright © 2024 Code Aristos', 'uploads/Code-Aristos-logo5.png', 'Bashundhara, Dhaka', '8801777024443', '106780', '10678', 'admin@example.com', 'BDT ', 'We work with forward thinking clients to create beautiful, honest and amazing things that bring positive results.', 'Our Medical Departments', 'Meet our high quality expert Doctors', '#v', '#', '#', '#', '#', NULL, '#', 'Why you should choose us?', 'WELCOME TO HOSPITAL MANAGEMENT', 'Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quisquam nulla quibusdam nam autem, in quasi quae cumque, laborum optio nobis reprehenderit doloremque delectus voluptate. Maxime aliquam vitae adipisci sit numquam?', 'uploads/why-choose-us-doc1.png', NULL, '98', 'english'),
(3, 'Rajbari Clinic1', 'Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence', NULL, 'Boropool, Rajbari Sadar, Rajbari', '0123456789', '10678', '10678', 'admin@example.com', '$', '', '', '', '', '', '', '', '', NULL, '', 'Book An Appointment', 'On your preferred time', 'On your preferred time', '', NULL, '103', NULL),
(4, 'ufghgfhfgh', 'Description', 'uploads/pasta.jpg', 'Binodpur, Rajbari', '01749335505', '353535', '34534535', 'united@hms.com', 'USD', 'dfgfgdgf', 'dfgdgdg', 'dgdgddg', '', '', '', '', '', NULL, '', 'dfdsfsdf', 'sdfsdf', 'sdfsdf', 'uploads/food1.jpeg', NULL, '111', 'arabic'),
(5, 'fvdfdgf', 'Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence Cardiac Excellence', 'uploads/image.png', 'gdgdgdf', '34534534', '54645', '6464645', 'nurse@hms.comdggdgdgd', '$', 'Block 1 Text Under Title', 'Service Block Text Under Title', 'Doctor Block Text Under Title', '#', '#', '#', '#', '', NULL, '#', 'Book An Appointment', 'On your preferred time', 'On your preferred time', '', NULL, '113', 'english');

-- --------------------------------------------------------

--
-- Table structure for table `site_slide`
--

CREATE TABLE `site_slide` (
  `id` int(11) NOT NULL,
  `title` varchar(100) DEFAULT NULL,
  `img_url` varchar(1000) DEFAULT NULL,
  `text1` varchar(500) DEFAULT NULL,
  `text2` varchar(500) DEFAULT NULL,
  `text3` varchar(500) DEFAULT NULL,
  `position` varchar(100) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `site_slide`
--

INSERT INTO `site_slide` (`id`, `title`, `img_url`, `text1`, `text2`, `text3`, `position`, `status`, `hospital_id`) VALUES
(12, 'Exceptional Healthcare For Your Family', 'uploads/pngaaa_com-118093.png', 'Experience world-class medical care with our team of dedicated healthcare professionals. We combine cutting-edge technology with compassionate service to ensure your well-being.', 'Hospital Management System', 'Hospital', '1', 'Active', '98'),
(20, 'Best Hospital Management System', 'uploads/2930366071135162514223557530237077533436902N.jpeg', 'Best Hospital Management System', 'Best Hospital Management System', 'Best Hospital Management System', '1', 'Active', '111');

-- --------------------------------------------------------

--
-- Table structure for table `slide`
--

CREATE TABLE `slide` (
  `id` int(11) NOT NULL,
  `title` varchar(100) DEFAULT NULL,
  `img_url` varchar(1000) DEFAULT NULL,
  `text1` varchar(500) DEFAULT NULL,
  `text2` varchar(500) DEFAULT NULL,
  `text3` varchar(500) DEFAULT NULL,
  `position` varchar(100) DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `slide`
--

INSERT INTO `slide` (`id`, `title`, `img_url`, `text1`, `text2`, `text3`, `position`, `status`) VALUES
(2, 'Optimize Your Practice with Hospital SaaS Suite', 'uploads/home_illus.png', 'Hospital Saas Software', 'Excellent features and modules', '#register', '1', 'https://codecanyon.net/item/multi-hms-hospital-management-system-saas-app/13972431');

-- --------------------------------------------------------

--
-- Table structure for table `sms`
--

CREATE TABLE `sms` (
  `id` int(100) NOT NULL,
  `date` varchar(100) DEFAULT NULL,
  `message` varchar(1600) DEFAULT NULL,
  `recipient` varchar(100) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `sms_settings`
--

CREATE TABLE `sms_settings` (
  `id` int(100) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `username` varchar(100) DEFAULT NULL,
  `password` varchar(100) DEFAULT NULL,
  `api_id` varchar(100) DEFAULT NULL,
  `sender` varchar(100) DEFAULT NULL,
  `authkey` varchar(100) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `sid` varchar(1000) DEFAULT NULL,
  `token` varchar(1000) DEFAULT NULL,
  `sendernumber` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `email` varchar(1000) DEFAULT NULL,
  `sender_name` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `sms_settings`
--

INSERT INTO `sms_settings` (`id`, `name`, `username`, `password`, `api_id`, `sender`, `authkey`, `user`, `sid`, `token`, `sendernumber`, `hospital_id`, `email`, `sender_name`) VALUES
(292, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '74', 'Your 80Kobo Username', 'Sender Name'),
(291, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '74', NULL, NULL),
(290, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '74', NULL, NULL),
(289, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '74', NULL, NULL),
(288, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '73', 'Your 80Kobo Username', 'Sender Name'),
(287, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '73', NULL, NULL),
(286, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '73', NULL, NULL),
(285, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '73', NULL, NULL),
(284, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '72', 'Your 80Kobo Username', 'Sender Name'),
(283, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '72', NULL, NULL),
(282, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '72', NULL, NULL),
(281, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '72', NULL, NULL),
(280, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '71', 'Your 80Kobo Username', 'Sender Name'),
(279, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '71', NULL, NULL),
(278, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '71', NULL, NULL),
(277, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '71', NULL, NULL),
(276, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '70', 'Your 80Kobo Username', 'Sender Name'),
(275, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '70', NULL, NULL),
(274, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '70', NULL, NULL),
(273, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '70', NULL, NULL),
(272, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '69', 'Your 80Kobo Username', 'Sender Name'),
(271, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '69', NULL, NULL),
(270, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '69', NULL, NULL),
(269, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '69', NULL, NULL),
(268, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Your 80Kobo Username', 'Sender Name'),
(267, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', NULL, NULL, NULL),
(266, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(265, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, NULL, NULL, NULL),
(264, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Your 80Kobo Username', 'Sender Name'),
(263, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', NULL, NULL, NULL),
(262, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(261, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, NULL, NULL, NULL),
(260, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '65', 'Your 80Kobo Username', 'Sender Name'),
(259, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '65', NULL, NULL),
(258, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '65', NULL, NULL),
(257, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '65', NULL, NULL),
(256, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '64', 'Your 80Kobo Username', 'Sender Name'),
(255, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '64', NULL, NULL),
(254, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '64', NULL, NULL),
(253, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '64', NULL, NULL),
(252, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Your 80Kobo Username', 'Sender Name'),
(251, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', NULL, NULL, NULL),
(250, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(249, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, NULL, NULL, NULL),
(248, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '15', 'Your 80Kobo Username', 'Sender Name'),
(247, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '15', NULL, NULL),
(246, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '15', NULL, NULL),
(245, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '15', NULL, NULL),
(244, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '14', 'Your 80Kobo Username', 'Sender Name'),
(243, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '14', NULL, NULL),
(242, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '14', NULL, NULL),
(241, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '14', NULL, NULL),
(240, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '13', 'Your 80Kobo Username', 'Sender Name'),
(239, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '13', NULL, NULL),
(238, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '13', NULL, NULL),
(237, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '13', NULL, NULL),
(236, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '12', 'Your 80Kobo Username', 'Sender Name'),
(235, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '12', NULL, NULL),
(234, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '12', NULL, NULL),
(233, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '12', NULL, NULL),
(232, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '11', 'Your 80Kobo Username', 'Sender Name'),
(231, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '11', NULL, NULL),
(230, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '11', NULL, NULL),
(229, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '11', NULL, NULL),
(228, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '10', 'Your 80Kobo Username', 'Sender Name'),
(227, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '10', NULL, NULL),
(226, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '10', NULL, NULL),
(225, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '10', NULL, NULL),
(224, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '9', 'Your 80Kobo Username', 'Sender Name'),
(223, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '9', NULL, NULL),
(222, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '9', NULL, NULL),
(221, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '9', NULL, NULL),
(220, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '8', 'Your 80Kobo Username', 'Sender Name'),
(219, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '8', NULL, NULL),
(218, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '8', NULL, NULL),
(217, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '8', NULL, NULL),
(216, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '7', 'Your 80Kobo Username', 'Sender Name'),
(215, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '7', NULL, NULL),
(214, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '7', NULL, NULL),
(213, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '7', NULL, NULL),
(212, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '6', 'Your 80Kobo Username', 'Sender Name'),
(211, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '6', NULL, NULL),
(210, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '6', NULL, NULL),
(209, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '6', NULL, NULL),
(208, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '5', 'Your 80Kobo Username', 'Sender Name'),
(207, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '5', NULL, NULL),
(206, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '5', NULL, NULL),
(205, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '5', NULL, NULL),
(203, 'Twilio', NULL, NULL, NULL, NULL, NULL, '890', 'ACdb430e4c1833a284ed1597b0f194578c', '0c4289465f2912f3fb793c03cf50d08a', '+16204728653', '4', NULL, NULL),
(204, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '4', 'Your 80Kobo Username', 'Sender Name'),
(202, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '4', NULL, NULL),
(201, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '4', NULL, NULL),
(200, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '3', 'Your 80Kobo Username', 'Sender Name'),
(199, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '3', NULL, NULL),
(198, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '3', NULL, NULL),
(197, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '3', NULL, NULL),
(196, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '2', 'Your 80Kobo Username', 'Sender Name'),
(195, 'Twilio', NULL, NULL, NULL, NULL, NULL, '885', 'AC1bd5d8cea886fd768ff0d259a95299a5', 'b476aa6dcbda82bd1f0cdd23671894d0', '+16572206232', '2', NULL, NULL),
(194, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '2', NULL, NULL),
(193, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '2', NULL, NULL),
(191, 'Twilio', NULL, NULL, NULL, NULL, NULL, '876', 'AC52082b550a2098c868a07304ad092442', 'aec1ede6dd5a54eb73e0a19cf29d0434', '+14422498504', '1', NULL, NULL),
(192, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '1', 'Your 80Kobo Username', 'Sender Name'),
(190, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '1', NULL, NULL),
(189, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '1', NULL, NULL),
(293, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '75', NULL, NULL),
(294, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '75', NULL, NULL),
(295, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '75', NULL, NULL),
(296, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '75', 'Your 80Kobo Username', 'Sender Name'),
(297, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '76', NULL, NULL),
(298, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '76', NULL, NULL),
(299, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '76', NULL, NULL),
(300, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '76', 'Your 80Kobo Username', 'Sender Name'),
(301, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '77', NULL, NULL),
(302, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '77', NULL, NULL),
(303, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '77', NULL, NULL),
(304, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '77', 'Your 80Kobo Username', 'Sender Name'),
(305, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '78', NULL, NULL),
(306, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '78', NULL, NULL),
(307, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '78', NULL, NULL),
(308, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '78', 'Your 80Kobo Username', 'Sender Name'),
(309, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '79', NULL, NULL),
(310, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '79', NULL, NULL),
(311, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '79', NULL, NULL),
(312, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '79', 'Your 80Kobo Username', 'Sender Name'),
(313, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '82', NULL, NULL),
(314, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '82', NULL, NULL),
(315, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '82', NULL, NULL),
(316, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '82', 'Your 80Kobo Username', 'Sender Name'),
(317, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, NULL, NULL, NULL),
(318, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(319, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', NULL, NULL, NULL),
(320, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Your 80Kobo Username', 'Sender Name'),
(321, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, NULL, NULL, NULL),
(322, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(323, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', NULL, NULL, NULL),
(324, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Your 80Kobo Username', 'Sender Name'),
(325, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, NULL, NULL, NULL),
(326, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(327, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', NULL, NULL, NULL),
(328, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Your 80Kobo Username', 'Sender Name'),
(329, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, NULL, NULL, NULL),
(330, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(331, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', NULL, NULL, NULL),
(332, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Your 80Kobo Username', 'Sender Name'),
(333, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '83', NULL, NULL),
(334, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '83', NULL, NULL),
(335, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '83', NULL, NULL),
(336, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '83', 'Your 80Kobo Username', 'Sender Name'),
(337, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '84', NULL, NULL),
(338, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '84', NULL, NULL),
(339, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '84', NULL, NULL),
(340, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '84', 'Your 80Kobo Username', 'Sender Name'),
(341, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '85', NULL, NULL),
(342, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '85', NULL, NULL),
(343, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '85', NULL, NULL),
(344, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '85', 'Your 80Kobo Username', 'Sender Name'),
(345, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '86', NULL, NULL),
(346, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '86', NULL, NULL),
(347, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '86', NULL, NULL),
(348, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '86', 'Your 80Kobo Username', 'Sender Name'),
(349, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '87', NULL, NULL),
(350, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '87', NULL, NULL),
(351, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '87', NULL, NULL),
(352, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '87', 'Your 80Kobo Username', 'Sender Name'),
(353, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '88', NULL, NULL),
(354, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '88', NULL, NULL),
(355, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '88', NULL, NULL),
(356, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '88', 'Your 80Kobo Username', 'Sender Name'),
(357, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '89', NULL, NULL),
(358, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '89', NULL, NULL),
(359, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '89', NULL, NULL),
(360, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '89', 'Your 80Kobo Username', 'Sender Name'),
(361, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '90', NULL, NULL),
(362, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '90', NULL, NULL),
(363, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '90', NULL, NULL),
(364, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '90', 'Your 80Kobo Username', 'Sender Name'),
(365, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '91', NULL, NULL),
(366, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '91', NULL, NULL),
(367, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '91', NULL, NULL),
(368, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '91', 'Your 80Kobo Username', 'Sender Name'),
(369, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '92', NULL, NULL),
(370, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '92', NULL, NULL),
(371, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '92', NULL, NULL),
(372, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '92', 'Your 80Kobo Username', 'Sender Name'),
(373, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '93', NULL, NULL),
(374, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '93', NULL, NULL),
(375, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '93', NULL, NULL),
(376, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '93', 'Your 80Kobo Username', 'Sender Name'),
(377, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '94', NULL, NULL),
(378, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '94', NULL, NULL),
(379, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '94', NULL, NULL),
(380, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '94', 'Your 80Kobo Username', 'Sender Name'),
(381, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '95', NULL, NULL),
(382, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '95', NULL, NULL),
(383, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '95', NULL, NULL),
(384, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '95', 'Your 80Kobo Username', 'Sender Name'),
(385, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '96', NULL, NULL),
(386, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '96', NULL, NULL),
(387, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '96', NULL, NULL),
(388, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '96', 'Your 80Kobo Username', 'Sender Name'),
(389, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '97', NULL, NULL),
(390, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '97', NULL, NULL),
(391, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '97', NULL, NULL),
(392, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '97', 'Your 80Kobo Username', 'Sender Name'),
(393, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '98', NULL, NULL),
(394, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '98', NULL, NULL),
(395, 'Twilio', NULL, NULL, NULL, NULL, NULL, '992', 'Twilio SID', 'Twilio Token Password', 'Sender Number', '98', NULL, NULL),
(396, '80Kobo', NULL, '12345', NULL, NULL, NULL, '992', NULL, NULL, NULL, '98', 'Your 80Kobo Username', 'Sender Name'),
(397, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '99', NULL, NULL),
(398, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '99', NULL, NULL),
(399, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '99', NULL, NULL),
(400, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '99', 'Your 80Kobo Username', 'Sender Name'),
(401, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '100', NULL, NULL),
(402, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '100', NULL, NULL),
(403, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '100', NULL, NULL),
(404, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '100', 'Your 80Kobo Username', 'Sender Name'),
(405, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '101', NULL, NULL),
(406, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '101', NULL, NULL),
(407, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '101', NULL, NULL),
(408, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '101', 'Your 80Kobo Username', 'Sender Name'),
(409, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '102', NULL, NULL),
(410, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '102', NULL, NULL),
(411, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '102', NULL, NULL),
(412, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '102', 'Your 80Kobo Username', 'Sender Name'),
(413, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '103', NULL, NULL),
(414, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '103', NULL, NULL),
(415, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '103', NULL, NULL),
(416, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '103', 'Your 80Kobo Username', 'Sender Name'),
(421, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '105', NULL, NULL),
(417, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '104', NULL, NULL),
(418, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '104', NULL, NULL),
(419, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '104', NULL, NULL),
(420, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '104', 'Your 80Kobo Username', 'Sender Name'),
(422, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '105', NULL, NULL),
(423, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '105', NULL, NULL),
(424, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '105', 'Your 80Kobo Username', 'Sender Name'),
(425, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '106', NULL, NULL),
(426, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '106', NULL, NULL),
(427, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '106', NULL, NULL),
(428, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '106', 'Your 80Kobo Username', 'Sender Name'),
(429, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '107', NULL, NULL),
(430, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '107', NULL, NULL),
(431, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '107', NULL, NULL),
(432, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '107', 'Your 80Kobo Username', 'Sender Name'),
(433, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '108', NULL, NULL),
(434, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '108', NULL, NULL),
(435, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '108', NULL, NULL),
(436, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '108', 'Your 80Kobo Username', 'Sender Name'),
(437, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '109', NULL, NULL),
(438, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '109', NULL, NULL),
(439, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '109', NULL, NULL),
(440, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '109', 'Your 80Kobo Username', 'Sender Name'),
(441, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '110', NULL, NULL),
(442, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '110', NULL, NULL),
(443, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '110', NULL, NULL),
(444, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '110', 'Your 80Kobo Username', 'Sender Name'),
(445, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '111', NULL, NULL),
(446, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '111', NULL, NULL),
(447, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '111', NULL, NULL),
(448, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '111', 'Your 80Kobo Username', 'Sender Name'),
(449, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '112', NULL, NULL),
(450, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '112', NULL, NULL),
(451, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '112', NULL, NULL),
(452, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '112', 'Your 80Kobo Username', 'Sender Name'),
(453, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '113', NULL, NULL),
(454, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '113', NULL, NULL),
(455, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '113', NULL, NULL),
(456, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '113', 'Your 80Kobo Username', 'Sender Name'),
(457, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '114', NULL, NULL),
(458, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '114', NULL, NULL),
(459, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '114', NULL, NULL),
(460, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '114', 'Your 80Kobo Username', 'Sender Name'),
(461, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '115', NULL, NULL),
(462, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '115', NULL, NULL),
(463, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '115', NULL, NULL),
(464, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '115', 'Your 80Kobo Username', 'Sender Name'),
(465, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '116', NULL, NULL),
(466, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '116', NULL, NULL),
(467, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '116', NULL, NULL),
(468, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '116', 'Your 80Kobo Username', 'Sender Name'),
(469, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '117', NULL, NULL),
(470, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '117', NULL, NULL),
(471, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '117', NULL, NULL),
(472, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '117', 'Your 80Kobo Username', 'Sender Name'),
(473, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '118', NULL, NULL),
(474, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '118', NULL, NULL),
(475, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '118', NULL, NULL),
(476, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '118', 'Your 80Kobo Username', 'Sender Name'),
(477, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '119', NULL, NULL),
(478, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '119', NULL, NULL),
(479, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '119', NULL, NULL),
(480, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '119', 'Your 80Kobo Username', 'Sender Name'),
(481, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '120', NULL, NULL),
(482, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '120', NULL, NULL),
(483, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '120', NULL, NULL),
(484, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '120', 'Your 80Kobo Username', 'Sender Name'),
(485, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '121', NULL, NULL),
(486, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '121', NULL, NULL),
(487, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '121', NULL, NULL),
(488, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '121', 'Your 80Kobo Username', 'Sender Name'),
(489, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '122', NULL, NULL),
(490, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '122', NULL, NULL),
(491, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '122', NULL, NULL),
(492, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '122', 'Your 80Kobo Username', 'Sender Name'),
(493, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '123', NULL, NULL),
(494, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '123', NULL, NULL),
(495, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '123', NULL, NULL),
(496, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '123', 'Your 80Kobo Username', 'Sender Name'),
(497, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '124', NULL, NULL),
(498, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '124', NULL, NULL),
(499, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '124', NULL, NULL),
(500, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '124', 'Your 80Kobo Username', 'Sender Name'),
(501, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '125', NULL, NULL),
(502, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '125', NULL, NULL),
(503, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '125', NULL, NULL),
(504, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '125', 'Your 80Kobo Username', 'Sender Name'),
(505, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '126', NULL, NULL),
(506, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '126', NULL, NULL),
(507, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '126', NULL, NULL),
(508, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '126', 'Your 80Kobo Username', 'Sender Name'),
(509, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '127', NULL, NULL),
(510, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '127', NULL, NULL),
(511, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '127', NULL, NULL),
(512, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '127', 'Your 80Kobo Username', 'Sender Name'),
(513, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '128', NULL, NULL),
(514, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '128', NULL, NULL),
(515, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '128', NULL, NULL),
(516, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '128', 'Your 80Kobo Username', 'Sender Name'),
(517, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '129', NULL, NULL),
(518, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '129', NULL, NULL),
(519, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '129', NULL, NULL),
(520, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '129', 'Your 80Kobo Username', 'Sender Name'),
(521, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '130', NULL, NULL),
(522, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '130', NULL, NULL),
(523, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '130', NULL, NULL),
(524, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '130', 'Your 80Kobo Username', 'Sender Name'),
(525, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '131', NULL, NULL),
(526, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '131', NULL, NULL),
(527, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '131', NULL, NULL),
(528, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '131', 'Your 80Kobo Username', 'Sender Name'),
(529, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '132', NULL, NULL),
(530, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '132', NULL, NULL),
(531, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '132', NULL, NULL),
(532, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '132', 'Your 80Kobo Username', 'Sender Name'),
(533, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, '1', NULL, NULL, NULL, '133', NULL, NULL),
(534, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', '1', NULL, NULL, NULL, '133', NULL, NULL),
(535, 'Twilio', NULL, NULL, NULL, NULL, NULL, '1', 'SID Number', 'Token Number', 'Sender Number', '133', NULL, NULL),
(536, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, '1', NULL, NULL, NULL, '133', 'Your 80Kobo Username', 'Sender Name'),
(537, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '134', NULL, NULL),
(538, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '134', NULL, NULL),
(539, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '134', NULL, NULL),
(540, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '134', 'Your 80Kobo Username', 'Sender Name'),
(541, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '135', NULL, NULL),
(542, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '135', NULL, NULL),
(543, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '135', NULL, NULL),
(544, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '135', 'Your 80Kobo Username', 'Sender Name'),
(545, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '136', NULL, NULL),
(546, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '136', NULL, NULL),
(547, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '136', NULL, NULL),
(548, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '136', 'Your 80Kobo Username', 'Sender Name'),
(549, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '137', NULL, NULL);
INSERT INTO `sms_settings` (`id`, `name`, `username`, `password`, `api_id`, `sender`, `authkey`, `user`, `sid`, `token`, `sendernumber`, `hospital_id`, `email`, `sender_name`) VALUES
(550, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '137', NULL, NULL),
(551, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '137', NULL, NULL),
(552, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '137', 'Your 80Kobo Username', 'Sender Name'),
(553, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '138', NULL, NULL),
(554, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '138', NULL, NULL),
(555, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '138', NULL, NULL),
(556, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '138', 'Your 80Kobo Username', 'Sender Name'),
(557, 'Clickatell', 'Your ClickAtell Username', 'Your ClickAtell Password', 'Your ClickAtell Api Id', NULL, NULL, 'self', NULL, NULL, NULL, '139', NULL, NULL),
(558, 'MSG91', 'Your MSG91 Username', NULL, 'Your MSG91 API ID', 'Sender Number', 'Your MSG91 Auth Key', NULL, NULL, NULL, NULL, '139', NULL, NULL),
(559, 'Twilio', NULL, NULL, NULL, NULL, NULL, NULL, 'SID Number', 'Token Number', 'Sender Number', '139', NULL, NULL),
(560, '80Kobo', NULL, 'Your 80Kobo Password', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '139', 'Your 80Kobo Username', 'Sender Name');

-- --------------------------------------------------------

--
-- Table structure for table `stock_transactions`
--

CREATE TABLE `stock_transactions` (
  `id` int(11) NOT NULL,
  `inventory_item_id` int(11) NOT NULL,
  `transaction_type` enum('purchase','usage','adjustment','transfer','return','damaged','expired') NOT NULL,
  `reference_type` enum('purchase_order','usage_log','manual_adjustment','transfer','return','damage_report') DEFAULT NULL,
  `reference_id` int(11) DEFAULT NULL,
  `quantity` int(11) NOT NULL,
  `unit_cost` decimal(10,2) DEFAULT 0.00,
  `total_cost` decimal(15,2) DEFAULT 0.00,
  `previous_stock` int(11) NOT NULL,
  `new_stock` int(11) NOT NULL,
  `expiry_date` date DEFAULT NULL,
  `batch_number` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `transaction_date` timestamp NOT NULL DEFAULT current_timestamp(),
  `hospital_id` int(11) NOT NULL,
  `created_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `stock_transactions`
--

INSERT INTO `stock_transactions` (`id`, `inventory_item_id`, `transaction_type`, `reference_type`, `reference_id`, `quantity`, `unit_cost`, `total_cost`, `previous_stock`, `new_stock`, `expiry_date`, `batch_number`, `notes`, `transaction_date`, `hospital_id`, `created_by`) VALUES
(1, 1, 'adjustment', '', NULL, 1000, 10.00, 10000.00, 0, 1000, NULL, NULL, 'Initial stock entry', '2025-08-07 14:28:42', 98, 992),
(2, 2, 'adjustment', '', NULL, 1000, 12.00, 12000.00, 0, 1000, NULL, NULL, 'Initial stock entry', '2025-08-07 14:29:17', 98, 992),
(3, 3, 'adjustment', '', NULL, 1230, 12.00, 14760.00, 0, 1230, NULL, NULL, 'Initial stock entry', '2025-08-07 14:31:05', 98, 992),
(4, 3, 'usage', 'usage_log', 1, -30, 12.00, 360.00, 1230, 1200, '0000-00-00', '', NULL, '2025-08-07 14:38:56', 98, 992),
(5, 2, 'usage', 'usage_log', 2, -50, 12.00, 600.00, 1000, 950, '0000-00-00', '', NULL, '2025-08-07 14:39:25', 98, 992),
(6, 1, 'usage', 'usage_log', 3, -20, 10.00, 200.00, 1000, 980, '0000-00-00', '', NULL, '2025-08-07 14:39:50', 98, 992),
(7, 2, 'usage', 'usage_log', 4, -50, 12.00, 600.00, 950, 900, '0000-00-00', '', NULL, '2025-09-03 04:41:01', 98, 992),
(8, 4, 'usage', 'usage_log', 5, -10, 10.00, 100.00, 0, -10, '0000-00-00', '', NULL, '2025-09-04 04:33:27', 98, 992),
(9, 4, 'adjustment', '', 5, 10, 10.00, 100.00, 4, 4, NULL, NULL, 'Usage log reversal: Nurse', '2025-09-04 04:34:20', 98, 992);

-- --------------------------------------------------------

--
-- Table structure for table `superadmin`
--

CREATE TABLE `superadmin` (
  `id` int(50) NOT NULL,
  `name` varchar(200) DEFAULT NULL,
  `email` varchar(200) DEFAULT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `address` varchar(300) DEFAULT NULL,
  `img_url` varchar(300) DEFAULT NULL,
  `ion_user_id` varchar(100) DEFAULT NULL,
  `module` varchar(300) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `superadmin`
--

INSERT INTO `superadmin` (`id`, `name`, `email`, `phone`, `address`, `img_url`, `ion_user_id`, `module`) VALUES
(12, 'Super Admin', 'superadmin@hms.com', '01749335500', 'Binodpur', 'uploads/userIcon5.png', '1', 'home,hospital,package,request,superadmin,email,pgateway,slide,service,systems');

-- --------------------------------------------------------

--
-- Table structure for table `suppliers`
--

CREATE TABLE `suppliers` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `company_name` varchar(255) DEFAULT NULL,
  `contact_person` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `mobile` varchar(20) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `city` varchar(100) DEFAULT NULL,
  `state` varchar(100) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `postal_code` varchar(20) DEFAULT NULL,
  `tax_number` varchar(50) DEFAULT NULL,
  `bank_name` varchar(255) DEFAULT NULL,
  `bank_account` varchar(50) DEFAULT NULL,
  `payment_terms` varchar(255) DEFAULT NULL,
  `credit_limit` decimal(15,2) DEFAULT 0.00,
  `current_balance` decimal(15,2) DEFAULT 0.00,
  `status` enum('active','inactive') DEFAULT 'active',
  `notes` text DEFAULT NULL,
  `hospital_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `suppliers`
--

INSERT INTO `suppliers` (`id`, `name`, `company_name`, `contact_person`, `email`, `phone`, `mobile`, `address`, `city`, `state`, `country`, `postal_code`, `tax_number`, `bank_name`, `bank_account`, `payment_terms`, `credit_limit`, `current_balance`, `status`, `notes`, `hospital_id`, `created_at`, `updated_at`, `created_by`, `updated_by`) VALUES
(1, 'Rizvi Mahmud', 'Linear Beauty', 'Rizvi Mahmud', 'admin@linear-beauty.com', '01536166567', '', 'fsdsdf', 'Dhaka', '', '', '', '', '', '', 'Net 30', 0.00, 0.00, 'active', '', 98, '2025-08-08 00:12:45', '2025-08-07 14:12:45', 992, NULL),
(2, 'Mr Supplier', 'Codearistos', 'Md Opu', 'info@codearistos.net', '01749335508', '', 'Bashundhara, Dhaka', 'Dhaka', '', '', '', '', '', '', 'Net 30', 0.00, 0.00, 'active', '', 98, '2025-08-08 00:15:01', '2025-08-07 14:15:01', 992, NULL),
(3, 'Inventory Supplier', 'Codearistos', 'Md Opu', 'info@codearistos.net', '01749335508', '01749335508', 'Bashundhara, Dhaka', 'Dhaka', 'sdfsdfsdfsdfsdf', 'Bangladesh', '1200', '234234234324', 'sdfsdf', '234234234234', 'Net 30', 100.00, 0.00, 'active', 'sdfsdfdsf', 98, '2025-08-27 17:36:47', '2025-09-04 14:32:30', 992, 992);

-- --------------------------------------------------------

--
-- Table structure for table `symptom`
--

CREATE TABLE `symptom` (
  `id` int(100) NOT NULL,
  `name` varchar(500) DEFAULT NULL,
  `description` varchar(1000) DEFAULT NULL,
  `hospital_id` int(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `symptom`
--

INSERT INTO `symptom` (`id`, `name`, `description`, `hospital_id`) VALUES
(61, 'Fever', NULL, 98);

-- --------------------------------------------------------

--
-- Table structure for table `template`
--

CREATE TABLE `template` (
  `id` int(100) NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `template` varchar(10000) DEFAULT NULL,
  `user` varchar(100) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL,
  `category_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `testpkz`
--

CREATE TABLE `testpkz` (
  `id` int(100) NOT NULL,
  `name` varchar(300) DEFAULT NULL,
  `payment_category` varchar(100) DEFAULT NULL,
  `x` varchar(300) DEFAULT NULL,
  `hospital_id` varchar(300) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `testpkz`
--

INSERT INTO `testpkz` (`id`, `name`, `payment_category`, `x`, `hospital_id`) VALUES
(2, 'Test', '66,67', NULL, '98');

-- --------------------------------------------------------

--
-- Table structure for table `time_schedule`
--

CREATE TABLE `time_schedule` (
  `id` int(100) NOT NULL,
  `doctor` varchar(500) DEFAULT NULL,
  `weekday` varchar(100) DEFAULT NULL,
  `s_time` varchar(100) DEFAULT NULL,
  `e_time` varchar(100) DEFAULT NULL,
  `s_time_key` varchar(100) DEFAULT NULL,
  `duration` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `time_schedule`
--

INSERT INTO `time_schedule` (`id`, `doctor`, `weekday`, `s_time`, `e_time`, `s_time_key`, `duration`, `hospital_id`) VALUES
(1, '1', 'Friday', '10:15 AM', '11:15 PM', '123', '3', '1'),
(5, '2', 'Wednesday', '04:30 PM', '11:30 PM', '198', '3', '2'),
(4, '1', 'Wednesday', '04:30 PM', '11:30 PM', '198', '3', '1'),
(6, '1', 'Thursday', '12:00 AM', '11:00 PM', '0', '3', '1'),
(7, '3', 'Friday', '10:15 AM', '11:15 PM', '123', '3', '4'),
(8, '5', 'Sunday', '12:00 PM', '06:00 PM', '144', '3', '4'),
(9, '3', 'Wednesday', '03:00 PM', '07:00 PM', '180', '3', '4'),
(10, '4', 'Thursday', '05:00 PM', '07:00 PM', '204', '3', '4'),
(11, '3', 'Sunday', '05:00 PM', '06:00 PM', '204', '3', '4'),
(13, '3', 'Monday', '05:30 PM', '08:30 PM', '210', '3', '4'),
(44, '44', 'Friday', '04:45 PM', '09:45 PM', '201', '1', '98'),
(45, '44', 'Saturday', '12:45 PM', '01:15 PM', '153', '1', '98');

-- --------------------------------------------------------

--
-- Table structure for table `time_slot`
--

CREATE TABLE `time_slot` (
  `id` int(100) NOT NULL,
  `doctor` varchar(100) DEFAULT NULL,
  `s_time` varchar(100) DEFAULT NULL,
  `e_time` varchar(100) DEFAULT NULL,
  `weekday` varchar(100) DEFAULT NULL,
  `s_time_key` varchar(100) DEFAULT NULL,
  `hospital_id` varchar(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `time_slot`
--

INSERT INTO `time_slot` (`id`, `doctor`, `s_time`, `e_time`, `weekday`, `s_time_key`, `hospital_id`) VALUES
(1, '1', '10:15 AM', '10:30 AM', 'Friday', '123', '1'),
(2, '1', '10:30 AM', '10:45 AM', 'Friday', '126', '1'),
(3, '1', '10:45 AM', '11:00 AM', 'Friday', '129', '1'),
(4, '1', '11:00 AM', '11:15 AM', 'Friday', '132', '1'),
(5, '1', '11:15 AM', '11:30 AM', 'Friday', '135', '1'),
(6, '1', '11:30 AM', '11:45 AM', 'Friday', '138', '1'),
(7, '1', '11:45 AM', '12:00 PM', 'Friday', '141', '1'),
(8, '1', '12:00 PM', '12:15 PM', 'Friday', '144', '1'),
(9, '1', '12:15 PM', '12:30 PM', 'Friday', '147', '1'),
(10, '1', '12:30 PM', '12:45 PM', 'Friday', '150', '1'),
(11, '1', '12:45 PM', '01:00 PM', 'Friday', '153', '1'),
(12, '1', '01:00 PM', '01:15 PM', 'Friday', '156', '1'),
(13, '1', '01:15 PM', '01:30 PM', 'Friday', '159', '1'),
(14, '1', '01:30 PM', '01:45 PM', 'Friday', '162', '1'),
(15, '1', '01:45 PM', '02:00 PM', 'Friday', '165', '1'),
(16, '1', '02:00 PM', '02:15 PM', 'Friday', '168', '1'),
(17, '1', '02:15 PM', '02:30 PM', 'Friday', '171', '1'),
(18, '1', '02:30 PM', '02:45 PM', 'Friday', '174', '1'),
(19, '1', '02:45 PM', '03:00 PM', 'Friday', '177', '1'),
(20, '1', '03:00 PM', '03:15 PM', 'Friday', '180', '1'),
(21, '1', '03:15 PM', '03:30 PM', 'Friday', '183', '1'),
(22, '1', '03:30 PM', '03:45 PM', 'Friday', '186', '1'),
(23, '1', '03:45 PM', '04:00 PM', 'Friday', '189', '1'),
(24, '1', '04:00 PM', '04:15 PM', 'Friday', '192', '1'),
(25, '1', '04:15 PM', '04:30 PM', 'Friday', '195', '1'),
(26, '1', '04:30 PM', '04:45 PM', 'Friday', '198', '1'),
(27, '1', '04:45 PM', '05:00 PM', 'Friday', '201', '1'),
(28, '1', '05:00 PM', '05:15 PM', 'Friday', '204', '1'),
(29, '1', '05:15 PM', '05:30 PM', 'Friday', '207', '1'),
(30, '1', '05:30 PM', '05:45 PM', 'Friday', '210', '1'),
(31, '1', '05:45 PM', '06:00 PM', 'Friday', '213', '1'),
(32, '1', '06:00 PM', '06:15 PM', 'Friday', '216', '1'),
(33, '1', '06:15 PM', '06:30 PM', 'Friday', '219', '1'),
(34, '1', '06:30 PM', '06:45 PM', 'Friday', '222', '1'),
(35, '1', '06:45 PM', '07:00 PM', 'Friday', '225', '1'),
(36, '1', '07:00 PM', '07:15 PM', 'Friday', '228', '1'),
(37, '1', '07:15 PM', '07:30 PM', 'Friday', '231', '1'),
(38, '1', '07:30 PM', '07:45 PM', 'Friday', '234', '1'),
(39, '1', '07:45 PM', '08:00 PM', 'Friday', '237', '1'),
(40, '1', '08:00 PM', '08:15 PM', 'Friday', '240', '1'),
(41, '1', '08:15 PM', '08:30 PM', 'Friday', '243', '1'),
(42, '1', '08:30 PM', '08:45 PM', 'Friday', '246', '1'),
(43, '1', '08:45 PM', '09:00 PM', 'Friday', '249', '1'),
(44, '1', '09:00 PM', '09:15 PM', 'Friday', '252', '1'),
(45, '1', '09:15 PM', '09:30 PM', 'Friday', '255', '1'),
(46, '1', '09:30 PM', '09:45 PM', 'Friday', '258', '1'),
(47, '1', '09:45 PM', '10:00 PM', 'Friday', '261', '1'),
(48, '1', '10:00 PM', '10:15 PM', 'Friday', '264', '1'),
(49, '1', '10:15 PM', '10:30 PM', 'Friday', '267', '1'),
(50, '1', '10:30 PM', '10:45 PM', 'Friday', '270', '1'),
(51, '1', '10:45 PM', '11:00 PM', 'Friday', '273', '1'),
(52, '1', '11:00 PM', '11:15 PM', 'Friday', '276', '1'),
(116, '2', '07:15 PM', '07:30 PM', 'Wednesday', '231', '2'),
(115, '2', '07:00 PM', '07:15 PM', 'Wednesday', '228', '2'),
(114, '2', '06:45 PM', '07:00 PM', 'Wednesday', '225', '2'),
(113, '2', '06:30 PM', '06:45 PM', 'Wednesday', '222', '2'),
(112, '2', '06:15 PM', '06:30 PM', 'Wednesday', '219', '2'),
(111, '2', '06:00 PM', '06:15 PM', 'Wednesday', '216', '2'),
(110, '2', '05:45 PM', '06:00 PM', 'Wednesday', '213', '2'),
(109, '2', '05:30 PM', '05:45 PM', 'Wednesday', '210', '2'),
(108, '2', '05:15 PM', '05:30 PM', 'Wednesday', '207', '2'),
(107, '2', '05:00 PM', '05:15 PM', 'Wednesday', '204', '2'),
(106, '2', '04:45 PM', '05:00 PM', 'Wednesday', '201', '2'),
(105, '2', '04:30 PM', '04:45 PM', 'Wednesday', '198', '2'),
(88, '1', '07:15 PM', '07:30 PM', 'Wednesday', '231', '1'),
(87, '1', '07:00 PM', '07:15 PM', 'Wednesday', '228', '1'),
(86, '1', '06:45 PM', '07:00 PM', 'Wednesday', '225', '1'),
(85, '1', '06:30 PM', '06:45 PM', 'Wednesday', '222', '1'),
(84, '1', '06:15 PM', '06:30 PM', 'Wednesday', '219', '1'),
(83, '1', '06:00 PM', '06:15 PM', 'Wednesday', '216', '1'),
(82, '1', '05:45 PM', '06:00 PM', 'Wednesday', '213', '1'),
(81, '1', '05:30 PM', '05:45 PM', 'Wednesday', '210', '1'),
(80, '1', '05:15 PM', '05:30 PM', 'Wednesday', '207', '1'),
(79, '1', '05:00 PM', '05:15 PM', 'Wednesday', '204', '1'),
(78, '1', '04:45 PM', '05:00 PM', 'Wednesday', '201', '1'),
(77, '1', '04:30 PM', '04:45 PM', 'Wednesday', '198', '1'),
(89, '1', '07:30 PM', '07:45 PM', 'Wednesday', '234', '1'),
(90, '1', '07:45 PM', '08:00 PM', 'Wednesday', '237', '1'),
(91, '1', '08:00 PM', '08:15 PM', 'Wednesday', '240', '1'),
(92, '1', '08:15 PM', '08:30 PM', 'Wednesday', '243', '1'),
(93, '1', '08:30 PM', '08:45 PM', 'Wednesday', '246', '1'),
(94, '1', '08:45 PM', '09:00 PM', 'Wednesday', '249', '1'),
(95, '1', '09:00 PM', '09:15 PM', 'Wednesday', '252', '1'),
(96, '1', '09:15 PM', '09:30 PM', 'Wednesday', '255', '1'),
(97, '1', '09:30 PM', '09:45 PM', 'Wednesday', '258', '1'),
(98, '1', '09:45 PM', '10:00 PM', 'Wednesday', '261', '1'),
(99, '1', '10:00 PM', '10:15 PM', 'Wednesday', '264', '1'),
(100, '1', '10:15 PM', '10:30 PM', 'Wednesday', '267', '1'),
(101, '1', '10:30 PM', '10:45 PM', 'Wednesday', '270', '1'),
(102, '1', '10:45 PM', '11:00 PM', 'Wednesday', '273', '1'),
(103, '1', '11:00 PM', '11:15 PM', 'Wednesday', '276', '1'),
(104, '1', '11:15 PM', '11:30 PM', 'Wednesday', '279', '1'),
(117, '2', '07:30 PM', '07:45 PM', 'Wednesday', '234', '2'),
(118, '2', '07:45 PM', '08:00 PM', 'Wednesday', '237', '2'),
(119, '2', '08:00 PM', '08:15 PM', 'Wednesday', '240', '2'),
(120, '2', '08:15 PM', '08:30 PM', 'Wednesday', '243', '2'),
(121, '2', '08:30 PM', '08:45 PM', 'Wednesday', '246', '2'),
(122, '2', '08:45 PM', '09:00 PM', 'Wednesday', '249', '2'),
(123, '2', '09:00 PM', '09:15 PM', 'Wednesday', '252', '2'),
(124, '2', '09:15 PM', '09:30 PM', 'Wednesday', '255', '2'),
(125, '2', '09:30 PM', '09:45 PM', 'Wednesday', '258', '2'),
(126, '2', '09:45 PM', '10:00 PM', 'Wednesday', '261', '2'),
(127, '2', '10:00 PM', '10:15 PM', 'Wednesday', '264', '2'),
(128, '2', '10:15 PM', '10:30 PM', 'Wednesday', '267', '2'),
(129, '2', '10:30 PM', '10:45 PM', 'Wednesday', '270', '2'),
(130, '2', '10:45 PM', '11:00 PM', 'Wednesday', '273', '2'),
(131, '2', '11:00 PM', '11:15 PM', 'Wednesday', '276', '2'),
(132, '2', '11:15 PM', '11:30 PM', 'Wednesday', '279', '2'),
(133, '1', '12:00 AM', '12:15 AM', 'Thursday', '0', '1'),
(134, '1', '12:15 AM', '12:30 AM', 'Thursday', '3', '1'),
(135, '1', '12:30 AM', '12:45 AM', 'Thursday', '6', '1'),
(136, '1', '12:45 AM', '01:00 AM', 'Thursday', '9', '1'),
(137, '1', '01:00 AM', '01:15 AM', 'Thursday', '12', '1'),
(138, '1', '01:15 AM', '01:30 AM', 'Thursday', '15', '1'),
(139, '1', '01:30 AM', '01:45 AM', 'Thursday', '18', '1'),
(140, '1', '01:45 AM', '02:00 AM', 'Thursday', '21', '1'),
(141, '1', '02:00 AM', '02:15 AM', 'Thursday', '24', '1'),
(142, '1', '02:15 AM', '02:30 AM', 'Thursday', '27', '1'),
(143, '1', '02:30 AM', '02:45 AM', 'Thursday', '30', '1'),
(144, '1', '02:45 AM', '03:00 AM', 'Thursday', '33', '1'),
(145, '1', '03:00 AM', '03:15 AM', 'Thursday', '36', '1'),
(146, '1', '03:15 AM', '03:30 AM', 'Thursday', '39', '1'),
(147, '1', '03:30 AM', '03:45 AM', 'Thursday', '42', '1'),
(148, '1', '03:45 AM', '04:00 AM', 'Thursday', '45', '1'),
(149, '1', '04:00 AM', '04:15 AM', 'Thursday', '48', '1'),
(150, '1', '04:15 AM', '04:30 AM', 'Thursday', '51', '1'),
(151, '1', '04:30 AM', '04:45 AM', 'Thursday', '54', '1'),
(152, '1', '04:45 AM', '05:00 AM', 'Thursday', '57', '1'),
(153, '1', '05:00 AM', '05:15 AM', 'Thursday', '60', '1'),
(154, '1', '05:15 AM', '05:30 AM', 'Thursday', '63', '1'),
(155, '1', '05:30 AM', '05:45 AM', 'Thursday', '66', '1'),
(156, '1', '05:45 AM', '06:00 AM', 'Thursday', '69', '1'),
(157, '1', '06:00 AM', '06:15 AM', 'Thursday', '72', '1'),
(158, '1', '06:15 AM', '06:30 AM', 'Thursday', '75', '1'),
(159, '1', '06:30 AM', '06:45 AM', 'Thursday', '78', '1'),
(160, '1', '06:45 AM', '07:00 AM', 'Thursday', '81', '1'),
(161, '1', '07:00 AM', '07:15 AM', 'Thursday', '84', '1'),
(162, '1', '07:15 AM', '07:30 AM', 'Thursday', '87', '1'),
(163, '1', '07:30 AM', '07:45 AM', 'Thursday', '90', '1'),
(164, '1', '07:45 AM', '08:00 AM', 'Thursday', '93', '1'),
(165, '1', '08:00 AM', '08:15 AM', 'Thursday', '96', '1'),
(166, '1', '08:15 AM', '08:30 AM', 'Thursday', '99', '1'),
(167, '1', '08:30 AM', '08:45 AM', 'Thursday', '102', '1'),
(168, '1', '08:45 AM', '09:00 AM', 'Thursday', '105', '1'),
(169, '1', '09:00 AM', '09:15 AM', 'Thursday', '108', '1'),
(170, '1', '09:15 AM', '09:30 AM', 'Thursday', '111', '1'),
(171, '1', '09:30 AM', '09:45 AM', 'Thursday', '114', '1'),
(172, '1', '09:45 AM', '10:00 AM', 'Thursday', '117', '1'),
(173, '1', '10:00 AM', '10:15 AM', 'Thursday', '120', '1'),
(174, '1', '10:15 AM', '10:30 AM', 'Thursday', '123', '1'),
(175, '1', '10:30 AM', '10:45 AM', 'Thursday', '126', '1'),
(176, '1', '10:45 AM', '11:00 AM', 'Thursday', '129', '1'),
(177, '1', '11:00 AM', '11:15 AM', 'Thursday', '132', '1'),
(178, '1', '11:15 AM', '11:30 AM', 'Thursday', '135', '1'),
(179, '1', '11:30 AM', '11:45 AM', 'Thursday', '138', '1'),
(180, '1', '11:45 AM', '12:00 PM', 'Thursday', '141', '1'),
(181, '1', '12:00 PM', '12:15 PM', 'Thursday', '144', '1'),
(182, '1', '12:15 PM', '12:30 PM', 'Thursday', '147', '1'),
(183, '1', '12:30 PM', '12:45 PM', 'Thursday', '150', '1'),
(184, '1', '12:45 PM', '01:00 PM', 'Thursday', '153', '1'),
(185, '1', '01:00 PM', '01:15 PM', 'Thursday', '156', '1'),
(186, '1', '01:15 PM', '01:30 PM', 'Thursday', '159', '1'),
(187, '1', '01:30 PM', '01:45 PM', 'Thursday', '162', '1'),
(188, '1', '01:45 PM', '02:00 PM', 'Thursday', '165', '1'),
(189, '1', '02:00 PM', '02:15 PM', 'Thursday', '168', '1'),
(190, '1', '02:15 PM', '02:30 PM', 'Thursday', '171', '1'),
(191, '1', '02:30 PM', '02:45 PM', 'Thursday', '174', '1'),
(192, '1', '02:45 PM', '03:00 PM', 'Thursday', '177', '1'),
(193, '1', '03:00 PM', '03:15 PM', 'Thursday', '180', '1'),
(194, '1', '03:15 PM', '03:30 PM', 'Thursday', '183', '1'),
(195, '1', '03:30 PM', '03:45 PM', 'Thursday', '186', '1'),
(196, '1', '03:45 PM', '04:00 PM', 'Thursday', '189', '1'),
(197, '1', '04:00 PM', '04:15 PM', 'Thursday', '192', '1'),
(198, '1', '04:15 PM', '04:30 PM', 'Thursday', '195', '1'),
(199, '1', '04:30 PM', '04:45 PM', 'Thursday', '198', '1'),
(200, '1', '04:45 PM', '05:00 PM', 'Thursday', '201', '1'),
(201, '1', '05:00 PM', '05:15 PM', 'Thursday', '204', '1'),
(202, '1', '05:15 PM', '05:30 PM', 'Thursday', '207', '1'),
(203, '1', '05:30 PM', '05:45 PM', 'Thursday', '210', '1'),
(204, '1', '05:45 PM', '06:00 PM', 'Thursday', '213', '1'),
(205, '1', '06:00 PM', '06:15 PM', 'Thursday', '216', '1'),
(206, '1', '06:15 PM', '06:30 PM', 'Thursday', '219', '1'),
(207, '1', '06:30 PM', '06:45 PM', 'Thursday', '222', '1'),
(208, '1', '06:45 PM', '07:00 PM', 'Thursday', '225', '1'),
(209, '1', '07:00 PM', '07:15 PM', 'Thursday', '228', '1'),
(210, '1', '07:15 PM', '07:30 PM', 'Thursday', '231', '1'),
(211, '1', '07:30 PM', '07:45 PM', 'Thursday', '234', '1'),
(212, '1', '07:45 PM', '08:00 PM', 'Thursday', '237', '1'),
(213, '1', '08:00 PM', '08:15 PM', 'Thursday', '240', '1'),
(214, '1', '08:15 PM', '08:30 PM', 'Thursday', '243', '1'),
(215, '1', '08:30 PM', '08:45 PM', 'Thursday', '246', '1'),
(216, '1', '08:45 PM', '09:00 PM', 'Thursday', '249', '1'),
(217, '1', '09:00 PM', '09:15 PM', 'Thursday', '252', '1'),
(218, '1', '09:15 PM', '09:30 PM', 'Thursday', '255', '1'),
(219, '1', '09:30 PM', '09:45 PM', 'Thursday', '258', '1'),
(220, '1', '09:45 PM', '10:00 PM', 'Thursday', '261', '1'),
(221, '1', '10:00 PM', '10:15 PM', 'Thursday', '264', '1'),
(222, '1', '10:15 PM', '10:30 PM', 'Thursday', '267', '1'),
(223, '1', '10:30 PM', '10:45 PM', 'Thursday', '270', '1'),
(224, '1', '10:45 PM', '11:00 PM', 'Thursday', '273', '1'),
(225, '3', '10:15 AM', '10:30 AM', 'Friday', '123', '4'),
(226, '3', '10:30 AM', '10:45 AM', 'Friday', '126', '4'),
(227, '3', '10:45 AM', '11:00 AM', 'Friday', '129', '4'),
(228, '3', '11:00 AM', '11:15 AM', 'Friday', '132', '4'),
(229, '3', '11:15 AM', '11:30 AM', 'Friday', '135', '4'),
(230, '3', '11:30 AM', '11:45 AM', 'Friday', '138', '4'),
(231, '3', '11:45 AM', '12:00 PM', 'Friday', '141', '4'),
(232, '3', '12:00 PM', '12:15 PM', 'Friday', '144', '4'),
(233, '3', '12:15 PM', '12:30 PM', 'Friday', '147', '4'),
(234, '3', '12:30 PM', '12:45 PM', 'Friday', '150', '4'),
(235, '3', '12:45 PM', '01:00 PM', 'Friday', '153', '4'),
(236, '3', '01:00 PM', '01:15 PM', 'Friday', '156', '4'),
(237, '3', '01:15 PM', '01:30 PM', 'Friday', '159', '4'),
(238, '3', '01:30 PM', '01:45 PM', 'Friday', '162', '4'),
(239, '3', '01:45 PM', '02:00 PM', 'Friday', '165', '4'),
(240, '3', '02:00 PM', '02:15 PM', 'Friday', '168', '4'),
(241, '3', '02:15 PM', '02:30 PM', 'Friday', '171', '4'),
(242, '3', '02:30 PM', '02:45 PM', 'Friday', '174', '4'),
(243, '3', '02:45 PM', '03:00 PM', 'Friday', '177', '4'),
(244, '3', '03:00 PM', '03:15 PM', 'Friday', '180', '4'),
(245, '3', '03:15 PM', '03:30 PM', 'Friday', '183', '4'),
(246, '3', '03:30 PM', '03:45 PM', 'Friday', '186', '4'),
(247, '3', '03:45 PM', '04:00 PM', 'Friday', '189', '4'),
(248, '3', '04:00 PM', '04:15 PM', 'Friday', '192', '4'),
(249, '3', '04:15 PM', '04:30 PM', 'Friday', '195', '4'),
(250, '3', '04:30 PM', '04:45 PM', 'Friday', '198', '4'),
(251, '3', '04:45 PM', '05:00 PM', 'Friday', '201', '4'),
(252, '3', '05:00 PM', '05:15 PM', 'Friday', '204', '4'),
(253, '3', '05:15 PM', '05:30 PM', 'Friday', '207', '4'),
(254, '3', '05:30 PM', '05:45 PM', 'Friday', '210', '4'),
(255, '3', '05:45 PM', '06:00 PM', 'Friday', '213', '4'),
(256, '3', '06:00 PM', '06:15 PM', 'Friday', '216', '4'),
(257, '3', '06:15 PM', '06:30 PM', 'Friday', '219', '4'),
(258, '3', '06:30 PM', '06:45 PM', 'Friday', '222', '4'),
(259, '3', '06:45 PM', '07:00 PM', 'Friday', '225', '4'),
(260, '3', '07:00 PM', '07:15 PM', 'Friday', '228', '4'),
(261, '3', '07:15 PM', '07:30 PM', 'Friday', '231', '4'),
(262, '3', '07:30 PM', '07:45 PM', 'Friday', '234', '4'),
(263, '3', '07:45 PM', '08:00 PM', 'Friday', '237', '4'),
(264, '3', '08:00 PM', '08:15 PM', 'Friday', '240', '4'),
(265, '3', '08:15 PM', '08:30 PM', 'Friday', '243', '4'),
(266, '3', '08:30 PM', '08:45 PM', 'Friday', '246', '4'),
(267, '3', '08:45 PM', '09:00 PM', 'Friday', '249', '4'),
(268, '3', '09:00 PM', '09:15 PM', 'Friday', '252', '4'),
(269, '3', '09:15 PM', '09:30 PM', 'Friday', '255', '4'),
(270, '3', '09:30 PM', '09:45 PM', 'Friday', '258', '4'),
(271, '3', '09:45 PM', '10:00 PM', 'Friday', '261', '4'),
(272, '3', '10:00 PM', '10:15 PM', 'Friday', '264', '4'),
(273, '3', '10:15 PM', '10:30 PM', 'Friday', '267', '4'),
(274, '3', '10:30 PM', '10:45 PM', 'Friday', '270', '4'),
(275, '3', '10:45 PM', '11:00 PM', 'Friday', '273', '4'),
(276, '3', '11:00 PM', '11:15 PM', 'Friday', '276', '4'),
(277, '5', '12:00 PM', '12:15 PM', 'Sunday', '144', '4'),
(278, '5', '12:15 PM', '12:30 PM', 'Sunday', '147', '4'),
(279, '5', '12:30 PM', '12:45 PM', 'Sunday', '150', '4'),
(280, '5', '12:45 PM', '01:00 PM', 'Sunday', '153', '4'),
(281, '5', '01:00 PM', '01:15 PM', 'Sunday', '156', '4'),
(282, '5', '01:15 PM', '01:30 PM', 'Sunday', '159', '4'),
(283, '5', '01:30 PM', '01:45 PM', 'Sunday', '162', '4'),
(284, '5', '01:45 PM', '02:00 PM', 'Sunday', '165', '4'),
(285, '5', '02:00 PM', '02:15 PM', 'Sunday', '168', '4'),
(286, '5', '02:15 PM', '02:30 PM', 'Sunday', '171', '4'),
(287, '5', '02:30 PM', '02:45 PM', 'Sunday', '174', '4'),
(288, '5', '02:45 PM', '03:00 PM', 'Sunday', '177', '4'),
(289, '5', '03:00 PM', '03:15 PM', 'Sunday', '180', '4'),
(290, '5', '03:15 PM', '03:30 PM', 'Sunday', '183', '4'),
(291, '5', '03:30 PM', '03:45 PM', 'Sunday', '186', '4'),
(292, '5', '03:45 PM', '04:00 PM', 'Sunday', '189', '4'),
(293, '5', '04:00 PM', '04:15 PM', 'Sunday', '192', '4'),
(294, '5', '04:15 PM', '04:30 PM', 'Sunday', '195', '4'),
(295, '5', '04:30 PM', '04:45 PM', 'Sunday', '198', '4'),
(296, '5', '04:45 PM', '05:00 PM', 'Sunday', '201', '4'),
(297, '5', '05:00 PM', '05:15 PM', 'Sunday', '204', '4'),
(298, '5', '05:15 PM', '05:30 PM', 'Sunday', '207', '4'),
(299, '5', '05:30 PM', '05:45 PM', 'Sunday', '210', '4'),
(300, '5', '05:45 PM', '06:00 PM', 'Sunday', '213', '4'),
(301, '3', '03:00 PM', '03:15 PM', 'Wednesday', '180', '4'),
(302, '3', '03:15 PM', '03:30 PM', 'Wednesday', '183', '4'),
(303, '3', '03:30 PM', '03:45 PM', 'Wednesday', '186', '4'),
(304, '3', '03:45 PM', '04:00 PM', 'Wednesday', '189', '4'),
(305, '3', '04:00 PM', '04:15 PM', 'Wednesday', '192', '4'),
(306, '3', '04:15 PM', '04:30 PM', 'Wednesday', '195', '4'),
(307, '3', '04:30 PM', '04:45 PM', 'Wednesday', '198', '4'),
(308, '3', '04:45 PM', '05:00 PM', 'Wednesday', '201', '4'),
(309, '3', '05:00 PM', '05:15 PM', 'Wednesday', '204', '4'),
(310, '3', '05:15 PM', '05:30 PM', 'Wednesday', '207', '4'),
(311, '3', '05:30 PM', '05:45 PM', 'Wednesday', '210', '4'),
(312, '3', '05:45 PM', '06:00 PM', 'Wednesday', '213', '4'),
(313, '3', '06:00 PM', '06:15 PM', 'Wednesday', '216', '4'),
(314, '3', '06:15 PM', '06:30 PM', 'Wednesday', '219', '4'),
(315, '3', '06:30 PM', '06:45 PM', 'Wednesday', '222', '4'),
(316, '3', '06:45 PM', '07:00 PM', 'Wednesday', '225', '4'),
(317, '4', '05:00 PM', '05:15 PM', 'Thursday', '204', '4'),
(318, '4', '05:15 PM', '05:30 PM', 'Thursday', '207', '4'),
(319, '4', '05:30 PM', '05:45 PM', 'Thursday', '210', '4'),
(320, '4', '05:45 PM', '06:00 PM', 'Thursday', '213', '4'),
(321, '4', '06:00 PM', '06:15 PM', 'Thursday', '216', '4'),
(322, '4', '06:15 PM', '06:30 PM', 'Thursday', '219', '4'),
(323, '4', '06:30 PM', '06:45 PM', 'Thursday', '222', '4'),
(324, '4', '06:45 PM', '07:00 PM', 'Thursday', '225', '4'),
(325, '3', '05:00 PM', '05:15 PM', 'Sunday', '204', '4'),
(326, '3', '05:15 PM', '05:30 PM', 'Sunday', '207', '4'),
(327, '3', '05:30 PM', '05:45 PM', 'Sunday', '210', '4'),
(328, '3', '05:45 PM', '06:00 PM', 'Sunday', '213', '4'),
(344, '3', '07:15 PM', '07:30 PM', 'Monday', '231', '4'),
(343, '3', '07:00 PM', '07:15 PM', 'Monday', '228', '4'),
(342, '3', '06:45 PM', '07:00 PM', 'Monday', '225', '4'),
(341, '3', '06:30 PM', '06:45 PM', 'Monday', '222', '4'),
(340, '3', '06:15 PM', '06:30 PM', 'Monday', '219', '4'),
(339, '3', '06:00 PM', '06:15 PM', 'Monday', '216', '4'),
(338, '3', '05:45 PM', '06:00 PM', 'Monday', '213', '4'),
(337, '3', '05:30 PM', '05:45 PM', 'Monday', '210', '4'),
(345, '3', '07:30 PM', '07:45 PM', 'Monday', '234', '4'),
(346, '3', '07:45 PM', '08:00 PM', 'Monday', '237', '4'),
(347, '3', '08:00 PM', '08:15 PM', 'Monday', '240', '4'),
(348, '3', '08:15 PM', '08:30 PM', 'Monday', '243', '4'),
(843, '44', '09:40 PM', '09:45 PM', 'Friday', '260', '98'),
(842, '44', '09:35 PM', '09:40 PM', 'Friday', '259', '98'),
(841, '44', '09:30 PM', '09:35 PM', 'Friday', '258', '98'),
(840, '44', '09:25 PM', '09:30 PM', 'Friday', '257', '98'),
(839, '44', '09:20 PM', '09:25 PM', 'Friday', '256', '98'),
(838, '44', '09:15 PM', '09:20 PM', 'Friday', '255', '98'),
(837, '44', '09:10 PM', '09:15 PM', 'Friday', '254', '98'),
(836, '44', '09:05 PM', '09:10 PM', 'Friday', '253', '98'),
(835, '44', '09:00 PM', '09:05 PM', 'Friday', '252', '98'),
(834, '44', '08:55 PM', '09:00 PM', 'Friday', '251', '98'),
(833, '44', '08:50 PM', '08:55 PM', 'Friday', '250', '98'),
(832, '44', '08:45 PM', '08:50 PM', 'Friday', '249', '98'),
(831, '44', '08:40 PM', '08:45 PM', 'Friday', '248', '98'),
(830, '44', '08:35 PM', '08:40 PM', 'Friday', '247', '98'),
(829, '44', '08:30 PM', '08:35 PM', 'Friday', '246', '98'),
(828, '44', '08:25 PM', '08:30 PM', 'Friday', '245', '98'),
(827, '44', '08:20 PM', '08:25 PM', 'Friday', '244', '98'),
(826, '44', '08:15 PM', '08:20 PM', 'Friday', '243', '98'),
(825, '44', '08:10 PM', '08:15 PM', 'Friday', '242', '98'),
(824, '44', '08:05 PM', '08:10 PM', 'Friday', '241', '98'),
(823, '44', '08:00 PM', '08:05 PM', 'Friday', '240', '98'),
(822, '44', '07:55 PM', '08:00 PM', 'Friday', '239', '98'),
(821, '44', '07:50 PM', '07:55 PM', 'Friday', '238', '98'),
(820, '44', '07:45 PM', '07:50 PM', 'Friday', '237', '98'),
(819, '44', '07:40 PM', '07:45 PM', 'Friday', '236', '98'),
(818, '44', '07:35 PM', '07:40 PM', 'Friday', '235', '98'),
(817, '44', '07:30 PM', '07:35 PM', 'Friday', '234', '98'),
(816, '44', '07:25 PM', '07:30 PM', 'Friday', '233', '98'),
(815, '44', '07:20 PM', '07:25 PM', 'Friday', '232', '98'),
(814, '44', '07:15 PM', '07:20 PM', 'Friday', '231', '98'),
(813, '44', '07:10 PM', '07:15 PM', 'Friday', '230', '98'),
(812, '44', '07:05 PM', '07:10 PM', 'Friday', '229', '98'),
(811, '44', '07:00 PM', '07:05 PM', 'Friday', '228', '98'),
(810, '44', '06:55 PM', '07:00 PM', 'Friday', '227', '98'),
(809, '44', '06:50 PM', '06:55 PM', 'Friday', '226', '98'),
(808, '44', '06:45 PM', '06:50 PM', 'Friday', '225', '98'),
(807, '44', '06:40 PM', '06:45 PM', 'Friday', '224', '98'),
(806, '44', '06:35 PM', '06:40 PM', 'Friday', '223', '98'),
(805, '44', '06:30 PM', '06:35 PM', 'Friday', '222', '98'),
(804, '44', '06:25 PM', '06:30 PM', 'Friday', '221', '98'),
(803, '44', '06:20 PM', '06:25 PM', 'Friday', '220', '98'),
(802, '44', '06:15 PM', '06:20 PM', 'Friday', '219', '98'),
(801, '44', '06:10 PM', '06:15 PM', 'Friday', '218', '98'),
(800, '44', '06:05 PM', '06:10 PM', 'Friday', '217', '98'),
(799, '44', '06:00 PM', '06:05 PM', 'Friday', '216', '98'),
(798, '44', '05:55 PM', '06:00 PM', 'Friday', '215', '98'),
(797, '44', '05:50 PM', '05:55 PM', 'Friday', '214', '98'),
(796, '44', '05:45 PM', '05:50 PM', 'Friday', '213', '98'),
(795, '44', '05:40 PM', '05:45 PM', 'Friday', '212', '98'),
(794, '44', '05:35 PM', '05:40 PM', 'Friday', '211', '98'),
(793, '44', '05:30 PM', '05:35 PM', 'Friday', '210', '98'),
(792, '44', '05:25 PM', '05:30 PM', 'Friday', '209', '98'),
(791, '44', '05:20 PM', '05:25 PM', 'Friday', '208', '98'),
(790, '44', '05:15 PM', '05:20 PM', 'Friday', '207', '98'),
(789, '44', '05:10 PM', '05:15 PM', 'Friday', '206', '98'),
(788, '44', '05:05 PM', '05:10 PM', 'Friday', '205', '98'),
(787, '44', '05:00 PM', '05:05 PM', 'Friday', '204', '98'),
(786, '44', '04:55 PM', '05:00 PM', 'Friday', '203', '98'),
(785, '44', '04:50 PM', '04:55 PM', 'Friday', '202', '98'),
(784, '44', '04:45 PM', '04:50 PM', 'Friday', '201', '98'),
(844, '44', '12:45 PM', '12:50 PM', 'Saturday', '153', '98'),
(845, '44', '12:50 PM', '12:55 PM', 'Saturday', '154', '98'),
(846, '44', '12:55 PM', '01:00 PM', 'Saturday', '155', '98'),
(847, '44', '01:00 PM', '01:05 PM', 'Saturday', '156', '98'),
(848, '44', '01:05 PM', '01:10 PM', 'Saturday', '157', '98'),
(849, '44', '01:10 PM', '01:15 PM', 'Saturday', '158', '98');

-- --------------------------------------------------------

--
-- Table structure for table `transaction_logs`
--

CREATE TABLE `transaction_logs` (
  `id` int(100) NOT NULL,
  `date_time` varchar(1000) DEFAULT NULL,
  `invoice_id` varchar(1000) DEFAULT NULL,
  `patientname` varchar(1000) DEFAULT NULL,
  `deposit_type` varchar(1000) DEFAULT NULL,
  `payment_gateway` varchar(1000) DEFAULT NULL,
  `action` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL,
  `amount` varchar(1000) DEFAULT NULL,
  `user` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `transaction_logs`
--

INSERT INTO `transaction_logs` (`id`, `date_time`, `invoice_id`, `patientname`, `deposit_type`, `payment_gateway`, `action`, `hospital_id`, `amount`, `user`) VALUES
(628, '10-08-2025 00:35', '662', 'Mr Patient', 'Cash', NULL, 'Added', '98', '500', '992'),
(629, '08-09-2025 12:50', '662', 'Mr Patient', 'Cash', NULL, 'deleted', '98', '500', '992');

-- --------------------------------------------------------

--
-- Table structure for table `treatment`
--

CREATE TABLE `treatment` (
  `id` int(100) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `description` varchar(1000) DEFAULT NULL,
  `code` varchar(255) DEFAULT NULL,
  `hospital_id` int(100) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `treatment`
--

INSERT INTO `treatment` (`id`, `name`, `description`, `code`, `hospital_id`) VALUES
(15, 'Medication', NULL, NULL, 98);

-- --------------------------------------------------------

--
-- Table structure for table `treatment_plans`
--

CREATE TABLE `treatment_plans` (
  `id` int(11) NOT NULL,
  `patient_id` int(11) NOT NULL,
  `doctor_id` varchar(100) DEFAULT NULL,
  `symptoms` text NOT NULL,
  `symptom_analysis` longtext DEFAULT NULL,
  `doctor_input` text DEFAULT NULL,
  `test_results` text DEFAULT NULL,
  `treatment_plan` longtext DEFAULT NULL,
  `prescription` longtext DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(),
  `hospital_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `treatment_plans`
--

INSERT INTO `treatment_plans` (`id`, `patient_id`, `doctor_id`, `symptoms`, `symptom_analysis`, `doctor_input`, `test_results`, `treatment_plan`, `prescription`, `created_by`, `updated_by`, `created_at`, `updated_at`, `hospital_id`) VALUES
(1, 53, NULL, 'Headeace', '**Patient Information:**  \nName: Mr Patient  \nAge: 13 years  \nGender: Male  \nMedical History: Not specified (entry \"dfgdfg\" is not interpretable)\n\n**Presenting Symptom:**  \nHeadache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the limited information (isolated headache in a 13-year-old male), consider the following common and serious causes:\n\n**Primary Headache Disorders:**\n- Tension-type headache\n- Migraine (with or without aura)\n- Cluster headache (less common in this age group)\n\n**Secondary Headache Causes:**\n- Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis)\n- Medication overuse or withdrawal\n- Dehydration\n- Vision problems (e.g., refractive errors)\n- Trauma (concussion, subdural hematoma)\n- Intracranial pathology (e.g., tumor, hydrocephalus, idiopathic intracranial hypertension)\n- Dental or temporomandibular joint (TMJ) issues\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- Detailed history (onset, duration, character, location, associated symptoms, triggers, relieving factors, family history, medication use, trauma, recent infections)\n- Physical examination (vital signs, neurological exam, fundoscopic exam, ENT and dental exam)\n\n**Further Investigations (if indicated by history/exam):**\n- CBC, CRP/ESR (if infection or inflammation suspected)\n- Lumbar puncture (if meningitis/encephalitis suspected)\n- Brain imaging (CT/MRI) if:\n  - Abnormal neurological findings\n  - Sudden, severe (\"worst ever\") headache\n  - Signs of raised intracranial pressure\n  - Headache worsening over time\n  - Headache with vomiting, visual changes, or altered consciousness\n\n---\n\n### 3. Urgency Level\n\n**Medium**  \n- Most headaches in this age group are benign, but a thorough assessment is needed to rule out serious causes.\n- **Urgency increases to High** if any red flags (see below) are present.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- Isolated headache in a 13-year-old is most often due to benign causes (migraine, tension-type).\n- Lack of associated symptoms (fever, neck stiffness, vomiting, visual changes, altered consciousness) in the provided information.\n- No trauma or significant medical history provided.\n- Detailed history and examination are essential to guide further workup.\n\n---\n\n### 5. Red Flags to Watch For\n\n- Sudden onset, severe (\"thunderclap\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Headache with vomiting, especially in the morning or with position changes (raised intracranial pressure)\n- Focal neurological deficits (weakness, vision changes, altered consciousness)\n- Headache worsening over time or with exertion/coughing/straining\n- Headache after trauma\n- Headache with papilledema on fundoscopic exam\n- Immunosuppression or known malignancy\n\n---\n\n**Summary:**  \nA 13-year-old male presents with headache. Most likely causes are primary headache disorders, but secondary causes must be excluded, especially if red flags are present. Initial workup should focus on detailed history and examination, with further tests guided by findings. Urgency is medium unless red flags are identified, in which case urgent evaluation is warranted.\n\n**Recommendation:**  \nAdvise prompt clinical assessment by a healthcare professional to obtain a full history, perform a physical and neurological exam, and determine the need for further investigation.', 'Acidity', 'found nothing', 'Certainly. Here is a comprehensive, structured treatment plan for Mr Patient, a 13-year-old male presenting with headache, with no abnormal findings on initial evaluation and a possible diagnosis of \"acidity\" (likely referring to dyspepsia or gastroesophageal reflux as a possible trigger).\n\n---\n\n### 1. Primary Diagnosis\n\n**Primary Headache Disorder (most likely Tension-Type Headache or Migraine)**\n- With possible association to gastrointestinal symptoms (dyspepsia/\"acidity\") as a trigger.\n\n**Secondary causes have been considered and are less likely based on normal test results and absence of red flags.**\n\n---\n\n### 2. Treatment Goals\n\n- Relieve acute headache symptoms.\n- Prevent recurrence and reduce headache frequency/severity.\n- Identify and manage potential triggers (including gastrointestinal symptoms).\n- Minimize medication side effects and avoid medication overuse.\n- Educate patient and family on headache management and red flags.\n\n---\n\n### 3. Medication Recommendations\n\n**A. For Headache Relief:**\n- **Paracetamol (Acetaminophen):** 10–15 mg/kg per dose orally every 4–6 hours as needed (maximum 75 mg/kg/day, not to exceed 4 g/day).\n  - *OR*\n- **Ibuprofen:** 5–10 mg/kg per dose orally every 6–8 hours as needed (maximum 40 mg/kg/day, not to exceed 2.4 g/day).\n\n**B. For Associated \"Acidity\" (if symptoms of dyspepsia/reflux are present):**\n- **Antacid (e.g., Calcium carbonate or Magnesium hydroxide):** As per package instructions, short-term use.\n  - *OR*\n- **Proton Pump Inhibitor (PPI):** *Consider only if persistent symptoms and under medical supervision.*\n  - **Omeprazole:** 0.7–3.5 mg/kg/day orally, once daily (max 20 mg/day for children aged 1–16 years).\n\n**Note:** Avoid aspirin in children due to risk of Reye’s syndrome.\n\n---\n\n### 4. Non-Pharmacological Interventions\n\n- **Headache Diary:** Encourage patient to record headache frequency, duration, severity, and possible triggers (including foods, stress, sleep patterns).\n- **Hydration:** Ensure adequate fluid intake.\n- **Regular Meals:** Avoid skipping meals; limit caffeine and trigger foods (e.g., chocolate, processed foods).\n- **Sleep Hygiene:** Maintain consistent sleep schedule.\n- **Stress Management:** Teach relaxation techniques (deep breathing, mindfulness).\n- **Screen Time:** Limit excessive use of screens/devices.\n- **Posture:** Encourage good posture, especially during study or device use.\n- **Physical Activity:** Encourage regular exercise.\n\n---\n\n### 5. Follow-Up Schedule\n\n- **Initial follow-up:** 1–2 weeks to assess response to treatment and review headache diary.\n- **Subsequent follow-up:** Every 1–3 months, or sooner if symptoms worsen or red flags develop.\n- **Immediate review:** If any red flag symptoms occur (see below).\n\n---\n\n### 6. Monitoring Parameters\n\n- Headache frequency, duration, and severity (via diary).\n- Response to medications and any side effects.\n- Presence of new or worsening symptoms (especially red flags).\n- Impact on school attendance, activities, and quality of life.\n- Adherence to non-pharmacological strategies.\n\n---\n\n### 7. Patient Education Points\n\n- Most headaches in children are benign and manageable.\n- Importance of identifying and avoiding triggers.\n- Proper use of medications (do not exceed recommended dosages; avoid overuse).\n- When to seek urgent care (see red flags below).\n- Importance of regular follow-up.\n- Lifestyle modifications can significantly reduce headache frequency and severity.\n\n---\n\n### 8. Potential Complications to Watch For\n\n- Medication overuse headache (from frequent use of analgesics).\n- Development of chronic daily headache.\n- Adverse effects from medications (e.g., GI upset, allergic reactions).\n- Missed diagnosis of secondary headache (if new symptoms develop).\n- School absenteeism or impaired quality of life.\n\n**Red Flags—Seek Immediate Medical Attention if:**\n- Sudden, severe (\"worst ever\") headache.\n- Headache with fever, neck stiffness, photophobia, or altered mental status.\n- Persistent vomiting, especially in the morning.\n- Visual changes, double vision, or loss of vision.\n- Focal neurological deficits (weakness, numbness, difficulty speaking).\n- Headache after trauma.\n- Headache progressively worsening over days/weeks.\n\n---\n\n**Summary:**  \nMr Patient’s headache is most likely primary (tension-type or migraine), possibly triggered by gastrointestinal symptoms. Initial management is symptomatic, with attention to lifestyle and trigger identification. Close follow-up is essential to monitor for complications or evolving symptoms. Escalate care if red flags appear.\n\n**Always advise review by a healthcare professional for ongoing assessment and management.**', 'Certainly! Below is a sample professional prescription based on the provided treatment plan.  \n**Note:** This is a sample template. All prescriptions must be reviewed and signed by a licensed healthcare provider before dispensing.\n\n---\n\n**[Clinic Name / Logo]**  \n[Clinic Address]  \n[Clinic Phone Number]  \n\n---\n\n**Prescription**\n\n**Patient Name:** Mr Patient  \n**Age/Sex:** 13 years / Male  \n**Date:** 2025-09-06  \n**Prescription No.:** [To be filled by clinic]\n\n---\n\n**Diagnosis:**  \nPrimary Headache Disorder (Tension-Type or Migraine), possible dyspepsia (\"acidity\") as trigger\n\n---\n\n**Rx:**\n\n1. **Paracetamol 500 mg tablets**  \n   - **Dose:** 1 tablet orally every 4–6 hours as needed for headache  \n   - **Maximum:** Do not exceed 4 tablets (2 g) in 24 hours  \n   - **Duration:** 5 days as needed  \n   - **Instructions:** Take with food or water. Do not exceed recommended dose. If headache persists or worsens, seek medical advice.\n\n   *OR (if preferred/if not contraindicated):*\n\n   **Ibuprofen 200 mg tablets**  \n   - **Dose:** 1 tablet orally every 6–8 hours as needed for headache  \n   - **Maximum:** Do not exceed 6 tablets (1.2 g) in 24 hours  \n   - **Duration:** 5 days as needed  \n   - **Instructions:** Take with food. Do not exceed recommended dose. Avoid if history of allergy to NSAIDs or stomach ulcers.\n\n2. **Antacid Chewable Tablets (e.g., Calcium carbonate 500 mg)**  \n   - **Dose:** 1 tablet orally when experiencing acidity symptoms  \n   - **Maximum:** As per package instructions (do not exceed recommended dose)  \n   - **Duration:** As needed, up to 7 days  \n   - **Instructions:** Chew thoroughly. If symptoms persist >7 days, consult doctor.\n\n   *If symptoms of acidity/dyspepsia persist >7 days or are severe, consider:*\n\n   **Omeprazole 10 mg capsules**  \n   - **Dose:** 1 capsule orally once daily, 30 minutes before breakfast  \n   - **Duration:** 2 weeks  \n   - **Instructions:** Swallow whole with water. Do not crush or chew. Use only under medical supervision.\n\n---\n\n**Instructions for Patient/Parent:**\n\n- Keep a headache diary (record frequency, duration, severity, and possible triggers).\n- Maintain regular meals, hydration, and sleep schedule.\n- Limit caffeine and avoid known trigger foods.\n- Practice relaxation techniques and limit screen time.\n- Return for follow-up in 1–2 weeks or sooner if symptoms worsen.\n- **Seek immediate medical attention if any red flag symptoms develop:**  \n  - Sudden severe headache, persistent vomiting, visual changes, weakness, fever, neck stiffness, altered consciousness, or headache after trauma.\n\n---\n\n**Prescribing Physician:**  \n_____________________________  \n(Signature & Name)  \n[Medical Registration Number]  \n\n**Clinic Stamp:** ___________________  \n\n**Date:** 2025-09-06\n\n---\n\n**Note:**  \nThis prescription is valid only when signed by a licensed healthcare provider. Dosages may need adjustment based on patient’s weight and clinical response. Always consult your doctor or pharmacist before starting any new medication.  \n\n---', 992, 992, '2025-09-06 19:38:47', '2025-09-06 19:41:03', 98),
(2, 53, NULL, 'headace', '**Patient Information:**  \nName: Mr Patient  \nAge: 13 years  \nGender: Male  \nMedical History: Not specified (text appears non-informative)\n\n**Current Symptom:**  \nHeadache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nIn a 13-year-old male presenting with headache, consider the following differentials:\n\n- **Primary Headaches**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headaches**\n  - Viral or bacterial infections (e.g., sinusitis, upper respiratory tract infection, meningitis)\n  - Medication overuse or withdrawal\n  - Refractive errors (visual strain)\n  - Trauma (concussion, subdural/epidural hematoma)\n  - Intracranial mass lesion (tumor, abscess)\n  - Idiopathic intracranial hypertension\n  - Hypertension\n  - Temporal arteritis (rare in this age group)\n  - Dental or temporomandibular joint (TMJ) issues\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial evaluation should be guided by history and physical examination.**  \nBased on the limited information, consider:\n\n- **Basic Assessment:**\n  - Full neurological examination\n  - Vital signs (including blood pressure)\n  - Fundoscopy (to check for papilledema)\n  - Sinus examination\n\n- **Further Investigations (if indicated by history/exam):**\n  - CBC, CRP/ESR (if infection or inflammation suspected)\n  - Urinalysis (if systemic symptoms)\n  - CT/MRI brain (if red flags present or abnormal neuro exam)\n  - Lumbar puncture (if meningitis or subarachnoid hemorrhage suspected)\n  - Vision assessment (if visual symptoms)\n\n---\n\n### 3. Urgency Level\n\n**Low to Medium** (based on current information)\n\n- **Low** if headache is mild, intermittent, and not associated with red flags.\n- **Medium to High** if any red flags or abnormal findings are present (see below).\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **History is critical:** Onset, duration, character, location, associated symptoms (nausea, vomiting, photophobia, phonophobia, visual changes, fever, neck stiffness, recent trauma, etc.).\n- **Family history:** Migraines, neurological disorders.\n- **Medication history:** Recent changes, overuse.\n- **Social/psychological factors:** School stress, sleep patterns.\n\n---\n\n### 5. Red Flags to Watch For\n\nImmediate further evaluation is warranted if any of the following are present:\n\n- Sudden, severe (\"thunderclap\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis)\n- Focal neurological deficits (weakness, vision loss, altered consciousness)\n- Papilledema (suggesting raised intracranial pressure)\n- Headache worsened by Valsalva, lying down, or in the morning\n- Recent significant head trauma\n- Headache with vomiting, especially projectile\n- Change in headache pattern or progressively worsening headaches\n- Immunosuppression or known malignancy\n\n---\n\n**Summary:**  \nA 13-year-old male with headache requires a thorough history and physical examination to distinguish between primary and secondary causes. Most headaches in this age group are benign, but red flags must be excluded. If any concerning features are present, urgent neuroimaging and specialist referral are indicated.\n\n**Recommendation:**  \nEncourage prompt evaluation by a healthcare professional for detailed assessment and management.', 'acidity', 'no test reqiired', 'Certainly. Based on the information provided—13-year-old male, presenting with headache, and the clinical input suggesting “acidity” (likely referring to dyspepsia or gastroesophageal reflux as a possible etiology), with no tests required and no red flags identified—here is a comprehensive, structured treatment plan:\n\n---\n\n## 1. Primary Diagnosis\n\n**Probable Diagnosis:**  \n*Headache secondary to gastrointestinal acidity (dyspepsia-related headache)*\n\n- Other primary or secondary causes of headache appear less likely based on the absence of red flags and clinical input.\n- If symptoms change, further evaluation is warranted.\n\n---\n\n## 2. Treatment Goals\n\n- Relieve headache symptoms.\n- Address underlying gastrointestinal acidity.\n- Prevent recurrence.\n- Monitor for development of red flag symptoms.\n- Educate patient and family regarding symptom management and warning signs.\n\n---\n\n## 3. Medication Recommendations\n\n**A. For Headache Relief (as needed):**\n- **Paracetamol (Acetaminophen):**  \n  - Dose: 10–15 mg/kg per dose orally every 4–6 hours as needed (maximum 60 mg/kg/day or 3 g/day, whichever is lower).\n- **OR Ibuprofen:**  \n  - Dose: 5–10 mg/kg per dose orally every 6–8 hours as needed (maximum 40 mg/kg/day or 2.4 g/day, whichever is lower).\n- Avoid aspirin due to risk of Reye’s syndrome in children.\n\n**B. For Acidity (if symptoms of dyspepsia/reflux are present):**\n- **Antacid (e.g., calcium carbonate, magnesium hydroxide):**  \n  - Dose: As per product instructions, typically 5–10 mL orally as needed, not exceeding recommended daily dose.\n- **OR H2 Blocker (e.g., Ranitidine):**  \n  - Dose: 2–4 mg/kg/day in 1–2 divided doses (maximum 300 mg/day).\n- **OR Proton Pump Inhibitor (e.g., Omeprazole):**  \n  - Dose: 0.7–3.5 mg/kg/day orally, given once daily (maximum 20 mg/day for children 1–16 years).\n\n**Duration:**  \n- Symptomatic treatment for 3–7 days; reassess if symptoms persist or worsen.\n\n**Note:**  \n- Use the lowest effective dose for the shortest duration.\n- Avoid NSAIDs if GI symptoms are prominent.\n\n---\n\n## 4. Non-Pharmacological Interventions\n\n- **Lifestyle and Dietary Modifications:**\n  - Avoid trigger foods (spicy, fatty, acidic foods, caffeine, carbonated beverages).\n  - Encourage regular, small meals.\n  - Avoid eating late at night.\n  - Maintain adequate hydration.\n  - Encourage regular sleep patterns.\n- **Headache Hygiene:**\n  - Ensure adequate sleep and hydration.\n  - Encourage stress management and relaxation techniques.\n  - Limit screen time.\n- **Positioning:**\n  - Elevate head of bed if reflux symptoms are present.\n\n---\n\n## 5. Follow-up Schedule\n\n- **Initial follow-up:**  \n  - Within 1 week to assess symptom resolution.\n- **Earlier review:**  \n  - If symptoms worsen, new symptoms develop, or red flags appear.\n- **Ongoing:**  \n  - As needed, based on symptom recurrence or persistence.\n\n---\n\n## 6. Monitoring Parameters\n\n- Symptom diary (headache frequency, severity, duration, associated symptoms).\n- Monitor for side effects of medications (e.g., GI upset, allergic reactions).\n- Watch for development of red flag symptoms (see below).\n- Adherence to lifestyle modifications.\n\n---\n\n## 7. Patient Education Points\n\n- Explain the likely benign nature of symptoms based on current assessment.\n- Advise on proper medication use (dosage, frequency, duration).\n- Discuss dietary and lifestyle modifications to reduce acidity and prevent headaches.\n- Instruct to seek immediate medical attention if any of the following occur:\n  - Sudden, severe headache\n  - Persistent vomiting\n  - Visual changes\n  - Neck stiffness or photophobia\n  - Focal neurological deficits (weakness, numbness, speech changes)\n  - Altered consciousness\n  - Headache worsened by lying down or in the morning\n  - Any other concerning symptoms\n\n---\n\n## 8. Potential Complications to Watch For\n\n- Progression to chronic or recurrent headache\n- Medication overuse headache\n- Worsening or persistent GI symptoms (possible gastritis, ulceration)\n- Development of red flag symptoms indicating secondary headache (e.g., meningitis, intracranial pathology)\n- Adverse effects from medications (hepatic, renal, GI)\n\n---\n\n**Summary:**  \nThis 13-year-old male with headache likely secondary to acidity should be managed with supportive care, symptomatic medications, and lifestyle modifications. Close monitoring for red flag symptoms is essential. If symptoms persist or worsen, or if new concerning features develop, prompt re-evaluation and further investigation are warranted.\n\n**Always recommend consultation with a healthcare professional for ongoing assessment and management.**', 'Certainly! Below is a sample professional prescription based on your treatment plan. Please note: This is a template for educational purposes only. All prescriptions must be reviewed and signed by a licensed healthcare provider.\n\n---\n\n**[Clinic Name/Logo]**  \n[Clinic Address]  \n[Clinic Phone Number]  \n\n---\n\n**Patient Name:** Mr Patient  \n**Age/Sex:** 13 years / Male  \n**Date:** 2025-09-06  \n**Prescription No.:** 001-2025\n\n---\n\n### Prescription\n\n**1. Paracetamol 500 mg tablets**  \n- **Sig:** Take 1 tablet orally every 6 hours as needed for headache.  \n- **Maximum:** Do not exceed 4 doses (2 g) in 24 hours.  \n- **Duration:** Up to 5 days or as needed for symptom relief.\n\n**OR**\n\n**Ibuprofen 200 mg tablets**  \n- **Sig:** Take 1 tablet orally every 8 hours as needed for headache.  \n- **Maximum:** Do not exceed 3 doses (600 mg) in 24 hours.  \n- **Duration:** Up to 5 days or as needed for symptom relief.  \n- **Note:** Take with food. Avoid if stomach pain worsens.\n\n---\n\n**2. Antacid Suspension (e.g., Calcium Carbonate/Magnesium Hydroxide)**  \n- **Sig:** Take 10 mL orally as needed for acidity or stomach discomfort, up to 3 times daily.  \n- **Duration:** Up to 7 days.\n\n**OR**\n\n**Omeprazole 20 mg capsules**  \n- **Sig:** Take 1 capsule orally once daily, 30 minutes before breakfast.  \n- **Duration:** 7 days.  \n- **Note:** Swallow whole; do not crush or chew.\n\n---\n\n### Instructions\n\n- Use only one pain reliever (Paracetamol **or** Ibuprofen) as needed.\n- Use either antacid **or** omeprazole for acidity, not both.\n- Avoid spicy, fatty, or acidic foods; eat small, regular meals.\n- Maintain hydration and regular sleep.\n- Monitor for any side effects or new symptoms.\n- **Seek immediate medical attention if:** severe headache, persistent vomiting, visual changes, neck stiffness, weakness, or any new concerning symptoms develop.\n\n---\n\n**Follow-up:**  \nReturn to clinic in 1 week or sooner if symptoms worsen.\n\n---\n\n**Prescribing Physician:** ___________________________  \n**Signature:** ___________________________  \n**Date:** 2025-09-06\n\n---\n\n**[Clinic Stamp/Seal]**\n\n---\n\n**Note:** This prescription is valid only when signed by a licensed healthcare provider. Always consult your doctor before starting any new medication.', 992, 992, '2025-09-06 19:45:19', '2025-09-06 19:46:16', 98),
(3, 53, NULL, 'headace', '**Patient Information**  \nName: Mr Patient  \nAge: 13 years  \nGender: Male  \nMedical History: Not specified (entry \"dfgdfg\" is not interpretable)\n\n**Presenting Symptom:**  \n- Headache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nIn a 13-year-old male presenting with headache, consider the following common and serious causes:\n\n**Primary Headache Disorders:**\n- Migraine (with or without aura)\n- Tension-type headache\n- Cluster headache (rare in this age group)\n\n**Secondary Headache Causes:**\n- Viral or bacterial infection (e.g., sinusitis, upper respiratory infection, meningitis)\n- Medication overuse or withdrawal\n- Refractive error (vision problems)\n- Trauma (concussion, subdural/epidural hematoma)\n- Intracranial mass or space-occupying lesion\n- Hypertension\n- Idiopathic intracranial hypertension (pseudotumor cerebri)\n- Dental problems (e.g., abscess)\n- Dehydration\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- Thorough history and physical examination (including neurological exam, fundoscopic exam)\n- Assessment for associated symptoms: fever, neck stiffness, photophobia, vomiting, visual changes, altered mental status, recent trauma\n\n**Further Investigations (if indicated by history/exam):**\n- CBC, CRP, ESR (if infection or inflammation suspected)\n- Urinalysis (if systemic illness suspected)\n- Lumbar puncture (if meningitis/encephalitis suspected)\n- CT/MRI brain (if red flags present, abnormal neuro exam, or suspicion for mass/bleed)\n- Ophthalmologic evaluation (if visual symptoms or papilledema)\n- Blood pressure measurement\n\n---\n\n### 3. Urgency Level\n\n**Medium** (based on current information)\n\n- **High urgency** if any red flags (see below) are present.\n- **Low urgency** if headache is mild, intermittent, and without concerning features.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- Symptom description is limited; further detail is needed regarding onset, duration, character, location, severity, aggravating/relieving factors, associated symptoms (fever, nausea, vomiting, photophobia, phonophobia, visual changes, neck stiffness, recent trauma, etc.).\n- No past medical history or medication use provided.\n- No mention of recent illness or trauma.\n- No neurological symptoms or signs described.\n\n---\n\n### 5. Red Flags to Watch For\n\nImmediate evaluation is warranted if any of the following are present:\n\n- Sudden, severe (\"worst ever\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Altered mental status, confusion, seizures\n- Focal neurological deficits (weakness, numbness, vision loss, ataxia)\n- Papilledema or visual changes\n- Headache triggered by Valsalva, cough, or exertion\n- Recent head trauma\n- Persistent vomiting\n- Headache waking patient from sleep or worse in the morning\n- Immunosuppression or known malignancy\n\n---\n\n**Summary:**  \nHeadache in a 13-year-old male is most often benign (migraine, tension-type), but secondary causes must be excluded, especially if red flags are present. A detailed history and physical examination are essential. If any red flags or abnormal findings are present, urgent neuroimaging and further workup are indicated.\n\n**Recommendation:**  \nObtain a detailed history and perform a focused physical and neurological examination. Escalate care if any red flags are identified. Always consult with a healthcare professional for diagnosis and management.', 'acidity', 'no test reqiired', 'Certainly. Based on the information provided:\n\n- **Patient:** 13-year-old male\n- **Presenting symptom:** Headache\n- **Doctor’s clinical input:** Acidity (suggesting a possible diagnosis of headache secondary to dyspepsia/gastritis/GERD)\n- **No red flags or abnormal findings reported**\n- **No tests required at this time**\n\n---\n\n## 1. Primary Diagnosis\n\n**Headache secondary to gastrointestinal acidity (dyspepsia/GERD-related headache)**\n\n- This is a diagnosis of exclusion; ensure no red flags or alternative causes are present.\n- If symptoms change or do not improve, reassess for primary headache disorders or secondary causes.\n\n---\n\n## 2. Treatment Goals\n\n- Relieve headache and associated gastrointestinal symptoms\n- Prevent recurrence\n- Identify and avoid triggers\n- Monitor for emergence of red flags or alternative diagnoses\n\n---\n\n## 3. Medication Recommendations\n\n### a. For Acidity (Dyspepsia/GERD)\n- **Proton Pump Inhibitor (PPI):**  \n  - *Omeprazole* 20 mg orally once daily, 30 minutes before breakfast, for 2–4 weeks  \n  - OR\n- **H2 Receptor Antagonist:**  \n  - *Ranitidine* 75–150 mg orally twice daily (if PPI not tolerated; note: ranitidine availability varies due to recalls)\n\n### b. For Headache (Symptomatic Relief)\n- **Acetaminophen (Paracetamol):**  \n  - 10–15 mg/kg per dose orally every 4–6 hours as needed (maximum 75 mg/kg/day, not exceeding 3,000 mg/day)\n  - *Avoid NSAIDs* if significant gastritis or peptic symptoms\n\n### c. *Avoid*:\n- NSAIDs (e.g., ibuprofen, aspirin) due to potential for worsening gastric symptoms\n\n---\n\n## 4. Non-Pharmacological Interventions\n\n- Encourage small, frequent meals; avoid large, fatty, or spicy meals\n- Avoid known triggers: carbonated drinks, caffeine, chocolate, citrus, tomato-based foods\n- Elevate head of bed if symptoms are worse at night\n- Encourage adequate hydration\n- Stress management techniques (relaxation, mindfulness)\n- Ensure regular sleep schedule\n- Limit screen time, especially before bed\n\n---\n\n## 5. Follow-up Schedule\n\n- **Initial follow-up:** 1–2 weeks to assess symptom resolution and medication tolerance\n- **Earlier review:** If symptoms worsen, new symptoms develop, or red flags appear\n- **Long-term:** If symptoms persist >4 weeks or recur frequently, consider referral to pediatrician or gastroenterologist\n\n---\n\n## 6. Monitoring Parameters\n\n- Resolution of headache and GI symptoms\n- Medication side effects (abdominal pain, diarrhea, rash, etc.)\n- Signs of GI bleeding (hematemesis, melena)\n- Emergence of red flag symptoms (see below)\n\n---\n\n## 7. Patient Education Points\n\n- Explain likely link between acidity and headache\n- Review medication use (dose, timing, duration)\n- Advise on dietary and lifestyle modifications\n- Warn about overuse of analgesics (risk of medication overuse headache)\n- Stress importance of reporting new or worsening symptoms\n- Encourage keeping a symptom diary (headache and GI symptoms, triggers)\n\n---\n\n## 8. Potential Complications to Watch For\n\n- Worsening headache or new neurological symptoms (vomiting, visual changes, weakness, confusion)\n- Persistent or severe abdominal pain, vomiting, GI bleeding\n- Medication side effects (allergic reaction, GI upset)\n- Medication overuse headache (if analgesics used excessively)\n\n---\n\n**Note:**  \nIf at any point the patient develops red flag symptoms (see above), urgent medical evaluation is required. If symptoms do not improve or alternative diagnosis is suspected, further workup (including neuroimaging, ophthalmology, or GI referral) may be needed.\n\n**Always consult with a healthcare professional for ongoing management and if there is any uncertainty about the diagnosis or treatment response.**', '**Prescription**\n\n---\n\n**Patient Name:** Mr Patient  \n**Age:** 13 years  \n**Gender:** Male  \n**Date:** 2025-09-06  \n**Prescription No.:** 001\n\n---\n\n**Diagnosis:**  \nHeadache secondary to gastrointestinal acidity (dyspepsia/GERD-related headache)\n\n---\n\n**Medications:**\n\n1. **Omeprazole 20 mg tablet**  \n   - Take 1 tablet by mouth once daily, 30 minutes before breakfast  \n   - Duration: 4 weeks  \n   - **Instructions:** Swallow whole with water. Do not crush or chew. Take at the same time each day.\n\n2. **Acetaminophen (Paracetamol) 500 mg tablet**  \n   - Take 1 tablet by mouth every 6 hours as needed for headache  \n   - Maximum: 4 tablets (2,000 mg) in 24 hours  \n   - Duration: As needed, up to 5 days  \n   - **Instructions:** Do not exceed the maximum daily dose. Take with a small amount of food if stomach upset occurs. Avoid using for more than 5 days without consulting your doctor.\n\n---\n\n**Lifestyle and Dietary Recommendations:**\n\n- Eat small, frequent meals; avoid large, fatty, or spicy foods.\n- Avoid carbonated drinks, caffeine, chocolate, citrus, and tomato-based foods.\n- Elevate the head of the bed if symptoms worsen at night.\n- Drink plenty of water.\n- Practice stress management (relaxation, mindfulness).\n- Maintain a regular sleep schedule.\n- Limit screen time, especially before bed.\n\n---\n\n**Precautions:**\n\n- Do **not** use NSAIDs (such as ibuprofen or aspirin).\n- Contact your doctor immediately if you develop severe headache, vomiting, vision changes, weakness, confusion, severe abdominal pain, vomiting blood, or black stools.\n- Report any medication side effects (rash, abdominal pain, diarrhea).\n- Keep a diary of headache and stomach symptoms and possible triggers.\n\n---\n\n**Follow-up:**  \nReturn for review in 1–2 weeks, or sooner if symptoms worsen or new symptoms develop.\n\n---\n\n**Doctor’s Signature:** ___________________________\n\n**Clinic Name:** _________________________________\n\n**Date:** 2025-09-06\n\n---', 992, 992, '2025-09-06 19:54:35', '2025-09-06 19:55:21', 98),
(4, 53, NULL, 'headace', '**Patient Analysis**\n\n**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (text appears as \"dfgdfg\"; please clarify if possible)\n\n**Presenting Symptom:**  \n- Headache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nFor a 13-year-old male presenting with headache, consider the following common and serious causes:\n\n**Primary Headache Disorders:**\n- Migraine (with or without aura)\n- Tension-type headache\n- Cluster headache (less common in this age group)\n\n**Secondary Headache Causes:**\n- Viral or bacterial infection (e.g., sinusitis, upper respiratory infection, meningitis)\n- Medication overuse headache\n- Vision problems (refractive errors)\n- Trauma (concussion, subdural/epidural hematoma)\n- Intracranial mass lesion (rare, but important to rule out)\n- Hypertension\n- Dehydration\n- Sleep disorders\n- Dental issues (e.g., temporomandibular joint dysfunction)\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Workup:**\n- Detailed history and physical examination (including neurological exam)\n- Assessment of headache characteristics: onset, duration, frequency, severity, location, associated symptoms (nausea, vomiting, photophobia, phonophobia, visual changes, fever, neck stiffness, recent trauma, etc.)\n\n**Further Investigations (if indicated by history/exam):**\n- Fundoscopy (to check for papilledema)\n- Blood pressure measurement\n- Vision assessment\n- Sinus examination\n\n**If red flags or abnormal findings are present:**\n- Neuroimaging (MRI or CT brain)\n- Lumbar puncture (if meningitis or subarachnoid hemorrhage suspected)\n- Laboratory tests (CBC, CRP/ESR, electrolytes, as indicated)\n\n---\n\n### 3. Urgency Level\n\n**Medium** (based on current information)\n\n- If headache is isolated, with no red flags or abnormal neurological findings, this is generally a medium urgency case.\n- If any red flags (see below) are present, urgency increases to **High**.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- The description is limited; additional history is essential.\n- Assess for associated symptoms: fever, neck stiffness, photophobia, vomiting, altered mental status, recent trauma, visual changes, or focal neurological deficits.\n- Evaluate for chronicity and pattern (acute, recurrent, chronic).\n- Family history of migraine or other headache disorders.\n- Medication and substance use history.\n- Psychosocial factors (school stress, sleep, etc.).\n\n---\n\n### 5. Red Flags to Watch For\n\n- Sudden, severe (\"thunderclap\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Altered mental status, confusion, or seizures\n- Focal neurological deficits (weakness, vision loss, ataxia)\n- Persistent vomiting\n- Papilledema (suggests increased intracranial pressure)\n- Recent head trauma\n- Headache that awakens from sleep or is worse in the morning\n- Immunosuppression or history of malignancy\n\n---\n\n**Summary:**  \nA 13-year-old male with headache requires a thorough history and examination to distinguish between primary and secondary causes. Most headaches in this age group are benign, but vigilance for red flags is crucial. If any concerning features are present, urgent evaluation and neuroimaging may be warranted.\n\n**Recommendation:**  \nAdvise prompt clinical assessment by a healthcare professional for further evaluation and management.', 'acidity', 'no test reqiired', '**Comprehensive Treatment Plan for Mr Patient (13-year-old Male with Headache, Likely Related to Acidity)**\n\n---\n\n### 1. Primary Diagnosis\n\n**Probable Diagnosis:**  \nGastroesophageal reflux disease (GERD)-related headache (headache associated with gastric acidity/dyspepsia).\n\n**Rationale:**  \n- Headache is the presenting symptom.\n- Clinical input suggests \"acidity\" as a likely cause.\n- No red flags or need for further testing identified.\n- No evidence of primary neurological pathology or infection based on available information.\n\n---\n\n### 2. Treatment Goals\n\n- Relieve headache and associated gastrointestinal symptoms.\n- Prevent recurrence by addressing underlying gastric acidity.\n- Rule out and monitor for any red flag symptoms.\n- Educate patient and family regarding symptom management and when to seek urgent care.\n\n---\n\n### 3. Medication Recommendations\n\n**A. For Gastric Acidity:**\n- **Antacid (short-term relief):**  \n  - E.g., Calcium carbonate (Tums): 500–1000 mg orally as needed, up to 2–3 times daily.\n- **H2 Receptor Antagonist:**  \n  - Ranitidine (if available): 75–150 mg orally once or twice daily for 1–2 weeks.  \n  - *Note: Ranitidine availability varies due to regulatory issues; consider alternatives if not available.*\n- **Proton Pump Inhibitor (PPI) (if symptoms persist):**  \n  - Omeprazole: 10–20 mg orally once daily for 2–4 weeks.\n\n**B. For Headache (if needed):**\n- **Acetaminophen:** 10–15 mg/kg/dose orally every 4–6 hours as needed (maximum 75 mg/kg/day or 3 g/day).\n- **Avoid NSAIDs** if significant gastric symptoms are present.\n\n**Duration:**  \n- Short-term (1–2 weeks) for acute management; reassess if symptoms persist.\n\n---\n\n### 4. Non-Pharmacological Interventions\n\n- **Dietary Modifications:**\n  - Avoid spicy, acidic, or fatty foods.\n  - Limit caffeine and carbonated beverages.\n  - Eat smaller, more frequent meals.\n  - Avoid eating within 2–3 hours of bedtime.\n- **Lifestyle:**\n  - Elevate head of bed if symptoms worsen at night.\n  - Encourage adequate hydration.\n  - Promote regular sleep schedule.\n  - Manage stress (school, social factors).\n- **Headache Hygiene:**\n  - Ensure regular meals and sleep.\n  - Limit screen time.\n  - Encourage physical activity.\n\n---\n\n### 5. Follow-Up Schedule\n\n- **Initial follow-up:** 1–2 weeks to assess symptom resolution.\n- **Earlier review:** If symptoms worsen, new symptoms develop, or red flags appear.\n- **Long-term:** As needed, based on symptom recurrence or persistence.\n\n---\n\n### 6. Monitoring Parameters\n\n- Symptom diary: Track frequency, severity, and triggers of headaches and gastric symptoms.\n- Monitor for adverse effects of medications (e.g., constipation with antacids, abdominal pain with PPIs).\n- Watch for red flag symptoms (see below).\n- Assess for improvement in quality of life and school attendance.\n\n---\n\n### 7. Patient Education Points\n\n- Explain the likely link between gastric acidity and headache.\n- Review medication use, dosing, and potential side effects.\n- Emphasize importance of dietary and lifestyle modifications.\n- Advise on headache triggers and avoidance strategies.\n- Instruct on when to seek urgent medical attention (see red flags below).\n- Reassure about the generally benign nature of symptoms if no red flags are present.\n\n---\n\n### 8. Potential Complications to Watch For\n\n- Worsening or persistent headache despite therapy.\n- Development of red flag symptoms:\n  - Sudden, severe headache (“worst ever”)\n  - Headache with fever, neck stiffness, photophobia\n  - Persistent vomiting\n  - Altered mental status, confusion, seizures\n  - Focal neurological deficits\n  - Visual changes\n  - Headache waking from sleep or worse in the morning\n- Gastrointestinal bleeding (hematemesis, melena)\n- Medication side effects (e.g., constipation, abdominal pain)\n\n---\n\n**Summary:**  \nMr Patient’s headache is likely related to gastric acidity. Initial management should focus on symptom relief, lifestyle and dietary modifications, and monitoring for complications. If symptoms persist or red flags develop, re-evaluation and further investigation are warranted.\n\n**Note:**  \nThis plan is based on the information provided. A thorough clinical assessment is essential. Always consult a healthcare professional for definitive diagnosis and management.', 'Medications:\n1. Omeprazole 20 mg - Take 1 tablet by mouth once daily - 2 weeks\n2. Acetaminophen 500 mg - Take 1 tablet by mouth every 6 hours as needed for headache (do not exceed 4 tablets in 24 hours) - As needed\n\nInstructions:\n- Take omeprazole in the morning, at least 30 minutes before breakfast.\n- Take acetaminophen with a glass of water; do not take more than recommended.\n- Avoid spicy, acidic, and fatty foods.\n- Eat smaller, more frequent meals and avoid eating within 2–3 hours of bedtime.\n- Drink plenty of water and maintain a regular sleep schedule.\n\nPrecautions:\n- Do not use ibuprofen or other NSAIDs while you have gastric symptoms.\n- Contact your healthcare provider if you experience severe or worsening headache, vomiting, vision changes, confusion, or black/tarry stools.', 992, 992, '2025-09-06 19:58:34', '2025-09-06 20:02:13', 98),
(5, 53, NULL, 'Insomnia', '**Patient Analysis: Insomnia**\n\n**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (entered as \"dfgdfg\")\n\n**Current Symptom:**  \n- Insomnia\n\n---\n\n### 1. Potential Differential Diagnoses\n\nFor a 13-year-old male presenting with insomnia, consider the following:\n\n- **Primary sleep disorders:**  \n  - Delayed sleep phase syndrome (common in adolescents)  \n  - Restless leg syndrome  \n  - Obstructive sleep apnea (less common but possible)\n\n- **Psychiatric/psychological causes:**  \n  - Anxiety disorders  \n  - Depression  \n  - Adjustment disorder (e.g., stress from school or social situations)\n\n- **Medical causes:**  \n  - Hyperthyroidism  \n  - Asthma or allergies causing nocturnal symptoms  \n  - Chronic pain\n\n- **Medication/substance-related:**  \n  - Stimulant use (including caffeine, ADHD medications)  \n  - Illicit substance use\n\n- **Environmental/behavioral:**  \n  - Poor sleep hygiene (e.g., excessive screen time before bed)  \n  - Irregular sleep schedule\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n- **Clinical assessment:**  \n  - Detailed sleep history (onset, duration, pattern, sleep environment, bedtime routine)  \n  - Review of systems (for psychiatric, respiratory, or endocrine symptoms)  \n  - Medication and substance use history  \n  - Family/social history\n\n- **Screening tools:**  \n  - Sleep diary (1-2 weeks)  \n  - Pediatric Sleep Questionnaire  \n  - Screening for depression/anxiety (e.g., PHQ-9, GAD-7 for adolescents)\n\n- **Physical examination:**  \n  - General exam, including ENT (for signs of sleep apnea), neurological, and thyroid assessment\n\n- **Laboratory tests (if indicated by history/exam):**  \n  - Thyroid function tests  \n  - CBC (if restless leg syndrome suspected, to check for iron deficiency)\n\n- **Further studies (if indicated):**  \n  - Polysomnography (if sleep apnea or periodic limb movement disorder suspected)\n\n---\n\n### 3. Urgency Level\n\n**Medium**  \n- Insomnia in adolescents is common but can significantly impact functioning, mood, and academic performance.  \n- If associated with severe mood symptoms, suicidality, or significant daytime impairment, urgency increases to **High**.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- Insomnia in adolescents is often multifactorial; a thorough history is essential.\n- Consider behavioral and environmental causes first, as these are most common.\n- Screen for depression/anxiety, as these are frequently associated with insomnia in this age group.\n- Assess for signs of sleep-disordered breathing or other medical conditions if suggested by history/exam.\n- Family and school stressors should be explored.\n\n---\n\n### 5. Red Flags to Watch For\n\n- **Suicidal ideation or severe depression**\n- **Hallucinations, mania, or psychosis**\n- **Significant weight loss, night sweats, or systemic symptoms**\n- **Symptoms suggestive of sleep apnea (e.g., loud snoring, witnessed apneas, daytime somnolence)**\n- **Unexplained neurological findings**\n- **Substance abuse**\n\n---\n\n**Note:**  \nThis analysis is based on the limited information provided. A comprehensive evaluation by a healthcare professional is essential to determine the underlying cause and appropriate management.', 'Late night food', 'no test required', 'Certainly. Here is a comprehensive, structured treatment plan for Mr Patient, a 13-year-old male with insomnia, based on the information provided:\n\n---\n\n## 1. Primary Diagnosis\n\n**Likely Diagnosis:**  \n*Behavioral (psychophysiological) insomnia, likely related to poor sleep hygiene (late-night eating), in an adolescent.*\n\n- No evidence of underlying medical, psychiatric, or primary sleep disorder based on current information.\n- No red flags or need for urgent testing at this time.\n\n---\n\n## 2. Treatment Goals\n\n- Restore healthy, age-appropriate sleep duration and quality.\n- Minimize daytime impairment (fatigue, mood, cognitive function).\n- Address and modify contributing behavioral/environmental factors.\n- Prevent chronic insomnia and associated complications.\n\n---\n\n## 3. Medication Recommendations\n\n**First-line:**  \n- **No pharmacological therapy recommended initially.**  \n  - Evidence supports behavioral interventions as first-line in pediatric insomnia.\n  - Medications are reserved for refractory cases or when insomnia is secondary to another disorder.\n\n**If non-pharmacological measures fail after several weeks and insomnia is severe:**  \n- Consider short-term melatonin (off-label in children, discuss risks/benefits with family):\n  - **Melatonin:** 1–3 mg orally, 30–60 minutes before desired bedtime, for up to 2–4 weeks.\n  - Use lowest effective dose; discontinue if ineffective.\n  - Monitor for side effects (headache, dizziness, nausea, morning drowsiness).\n\n**Note:**  \n- Avoid sedative-hypnotics, benzodiazepines, or antihistamines in adolescents due to safety concerns and lack of evidence.\n\n---\n\n## 4. Non-Pharmacological Interventions\n\n**A. Sleep Hygiene Education**\n- Establish a consistent bedtime and wake time, even on weekends.\n- Avoid late-night eating/snacking; finish meals at least 2–3 hours before bedtime.\n- Limit caffeine and stimulant intake, especially after noon.\n- Eliminate screen time (phones, computers, TV) at least 1 hour before bedtime.\n- Create a comfortable, dark, quiet, and cool sleep environment.\n- Use the bed only for sleep (not for studying or screen use).\n- Encourage relaxing pre-sleep routines (reading, quiet music, mindfulness).\n\n**B. Cognitive-Behavioral Strategies**\n- If available, refer for **Cognitive Behavioral Therapy for Insomnia (CBT-I)** adapted for adolescents.\n- Address maladaptive beliefs about sleep (e.g., anxiety about not falling asleep).\n\n**C. Address Contributing Factors**\n- Screen for and address stressors (school, social, family).\n- Encourage regular daytime physical activity, but avoid vigorous exercise within 2 hours of bedtime.\n\n---\n\n## 5. Follow-up Schedule\n\n- **Initial follow-up:** 2–4 weeks after intervention initiation.\n- **Subsequent follow-ups:** Every 4–6 weeks until resolution or stabilization.\n- **Earlier review:** If symptoms worsen, red flags develop, or significant daytime impairment persists.\n\n---\n\n## 6. Monitoring Parameters\n\n- **Sleep diary:** Track bedtime, wake time, sleep onset latency, night awakenings, total sleep time.\n- **Daytime functioning:** School performance, mood, behavior, energy.\n- **Adherence:** To sleep hygiene and behavioral recommendations.\n- **Side effects:** If melatonin or other interventions are used.\n- **Emergence of red flags:** As listed below.\n\n---\n\n## 7. Patient Education Points\n\n- Insomnia is common in adolescents and often related to behavioral/environmental factors.\n- Good sleep hygiene is the cornerstone of treatment.\n- Avoid late-night eating, caffeine, and screen use before bed.\n- Regular routines help reset the body’s internal clock.\n- Medications are rarely needed and should only be used under medical supervision.\n- Seek help if symptoms worsen, mood changes, or if there are concerns about safety.\n\n---\n\n## 8. Potential Complications to Watch For\n\n- **Mood disturbances:** Depression, anxiety, irritability.\n- **Academic decline:** Poor concentration, memory issues, declining grades.\n- **Behavioral problems:** Increased risk-taking, social withdrawal.\n- **Physical health:** Headaches, fatigue, weakened immune response.\n- **Progression:** Development of chronic insomnia or other sleep disorders.\n- **Emergence of red flags:** Suicidal ideation, psychosis, significant weight loss, symptoms of sleep apnea, substance use.\n\n---\n\n**Summary:**  \nMr Patient’s insomnia is most likely behavioral and related to poor sleep hygiene (late-night eating). The primary approach is non-pharmacological, focusing on sleep hygiene and behavioral modification. Medication (melatonin) may be considered only if non-pharmacological measures fail and insomnia is severe. Close follow-up and monitoring for complications or red flags is essential.\n\n**Always consult with a pediatrician or sleep specialist for ongoing evaluation and management.**', 'Medications:\n1. Melatonin - 1 mg orally - 30 to 60 minutes before bedtime - For up to 2–4 weeks if non-pharmacological measures fail and insomnia is severe\n\nInstructions:\n- Take melatonin at the same time each night, 30 to 60 minutes before your desired bedtime.\n- Use the lowest effective dose. Stop if not effective after 1–2 weeks.\n- Keep a sleep diary to track bedtime, wake time, and sleep quality.\n\nPrecautions:\n- Do not exceed the recommended dose.\n- Watch for side effects such as headache, dizziness, nausea, or morning drowsiness.\n- Avoid caffeine and screen use at least 1 hour before bedtime.\n- Maintain regular sleep and wake times, and avoid late-night eating.', 992, 992, '2025-09-06 20:02:55', '2025-09-06 20:03:53', 98);
INSERT INTO `treatment_plans` (`id`, `patient_id`, `doctor_id`, `symptoms`, `symptom_analysis`, `doctor_input`, `test_results`, `treatment_plan`, `prescription`, `created_by`, `updated_by`, `created_at`, `updated_at`, `hospital_id`) VALUES
(6, 53, '44', 'headache', '**Patient Analysis: Headache in 13-year-old Male**\n\n---\n\n**1. Potential Differential Diagnoses**\n\n- **Primary Headache Disorders**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes**\n  - Sinusitis\n  - Viral or bacterial infections (e.g., upper respiratory tract infection, meningitis)\n  - Medication overuse or withdrawal\n  - Trauma (recent head injury)\n  - Vision problems (refractive errors)\n  - Intracranial pathology (tumor, hydrocephalus, idiopathic intracranial hypertension)\n  - Hypertension\n  - Dental issues (malocclusion, abscess)\n  - Sleep disorders\n\n---\n\n**2. Recommended Diagnostic Tests**\n\n- **Initial Evaluation**\n  - Detailed history and physical/neurological examination\n  - Headache diary (onset, duration, frequency, triggers, associated symptoms)\n\n- **Further Investigations (if indicated by history/exam or red flags)**\n  - Neuroimaging (MRI or CT head): If abnormal neurological findings, sudden onset (\"thunderclap\" headache), or suspicion of secondary causes\n  - Lumbar puncture: If meningitis, encephalitis, or subarachnoid hemorrhage suspected\n  - Sinus imaging: If sinusitis suspected\n  - Vision assessment: Eye examination, refraction test\n  - Blood pressure measurement\n  - Laboratory tests: CBC, CRP/ESR (if infection or inflammatory process suspected)\n\n---\n\n**3. Urgency Level**\n\n- **Medium** (based on current information)\n  - If only headache is present without red flags or abnormal findings, outpatient evaluation is appropriate.\n  - **Escalate to High** if any red flags (see below) are present.\n\n---\n\n**4. Key Observations and Clinical Notes**\n\n- Age-appropriate causes (primary headaches, infection, vision issues) should be considered.\n- Lack of detailed history (onset, duration, associated symptoms, family history, trauma, medication use) limits specificity.\n- No mention of fever, neck stiffness, altered mental status, vomiting, visual changes, or focal neurological deficits.\n- Medical history is unclear (\"dfgdfg\"); further clarification needed.\n- A thorough history and physical exam are essential to guide further workup.\n\n---\n\n**5. Red Flags to Watch For**\n\n- Sudden, severe onset (\"worst headache of my life\")\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Altered mental status, confusion, seizures\n- Focal neurological deficits (weakness, numbness, vision loss)\n- Papilledema (on fundoscopy)\n- Headache worse with Valsalva, lying down, or in the morning (raised intracranial pressure)\n- Recent head trauma\n- Headache associated with vomiting (especially without nausea)\n- Immunosuppression or known malignancy\n- Age <6 years (increased risk for secondary causes)\n- Progressive worsening over time\n\n---\n\n**Summary:**  \nThis is a 13-year-old male presenting with headache. The most common causes are primary headache disorders, but secondary causes must be excluded, especially if red flags are present. A detailed history and physical examination are crucial. If any red flags develop, urgent evaluation is warranted. Otherwise, outpatient workup is appropriate.\n\n**Recommendation:**  \nAdvise prompt evaluation by a healthcare professional for further assessment and management.', 'none', '', 'Certainly. Below is a comprehensive treatment plan for a 13-year-old male presenting with headache, based on the provided information and current evidence-based guidelines.\n\n---\n\n## 1. Primary Diagnosis\n\n**Provisional Diagnosis:**  \n*Primary headache disorder* (most likely migraine or tension-type headache), pending further evaluation.\n\n**Note:**  \nSecondary causes must be excluded, especially in the presence of red flags or abnormal findings.\n\n---\n\n## 2. Treatment Goals\n\n- Relieve acute headache symptoms\n- Prevent recurrence and reduce headache frequency/severity\n- Minimize medication side effects and risk of medication overuse headache\n- Identify and manage potential triggers\n- Maintain normal school attendance and activities\n- Monitor for development of red flag symptoms\n\n---\n\n## 3. Medication Recommendations\n\n**A. Acute (Abortive) Treatment**  \n*For infrequent, moderate-to-severe headaches interfering with activities:*\n\n- **Acetaminophen (Paracetamol):**  \n  - Dose: 10–15 mg/kg per dose, every 4–6 hours as needed (max 75 mg/kg/day; do not exceed 4 g/day)\n- **Ibuprofen:**  \n  - Dose: 10 mg/kg per dose, every 6–8 hours as needed (max 40 mg/kg/day; do not exceed 2.4 g/day)\n- **Consider triptans** (e.g., sumatriptan nasal spray) if migraine is diagnosed and refractory to above, under specialist guidance.\n\n**B. Preventive (Prophylactic) Treatment**  \n*Not indicated unless headaches are frequent (>4/month), disabling, or not responsive to acute therapy. If needed, options include:*\n\n- **Amitriptyline:** 0.25–1 mg/kg at bedtime (start low, titrate up)\n- **Topiramate or propranolol:** Consider in consultation with pediatric neurology\n\n**C. Avoid:**\n- Opioids and combination analgesics (risk of overuse and side effects)\n- Frequent use of acute medications (>2–3 days/week) to prevent medication overuse headache\n\n---\n\n## 4. Non-Pharmacological Interventions\n\n- **Headache diary:** Track frequency, duration, triggers, and response to treatment\n- **Lifestyle modifications:**\n  - Regular sleep schedule\n  - Hydration (adequate fluid intake)\n  - Balanced diet, regular meals\n  - Regular physical activity\n  - Stress management/relaxation techniques (e.g., cognitive-behavioral therapy, biofeedback)\n- **Trigger identification and avoidance:** e.g., certain foods, dehydration, stress, screen time\n- **Vision assessment:** Ensure up-to-date vision correction if needed\n\n---\n\n## 5. Follow-up Schedule\n\n- **Initial follow-up:** 2–4 weeks after starting treatment or sooner if symptoms worsen\n- **Ongoing:** Every 3–6 months if stable, or as needed based on symptom control\n- **Urgent review:** If red flag symptoms develop or headaches worsen/progress\n\n---\n\n## 6. Monitoring Parameters\n\n- Headache frequency, duration, and severity (via diary)\n- Medication use (to avoid overuse)\n- Side effects of medications\n- School attendance and participation in activities\n- Signs of secondary headache (see red flags below)\n\n---\n\n## 7. Patient Education Points\n\n- Importance of keeping a headache diary\n- Recognizing and avoiding triggers\n- Proper use of medications (dose, frequency, risks of overuse)\n- When to seek urgent medical attention (see red flags)\n- Role of lifestyle factors in headache management\n- Reassurance regarding prognosis (most primary headaches improve with age and management)\n\n---\n\n## 8. Potential Complications to Watch For\n\n- **Medication overuse headache** (from frequent analgesic use)\n- **Progression to chronic daily headache**\n- **Development of red flag symptoms** (suggesting secondary cause):\n  - Sudden, severe headache\n  - Headache with fever, neck stiffness, altered mental status, or visual changes\n  - Focal neurological deficits\n  - Persistent vomiting\n  - Headache worsening with Valsalva or lying down\n  - Recent head trauma\n- **Impaired school performance or attendance**\n- **Psychological impact** (anxiety, depression)\n\n---\n\n**Note:**  \nThis plan is based on initial presentation and should be adapted as more clinical information becomes available. Always recommend a thorough evaluation by a healthcare professional to confirm diagnosis and guide management.\n\n---\n\n**References:**\n- American Academy of Neurology/Child Neurology Society Guidelines: Pharmacologic Treatment of Pediatric Migraine Headache (2019)\n- NICE Clinical Knowledge Summaries: Headache – children\n- UpToDate: Approach to the child with headache\n\n---\n\n**Consultation with a pediatrician or pediatric neurologist is recommended for confirmation of diagnosis, ongoing management, and if any red flags or atypical features are present.**', 'Medications:\n1. Acetaminophen (Paracetamol) 500 mg tablets – 1 tablet by mouth every 4–6 hours as needed for headache – Do not exceed 4 doses in 24 hours\n\nInstructions:\n- Take with a full glass of water. May take with food if stomach upset occurs.\n- Keep a headache diary to track frequency, duration, and possible triggers.\n- Maintain a regular sleep schedule, eat balanced meals, stay hydrated, and limit screen time.\n\nPrecautions:\n- Do not take more than 4 doses (2,000 mg) of acetaminophen in 24 hours.\n- Avoid using pain medication more than 2–3 days per week to prevent medication overuse headache.\n- Seek medical attention if headaches become severe, occur with fever, neck stiffness, vision changes, weakness, or persistent vomiting.', 992, 992, '2025-09-06 20:20:48', '2025-09-06 20:21:23', 98),
(7, 53, '44', 'Headache', '**Patient Analysis: Headache in a 13-year-old Male**\n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the limited information, the following are common and important causes of headache in adolescents:\n\n- **Primary Headache Disorders**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n- **Secondary Headache Causes**\n  - Viral or bacterial infections (e.g., sinusitis, meningitis)\n  - Medication overuse headache\n  - Refractive errors (vision problems)\n  - Trauma (concussion, subdural hematoma)\n  - Intracranial mass or space-occupying lesion\n  - Idiopathic intracranial hypertension\n  - Hypertension\n  - Dental or temporomandibular joint (TMJ) disorders\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- Detailed history (onset, duration, character, associated symptoms, triggers, family history)\n- Physical examination (including neurological and fundoscopic exam)\n\n**Based on findings, consider:**\n- **Basic investigations:**\n  - CBC, ESR/CRP (if infection or inflammation suspected)\n  - Urinalysis (if systemic illness suspected)\n- **Imaging:**\n  - MRI or CT brain (if red flags present or abnormal neurological findings)\n- **Other:**\n  - Vision assessment (if visual symptoms)\n  - Lumbar puncture (if meningitis or increased intracranial pressure suspected)\n\n---\n\n### 3. Urgency Level\n\n- **Low**: If headache is mild, intermittent, and not associated with red flags.\n- **Medium**: If headache is moderate, persistent, or associated with mild systemic symptoms.\n- **High**: If any red flags are present (see below), or if there is acute onset severe headache.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **Age**: 13 years, adolescent, common age for onset of primary headache disorders (migraine, tension-type).\n- **Gender**: Male (slightly less common for migraine compared to females, but still possible).\n- **History**: No relevant past medical history provided.\n- **Symptoms**: Only \"headache\" reported; no details on duration, severity, frequency, associated symptoms (nausea, vomiting, photophobia, phonophobia, visual changes, fever, neck stiffness, trauma, etc.).\n- **Clinical Note**: Further history and examination are essential to narrow the differential. Inquire about recent infections, trauma, family history of headaches, medication use, and psychosocial factors.\n\n---\n\n### 5. Red Flags to Watch For\n\nImmediate attention is required if any of the following are present:\n\n- Sudden onset \"thunderclap\" headache (worst ever)\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Altered mental status, seizures, focal neurological deficits\n- Papilledema or visual changes\n- Headache worse with Valsalva or lying down (raised intracranial pressure)\n- Recent head trauma\n- Headache waking the patient from sleep or worse in the morning\n- Immunosuppression or known malignancy\n\n---\n\n**Summary:**  \nHeadache in a 13-year-old male is most commonly due to primary headache disorders, but secondary causes must be excluded, especially if red flags are present. A thorough history and physical examination are critical. If any red flags or abnormal findings are present, urgent neuroimaging and further workup are warranted.\n\n**Recommendation:**  \nConsult a healthcare professional for a comprehensive evaluation and management.', '', '', 'Certainly. Below is a comprehensive, structured treatment plan for **Mr Patient**, a 13-year-old male presenting with headache, based on the information provided and standard clinical guidelines. This plan assumes no red flags or abnormal findings are present. If any red flags arise, immediate escalation and further workup are required.\n\n---\n\n## 1. Primary Diagnosis\n\n**Provisional Diagnosis:**  \n*Primary headache disorder* (most likely migraine or tension-type headache), pending further history and examination.\n\n---\n\n## 2. Treatment Goals\n\n- Relieve acute headache symptoms\n- Prevent recurrence or reduce frequency/severity of headaches\n- Minimize medication side effects and avoid medication overuse\n- Identify and manage potential triggers\n- Exclude secondary causes, especially those requiring urgent intervention\n- Maintain normal school, social, and physical activities\n\n---\n\n## 3. Medication Recommendations\n\n**A. Acute Treatment (as needed for headache attacks):**\n\n- **Acetaminophen (Paracetamol):**  \n  - Dose: 10–15 mg/kg orally every 4–6 hours as needed (maximum 75 mg/kg/day or 4 g/day, whichever is lower)\n- **OR Ibuprofen:**  \n  - Dose: 10 mg/kg orally every 6–8 hours as needed (maximum 40 mg/kg/day or 2.4 g/day, whichever is lower)\n- **Consider triptans** (e.g., sumatriptan nasal spray 5–20 mg, max 40 mg/day) *if diagnosis of migraine is confirmed and OTC analgesics are ineffective; only under specialist supervision in pediatric patients.*\n\n**B. Preventive (Prophylactic) Treatment:**  \n- Not indicated unless headaches are frequent (≥4/month), disabling, or unresponsive to acute therapy.\n- Options (to be initiated by a specialist):  \n  - Amitriptyline, topiramate, or propranolol (dosing and selection individualized; not started without specialist input).\n\n**C. Duration:**  \n- Acute medications: Use at onset of headache, limit to ≤2–3 days/week to avoid medication overuse headache.\n\n---\n\n## 4. Non-Pharmacological Interventions\n\n- **Lifestyle modifications:**\n  - Maintain regular sleep schedule\n  - Hydration: Encourage adequate fluid intake\n  - Regular meals, avoid skipping breakfast\n  - Limit caffeine and avoid known dietary triggers\n  - Encourage regular physical activity\n- **Headache diary:**  \n  - Record frequency, duration, severity, potential triggers, and response to treatment\n- **Stress management:**  \n  - Relaxation techniques, cognitive behavioral therapy (CBT) if stress or anxiety is a factor\n- **Screen time:**  \n  - Limit excessive use of screens/devices\n\n---\n\n## 5. Follow-up Schedule\n\n- **Initial follow-up:** 2–4 weeks after starting treatment or sooner if symptoms worsen\n- **Subsequent follow-up:** Every 2–3 months, or as needed based on symptom control\n- **Urgent review:** If red flag symptoms develop\n\n---\n\n## 6. Monitoring Parameters\n\n- Headache frequency, severity, and duration (via diary)\n- Medication use (to avoid overuse)\n- Side effects of medications\n- School attendance and participation in activities\n- Signs of secondary headache/red flags\n\n---\n\n## 7. Patient Education Points\n\n- Most headaches in adolescents are benign and manageable\n- Importance of regular routines (sleep, meals, hydration)\n- Avoid overuse of pain medications\n- Recognize and report red flag symptoms (see below)\n- Use headache diary to help identify triggers and monitor progress\n- When to seek immediate medical attention\n\n---\n\n## 8. Potential Complications to Watch For\n\n- **Medication overuse headache** (from frequent analgesic use)\n- **Progression to chronic daily headache**\n- **Impact on school performance and psychosocial well-being**\n- **Development of secondary headache** (if underlying cause missed)\n- **Adverse effects from medications** (e.g., GI upset, drowsiness)\n\n---\n\n### **Red Flags (Seek Immediate Medical Attention if):**\n\n- Sudden, severe (\"worst ever\") headache\n- Headache with fever, neck stiffness, photophobia\n- Altered consciousness, seizures, focal neurological deficits\n- Persistent vomiting, visual changes, papilledema\n- Headache worse with lying down or Valsalva\n- Headache after head trauma\n- Headache waking from sleep or worse in the morning\n\n---\n\n**Note:**  \nThis plan should be individualized based on further clinical assessment and test results. Consultation with a pediatrician or pediatric neurologist is recommended for diagnostic uncertainty, frequent or severe headaches, or if preventive therapy is considered.\n\n---\n\n**References:**  \n- American Academy of Neurology/American Headache Society Guidelines (2019)\n- NICE Clinical Knowledge Summaries: Headache – children (2022)\n- UpToDate: Approach to the child with headache (2023)\n\n---\n\n**Always consult a healthcare professional for diagnosis and tailored management.**', 'Medications:\n1. Acetaminophen (Paracetamol) - 500 mg orally - Every 4–6 hours as needed for headache - Maximum 5 doses in 24 hours, use for up to 3 days per week\n\nInstructions:\n- Take with a full glass of water. May take with food if stomach upset occurs.\n- Do not exceed the maximum daily dose (75 mg/kg/day or 4 g/day, whichever is lower).\n- Use at the onset of headache. If headache persists or worsens, seek medical advice.\n- Keep a headache diary to track frequency, severity, and possible triggers.\n\nPrecautions:\n- Do not use acetaminophen more than 2–3 days per week to avoid medication overuse headache.\n- Seek immediate medical attention if headache is sudden and severe, associated with fever, neck stiffness, vomiting, vision changes, weakness, or confusion.\n- Maintain regular sleep, meals, hydration, and limit screen time. Avoid known headache triggers.', 992, 992, '2025-09-06 20:25:37', '2025-09-06 20:26:20', 98),
(8, 53, '44', 'headache', '**Patient Analysis: Headache in a 13-year-old Male**\n\n---\n\n**1. Potential Differential Diagnoses**\n\n- **Primary Headache Disorders**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes**\n  - Sinusitis\n  - Viral or bacterial infections (e.g., upper respiratory tract infection, meningitis)\n  - Medication overuse headache\n  - Refractive errors (vision problems)\n  - Trauma/concussion\n  - Intracranial pathology (e.g., brain tumor, hydrocephalus, idiopathic intracranial hypertension)\n  - Hypertension\n  - Dehydration\n\n---\n\n**2. Recommended Diagnostic Tests**\n\n*Based on initial presentation of isolated headache, further history and physical examination are essential. Consider:*\n\n- **Basic Workup**\n  - Complete neurological examination\n  - Vital signs (including blood pressure)\n  - Fundoscopic exam (to assess for papilledema)\n  - Assessment for sinus tenderness, neck stiffness\n\n- **If Red Flags or Abnormal Findings:**\n  - Brain imaging (MRI preferred, CT if urgent)\n  - Lumbar puncture (if meningitis or subarachnoid hemorrhage suspected)\n  - Laboratory tests (CBC, CRP/ESR if infection or inflammation suspected)\n  - Vision assessment (refraction, fundoscopy)\n\n---\n\n**3. Urgency Level**\n\n- **Low to Medium** (based on current information: isolated headache, no red flags provided)\n- **High** if any red flags or abnormal neurological findings are present (see below)\n\n---\n\n**4. Key Observations and Clinical Notes**\n\n- Age: 13 years (adolescent)\n- Gender: Male\n- Symptom: Headache (no further details provided)\n- Medical history: Not contributory (no relevant history provided)\n- *Critical missing information*: Onset, duration, frequency, severity, associated symptoms (nausea, vomiting, photophobia, phonophobia, visual changes, fever, neck stiffness, recent trauma, changes in consciousness), family history of migraine, medication use.\n\n---\n\n**5. Red Flags to Watch For**\n\n- Sudden, severe (\"thunderclap\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Focal neurological deficits (weakness, numbness, vision loss, ataxia)\n- Altered mental status, confusion, seizures\n- Papilledema (suggests raised intracranial pressure)\n- Headache worse with lying down, coughing, or Valsalva\n- Recent head trauma\n- Persistent vomiting\n- Headache awakening from sleep or worse in the morning\n- Immunosuppression or cancer history\n\n---\n\n**Summary:**  \nThis adolescent male presents with headache. In the absence of further details or red flags, primary headache disorders (migraine, tension-type) are most likely, but secondary causes must be considered. A thorough history and physical examination are essential. If any red flags are identified, urgent neuroimaging and further workup are warranted. Always recommend prompt evaluation by a healthcare professional for proper diagnosis and management.', '', '', 'Certainly. Below is a comprehensive, evidence-based treatment plan for a 13-year-old male presenting with headache, based on the information provided and in the absence of red flag symptoms or abnormal findings.\n\n---\n\n**1. Primary Diagnosis**  \n*Most likely:*  \n- **Primary Headache Disorder** (Migraine or Tension-Type Headache)  \n*Secondary causes must be excluded by thorough history and examination.*\n\n---\n\n**2. Treatment Goals**\n- Relieve acute headache pain and associated symptoms\n- Minimize headache frequency and severity\n- Prevent headache-related disability (school absence, activity limitation)\n- Identify and manage potential secondary causes\n- Educate patient and family on headache management and red flag symptoms\n\n---\n\n**3. Medication Recommendations**  \n*Assuming no contraindications, allergies, or red flags. Adjust based on clinical findings and patient response.*\n\n**Acute Treatment:**  \n- **Acetaminophen**: 10–15 mg/kg/dose PO every 4–6 hours as needed (max 75 mg/kg/day or 3,000 mg/day)\n- **OR Ibuprofen**: 10 mg/kg/dose PO every 6–8 hours as needed (max 40 mg/kg/day or 2,400 mg/day)\n- **If migraine suspected and not relieved by above:**  \n  - **Sumatriptan nasal spray**: 5–20 mg (based on weight), may repeat once in 2 hours if needed (max 40 mg/24h). *Triptans are approved for adolescents with migraine; use with caution and under specialist guidance.*\n\n**Prophylactic Treatment:**  \n- Not indicated unless headaches are frequent/severe/disabling and not controlled with acute therapy. Consider referral to neurology for prophylactic options (e.g., amitriptyline, propranolol, topiramate).\n\n**Other Considerations:**  \n- Avoid medication overuse (limit acute medications to ≤2–3 days/week).\n\n---\n\n**4. Non-Pharmacological Interventions**\n- **Lifestyle modifications:**\n  - Regular sleep schedule\n  - Adequate hydration\n  - Balanced diet, regular meals\n  - Stress management techniques (relaxation, mindfulness)\n  - Regular physical activity\n- **Headache diary:** Track frequency, severity, triggers, response to treatment\n- **Trigger identification and avoidance:** (e.g., certain foods, dehydration, stress, screen time)\n- **Cold compress or rest in a quiet, dark room** during acute attacks\n\n---\n\n**5. Follow-up Schedule**\n- **Initial follow-up:** 1–2 weeks to assess response to treatment and review headache diary\n- **Subsequent follow-up:** Every 1–3 months, or sooner if symptoms worsen or new symptoms develop\n- **Urgent reassessment:** If red flag symptoms develop at any time\n\n---\n\n**6. Monitoring Parameters**\n- Headache frequency, duration, and severity (via diary)\n- Response to acute and preventive treatments\n- Medication use (to avoid overuse)\n- School attendance and participation in activities\n- Emergence of red flag symptoms or medication side effects\n\n---\n\n**7. Patient Education Points**\n- Importance of regular routines (sleep, meals, hydration)\n- Proper use and dosing of medications\n- Recognition of headache triggers and avoidance strategies\n- When to seek urgent care (see red flags below)\n- Risks of medication overuse headache\n- Reassurance regarding benign nature of most primary headaches in this age group\n\n---\n\n**8. Potential Complications to Watch For**\n- Medication overuse headache\n- Development of chronic daily headache\n- Impact on school performance and psychosocial functioning\n- Emergence of red flag symptoms indicating secondary causes:\n  - Sudden severe headache\n  - Headache with fever, neck stiffness, altered mental status\n  - Focal neurological deficits\n  - Persistent vomiting\n  - Headache waking from sleep or worsening in the morning\n  - Visual changes, papilledema\n\n---\n\n**Note:**  \n- If any red flag symptoms are present or develop, or if the headache is atypical, severe, or refractory to initial management, urgent referral to a pediatrician or neurologist and further diagnostic workup (including neuroimaging) is warranted.\n- This plan should be individualized based on further clinical assessment.\n\n**Always recommend evaluation and ongoing management by a healthcare professional.**', 'Medications:\n1. Acetaminophen - 10–15 mg per kg per dose by mouth every 4–6 hours as needed for headache - Do not exceed 75 mg per kg per day or 3,000 mg per day - As needed\n\nInstructions:\n- Take with a full glass of water. May take with food if stomach upset occurs.\n- Use only when headache is present. Do not use more than 2–3 days per week to avoid medication overuse headache.\n- Keep a headache diary to track frequency, severity, and possible triggers.\n\nPrecautions:\n- Do not exceed the maximum daily dose.\n- Seek medical attention if headaches worsen, become more frequent, or if new symptoms such as fever, neck stiffness, vision changes, persistent vomiting, or weakness develop.', 992, 992, '2025-09-06 20:31:21', '2025-09-06 20:31:48', 98),
(9, 53, '44', 'Headace', '**Patient Analysis**\n\n**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (text appears as \"dfgdfg\")  \n\n**Presenting Symptom:**  \n- Headache  \n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the limited information, but considering the age (adolescent male) and isolated headache, differential diagnoses include:\n\n- **Primary Headache Disorders**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes**\n  - Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis)\n  - Medication overuse headache\n  - Refractive error (vision problems)\n  - Trauma (concussion, subdural hematoma)\n  - Intracranial mass or space-occupying lesion (rare, but important to consider)\n  - Hypertension\n  - Dehydration\n  - Dental or temporomandibular joint (TMJ) issues\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- Detailed history and physical examination, including:\n  - Onset, duration, location, character, and severity of headache\n  - Associated symptoms (nausea, vomiting, photophobia, phonophobia, visual changes, fever, neck stiffness, altered mental status)\n  - Triggers and relieving factors\n  - Family history of headaches/migraines\n  - Recent trauma or illness\n\n**Further Investigations (if indicated by history/exam):**\n- **Ophthalmologic assessment:** Visual acuity, fundoscopic exam\n- **Blood pressure measurement**\n- **Laboratory tests:** CBC, CRP/ESR (if infection or inflammation suspected)\n- **Neuroimaging (CT/MRI):** If red flags present (see below)\n- **Lumbar puncture:** If meningitis or subarachnoid hemorrhage suspected\n\n---\n\n### 3. Urgency Level\n\n- **Low** if headache is mild, chronic, and not associated with red flag symptoms.\n- **Medium to High** if any red flags are present (see below), or if headache is acute, severe, or associated with systemic or neurological symptoms.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **Age-appropriate causes:** Migraine and tension-type headaches are common in adolescents.\n- **Lack of medical history:** No prior conditions noted; further history needed.\n- **Single symptom:** Isolated headache without additional symptoms provided.\n- **History is critical:** Need to clarify onset, pattern, associated symptoms, and any recent trauma or illness.\n\n---\n\n### 5. Red Flags to Watch For\n\nImmediate evaluation is warranted if any of the following are present:\n\n- Sudden, severe (\"thunderclap\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis)\n- Altered mental status, confusion, or loss of consciousness\n- Focal neurological deficits (weakness, vision changes, difficulty speaking)\n- Papilledema (suggesting increased intracranial pressure)\n- Headache worsened by Valsalva maneuver (coughing, straining)\n- Recent head trauma\n- Headache that awakens the patient from sleep or is worse in the morning\n- New onset headache in a patient with cancer, immunosuppression, or coagulopathy\n\n---\n\n**Summary:**  \nThis adolescent male presents with headache. The differential is broad, but primary headache disorders are most likely. Careful history and examination are essential to rule out secondary causes and red flags. If any red flag symptoms are present, urgent evaluation and neuroimaging are indicated.\n\n**Recommendation:**  \nObtain a detailed history and perform a focused neurological examination. If red flags are present, escalate care immediately. Otherwise, manage as per primary headache protocols and monitor for progression or new symptoms.\n\n**Note:** This analysis does not replace clinical judgment or a face-to-face assessment. Please consult a healthcare professional for definitive diagnosis and management.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-07 01:51:10', NULL, 98),
(10, 53, '44', 'Could Fever ', '**Patient Information**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (text \"dfgdfg\" is not interpretable)\n\n**Current Symptoms**  \n- Fever (no further details provided)\n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the limited information (fever in a 13-year-old male), the differential is broad. Common and serious causes include:\n\n- **Viral infections**: Influenza, adenovirus, enterovirus, Epstein-Barr virus (EBV/mononucleosis), COVID-19\n- **Bacterial infections**: Streptococcal pharyngitis, urinary tract infection, pneumonia, meningitis, osteomyelitis, septic arthritis\n- **Other infectious causes**: Tuberculosis, malaria (if relevant travel history), tick-borne diseases\n- **Non-infectious causes**: Autoimmune diseases (e.g., juvenile idiopathic arthritis, SLE), malignancy (e.g., leukemia, lymphoma), drug fever\n- **Miscellaneous**: Heat-related illness, inflammatory conditions\n\n**Note:** The differential would be refined with more information (duration, associated symptoms, exposures, travel, vaccination status, etc.).\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial basic workup (if no clear source is identified):**\n- Complete blood count (CBC) with differential\n- C-reactive protein (CRP) and/or erythrocyte sedimentation rate (ESR)\n- Blood cultures (if febrile >38.5°C or appears unwell)\n- Urinalysis ± urine culture\n- Chest X-ray (if respiratory symptoms)\n- Throat swab (if sore throat)\n- Rapid antigen/RT-PCR for COVID-19 and influenza (if seasonally appropriate)\n- Liver and renal function tests (if systemic illness suspected)\n\n**Further tests as indicated by clinical findings:**\n- Lumbar puncture (if signs of meningitis)\n- Serology for EBV, CMV, etc.\n- Imaging (ultrasound, CT) if localized symptoms or concern for abscess\n\n---\n\n### 3. Urgency Level\n\n**Medium**  \n- Fever in an adolescent is common and often benign, but the urgency increases if the patient appears toxic, has persistent high fever, or develops concerning symptoms (see red flags below).\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **History**: Duration of fever, associated symptoms (cough, sore throat, rash, headache, abdominal pain, dysuria, joint pain, etc.), recent exposures, travel history, vaccination status, recent medications, underlying conditions.\n- **Physical exam**: General appearance (well vs. toxic), vital signs (especially heart rate, blood pressure, respiratory rate), hydration status, focus of infection (ENT, chest, abdomen, joints, skin, neurologic).\n- **Monitoring**: Reassess frequently for progression or new symptoms.\n\n---\n\n### 5. Red Flags to Watch For\n\n- Altered mental status, lethargy, irritability\n- Persistent vomiting, inability to tolerate fluids\n- Signs of meningitis (neck stiffness, photophobia, severe headache)\n- Respiratory distress (tachypnea, retractions, cyanosis)\n- Petechial or purpuric rash\n- Severe abdominal pain, distension\n- Signs of shock (tachycardia, hypotension, poor perfusion)\n- Seizures\n\n---\n\n**Summary:**  \nFever in a 13-year-old male is most commonly due to viral or bacterial infection, but a thorough history and physical are essential to rule out serious causes. Initial workup should be guided by clinical findings. Monitor closely for red flags and escalate care if any are present.\n\n**Note:** This analysis is based on limited information. A comprehensive clinical assessment is essential. Please consult a healthcare professional for further evaluation and management.', NULL, NULL, NULL, 'I\'m sorry, but I need the specific treatment plan or diagnosis to generate a prescription. Please provide the treatment plan or condition to proceed.', 992, 992, '2025-09-07 14:52:37', '2025-09-07 14:53:13', 98),
(11, 53, '44', 'fever, pain, vertigo', '**Patient Analysis**\n\n**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (entered as \"dfgdfg\")\n\n**Current Symptoms:**  \n- Fever  \n- Pain (location not specified)  \n- Vertigo  \n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the combination of fever, pain, and vertigo in a 13-year-old male, possible etiologies include:\n\n**Infectious Causes:**\n- **Acute Otitis Media or Labyrinthitis:** Infection of the middle or inner ear can cause fever, ear pain, and vertigo.\n- **Meningitis/Encephalitis:** CNS infections can present with fever, headache/pain, and vertigo.\n- **Viral Illness (e.g., Influenza):** Systemic viral infections may cause these symptoms.\n- **Mastoiditis:** Complication of otitis media, can present with pain (mastoid region), fever, and vertigo.\n\n**Non-Infectious Causes:**\n- **Migraine (Vestibular Migraine):** Can present with vertigo, pain (headache), and sometimes low-grade fever.\n- **Autoimmune Inner Ear Disease:** Rare, but possible in this age group.\n\n**Other:**\n- **Trauma:** If recent head injury, could present with pain, vertigo, and fever (if secondary infection).\n- **Medication Reaction or Toxin Exposure:** Less likely but possible.\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n- **Physical Examination:** Full neurological and ENT exam (focus on ear, mastoid, nuchal rigidity, focal deficits).\n- **Vital Signs:** Monitor for hemodynamic instability.\n- **Laboratory Tests:**\n  - CBC with differential\n  - CRP/ESR\n  - Blood cultures (if sepsis suspected)\n- **Imaging:**\n  - Head CT/MRI (if CNS infection, trauma, or mastoiditis suspected)\n- **Lumbar Puncture:** If meningitis/encephalitis suspected (after imaging if indicated)\n- **Ear Swab/Culture:** If otitis media/labyrinthitis suspected\n- **Urinalysis:** To rule out systemic infection\n\n---\n\n### 3. Urgency Level\n\n**High**  \n- The combination of fever, pain, and vertigo in a child may indicate a serious infection (e.g., CNS infection, mastoiditis, labyrinthitis) or other acute pathology. Immediate evaluation is warranted.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **Symptom Onset & Duration:** Not specified—important to clarify.\n- **Pain Location:** Not specified—clarify (head, ear, neck, generalized).\n- **Associated Symptoms:** Nausea, vomiting, photophobia, neck stiffness, altered mental status, hearing loss, rash, recent infections or trauma.\n- **Immunization Status:** Not specified—important for risk assessment (e.g., meningococcal, pneumococcal, Hib).\n- **Recent Illnesses or Exposures:** Not specified.\n\n---\n\n### 5. Red Flags to Watch For\n\n- **Altered mental status or confusion**\n- **Neck stiffness or photophobia**\n- **Severe headache**\n- **Focal neurological deficits**\n- **Severe ear pain, swelling behind the ear (mastoiditis)**\n- **Persistent vomiting or inability to tolerate fluids**\n- **Rapidly worsening symptoms**\n- **Signs of sepsis (tachycardia, hypotension, mottled skin)**\n\n---\n\n**Summary:**  \nThis presentation is concerning for a potentially serious underlying condition, such as CNS infection or complicated ear infection. Immediate clinical assessment is required. Stabilize airway, breathing, and circulation as needed, and initiate urgent diagnostic workup and empiric therapy if indicated.\n\n**Recommendation:**  \nAdvise immediate evaluation in an emergency or acute care setting.', '', '', 'Certainly. Based on the information provided, this is a 13-year-old male presenting with **fever, pain (location unspecified), and vertigo**. There is no detailed medical history, but the constellation of symptoms is concerning for a potentially serious infection or acute neurological process. Below is a comprehensive, structured treatment plan, assuming the most likely and urgent diagnosis is **acute bacterial labyrinthitis (inner ear infection) or CNS infection (e.g., meningitis)** until proven otherwise. This plan should be adapted as further clinical and diagnostic information becomes available.\n\n---\n\n## 1. Primary Diagnosis\n\n**Most likely:**  \n- **Acute Bacterial Labyrinthitis** (inner ear infection involving the vestibular system, often post-otitis media)  \n**Rule out:**  \n- **Acute Bacterial Meningitis**  \n- **Mastoiditis**  \n- **Other CNS infection or complication**\n\n---\n\n## 2. Treatment Goals\n\n- Rapidly identify and treat the underlying infection\n- Prevent neurological and auditory complications\n- Alleviate symptoms (fever, pain, vertigo)\n- Monitor for and manage complications (e.g., sepsis, hearing loss, intracranial extension)\n- Provide supportive care and patient/family education\n\n---\n\n## 3. Medication Recommendations\n\n**Empiric Antimicrobial Therapy (pending cultures):**\n\n- **If Bacterial Labyrinthitis or Mastoiditis suspected:**\n  - **IV Ceftriaxone**: 50–75 mg/kg/dose every 12 hours (max 2 g/dose)\n  - **PLUS** **IV Vancomycin**: 15 mg/kg/dose every 6–12 hours (adjust for renal function; target trough 15–20 mcg/mL)\n  - **Consider adding Metronidazole** (30 mg/kg/day divided q8h, max 500 mg q8h) if intracranial extension or anaerobic coverage needed\n\n- **If Meningitis suspected:**\n  - **IV Ceftriaxone**: 100 mg/kg/day divided q12h (max 2 g q12h)\n  - **IV Vancomycin**: as above\n  - **Consider IV Dexamethasone**: 0.15 mg/kg every 6 hours for 2–4 days (start before or with first antibiotic dose, especially if S. pneumoniae suspected)\n\n**Symptomatic Management:**\n- **Antipyretics:** Acetaminophen 10–15 mg/kg/dose q4–6h PRN (max 75 mg/kg/day)\n- **Analgesia:** Ibuprofen 10 mg/kg/dose q6–8h PRN (max 40 mg/kg/day)\n- **Antiemetics:** Ondansetron 0.15 mg/kg/dose q8h PRN (max 8 mg/dose)\n- **Vestibular suppressants:** Use with caution in children; generally avoid unless severe, short-term use only (e.g., meclizine, not first-line)\n\n**Adjust antibiotics based on culture and sensitivity results.**\n\n---\n\n## 4. Non-Pharmacological Interventions\n\n- **Hospital admission** for IV therapy, monitoring, and further workup\n- **Bed rest** in a quiet, darkened room to minimize vertigo\n- **Hydration:** IV fluids if unable to tolerate oral intake\n- **Elevation of head** to reduce intracranial pressure if CNS involvement suspected\n- **Monitor airway, breathing, and circulation**; provide oxygen if hypoxic\n\n---\n\n## 5. Follow-Up Schedule\n\n- **Inpatient:**  \n  - Continuous monitoring (vital signs, neurological status, fluid balance)\n  - Daily review by pediatric infectious diseases/neurology/ENT as appropriate\n- **After discharge:**  \n  - Outpatient follow-up within 1 week, or sooner if symptoms recur/worsen\n  - Audiology assessment if labyrinthitis or hearing loss suspected\n  - Repeat imaging or labs as clinically indicated\n\n---\n\n## 6. Monitoring Parameters\n\n- **Clinical:**  \n  - Vital signs (fever, tachycardia, hypotension)\n  - Neurological status (GCS, focal deficits, mental status)\n  - Hearing and vestibular function\n  - Pain and vertigo severity\n- **Laboratory:**  \n  - CBC, CRP/ESR, renal and liver function tests\n  - Blood cultures, CSF analysis (if performed)\n  - Drug levels (if on vancomycin)\n- **Imaging:**  \n  - Repeat if clinical deterioration or lack of improvement\n\n---\n\n## 7. Patient Education Points\n\n- **Explain the seriousness** of the condition and need for urgent treatment\n- **Importance of completing the full course** of antibiotics, even if symptoms improve\n- **Signs of worsening:** confusion, persistent vomiting, new rash, severe headache, neck stiffness, hearing loss, or any new neurological symptoms—seek immediate care\n- **Infection control:** hand hygiene, avoid sharing personal items\n- **Follow-up:** stress the importance of attending all follow-up appointments, especially audiology if inner ear involvement\n\n---\n\n## 8. Potential Complications to Watch For\n\n- **Sepsis and shock**\n- **Intracranial extension:** brain abscess, subdural empyema\n- **Permanent hearing loss**\n- **Persistent vertigo or balance problems**\n- **Facial nerve palsy (if mastoiditis or severe otitis media)**\n- **Hydrocephalus (if CNS infection)**\n- **Medication side effects:** nephrotoxicity (vancomycin), allergic reactions\n\n---\n\n**Summary:**  \nThis is a potentially life-threatening presentation. Immediate hospital-based evaluation and management are required. Empiric broad-spectrum IV antibiotics should be started after appropriate cultures are obtained. The treatment plan should be refined as more diagnostic data become available.\n\n**Note:**  \nThis plan is for informational purposes and should be tailored by the treating physician based on the evolving clinical picture and diagnostic findings.\n\n---\n\n**Always consult with a pediatric infectious disease specialist, neurologist, and/or ENT as appropriate.**', 'Medications:\n1. Ceftriaxone IV - 75 mg/kg/dose (max 2 g/dose) - every 12 hours - 10 days\n2. Vancomycin IV - 15 mg/kg/dose - every 8 hours - 10 days\n3. Acetaminophen - 15 mg/kg/dose - every 6 hours as needed for fever or pain - up to 5 days\n4. Ondansetron - 0.15 mg/kg/dose (max 8 mg/dose) - every 8 hours as needed for nausea - up to 3 days\n\nInstructions:\n- Take acetaminophen with food or milk to avoid stomach upset.\n- Ondansetron can be taken with or without food.\n- Complete the full course of all antibiotics, even if symptoms improve.\n- Notify the care team immediately if you notice any new symptoms such as rash, confusion, severe headache, neck stiffness, hearing loss, or worsening dizziness.\n\nPrecautions:\n- Monitor for signs of allergic reaction (rash, swelling, difficulty breathing) and seek immediate medical attention if they occur.\n- Report any decrease in urine output, unusual bruising, or persistent vomiting to your healthcare provider.\n- Stay well hydrated and rest in a quiet, dark room to help with vertigo.\n- Do not drive, bike, or operate machinery until cleared by your doctor due to risk of dizziness and vertigo.', 992, 992, '2025-09-07 16:53:09', '2025-09-07 16:55:48', 98);
INSERT INTO `treatment_plans` (`id`, `patient_id`, `doctor_id`, `symptoms`, `symptom_analysis`, `doctor_input`, `test_results`, `treatment_plan`, `prescription`, `created_by`, `updated_by`, `created_at`, `updated_at`, `hospital_id`) VALUES
(12, 53, '44', 'lower backpain, weight loss', '**Patient Analysis**\n\n**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (unclear, \"dfgdfg\"—assume no significant history provided)\n\n**Current Symptoms:**  \n- Lower back pain  \n- Weight loss\n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the age (adolescent male), lower back pain, and weight loss, consider the following:\n\n**A. Infectious Causes**\n- Spinal osteomyelitis/discitis (bacterial or TB)\n- Epidural abscess\n\n**B. Malignancy**\n- Leukemia/lymphoma\n- Primary bone tumors (e.g., Ewing sarcoma, osteosarcoma)\n- Metastatic disease (rare but possible in certain pediatric cancers)\n\n**C. Inflammatory/Autoimmune**\n- Juvenile idiopathic arthritis (enthesitis-related)\n- Spondyloarthropathy (e.g., ankylosing spondylitis)\n\n**D. Other**\n- Chronic infection (e.g., tuberculosis)\n- Endocrine/metabolic (e.g., diabetes, hyperthyroidism—less likely with back pain as a primary symptom)\n- Non-organic (psychogenic)—less likely with weight loss\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Workup:**\n- **Physical examination:** Full neurological and musculoskeletal assessment\n- **Basic labs:** CBC with differential, ESR, CRP, renal and liver function, urinalysis\n- **Blood cultures** if infection suspected\n- **Imaging:**\n  - X-ray of lumbar spine\n  - MRI spine (with contrast if infection or malignancy suspected)\n- **Other:**\n  - Tuberculin skin test/IGRA if TB risk\n  - Consider bone marrow biopsy if malignancy suspected\n\n---\n\n### 3. Urgency Level\n\n**High**\n\n- The combination of lower back pain and unexplained weight loss in an adolescent is concerning for serious underlying pathology (infection, malignancy).\n- Prompt evaluation is warranted.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **Red flag symptoms:** Weight loss is a significant red flag in pediatric back pain.\n- **Neurological symptoms:** Assess for weakness, numbness, bladder/bowel dysfunction.\n- **Fever/night sweats:** Ask about constitutional symptoms.\n- **Pain characteristics:** Night pain, pain at rest, or pain not relieved by analgesics is concerning.\n- **History:** Any trauma, recent infections, family history of malignancy or autoimmune disease.\n\n---\n\n### 5. Red Flags to Watch For\n\n- Persistent or worsening pain, especially at night or at rest\n- Neurological deficits (weakness, numbness, incontinence)\n- Fever, night sweats, chills\n- Significant, unexplained weight loss\n- History of cancer or immunosuppression\n- Signs of systemic illness (fatigue, malaise)\n\n---\n\n**Summary:**  \nThis adolescent male presents with lower back pain and weight loss—an urgent evaluation is required to rule out serious causes such as infection or malignancy. Immediate referral for further diagnostic workup and specialist input (pediatrics, orthopedics, oncology, or infectious disease) is recommended.\n\n**Note:** This analysis is for informational purposes only. Clinical correlation and prompt evaluation by a healthcare professional are essential.', '', '', 'Certainly. Based on the information provided (13-year-old male with lower back pain and weight loss, no prior medical history specified, and no test results yet), the clinical picture is concerning for a serious underlying etiology. Below is a comprehensive, evidence-based treatment plan, structured for medical professionals.\n\n---\n\n## 1. Primary Diagnosis\n\n**Undetermined – Serious Etiology Suspected (Infection or Malignancy Most Likely)**  \n*Working diagnoses*:  \n- Spinal infection (osteomyelitis/discitis, epidural abscess, TB)\n- Malignancy (leukemia, lymphoma, primary bone tumor)\n- Less likely: spondyloarthropathy, other inflammatory or metabolic causes\n\n**Definitive diagnosis requires urgent further workup.**\n\n---\n\n## 2. Treatment Goals\n\n- Rapidly identify and treat any life-threatening or progressive disease (infection, malignancy)\n- Relieve symptoms (pain, functional impairment)\n- Prevent complications (neurological deficits, systemic spread)\n- Address underlying cause once identified\n- Support nutritional and psychological well-being\n\n---\n\n## 3. Medication Recommendations\n\n**Empiric therapy should NOT be started until after initial diagnostic workup unless the patient is acutely unwell (e.g., septic, neurologically compromised).**  \n**If the patient is stable:**  \n- *Hold antibiotics/other disease-specific therapy until cultures, imaging, and biopsies are obtained.*\n\n**If the patient is unstable (septic, neurological deficits):**  \n- **Empiric IV antibiotics for suspected spinal infection:**  \n  - *Vancomycin* (15 mg/kg IV q6–12h) PLUS  \n  - *Ceftriaxone* (50–75 mg/kg IV q24h) or *Cefotaxime* (50 mg/kg IV q6–8h)  \n  - Adjust based on local resistance, age, and allergy profile.\n- **Dexamethasone** may be considered if spinal cord compression is suspected (consult neurosurgery/oncology).\n\n**Pain management:**  \n- *Acetaminophen* (15 mg/kg/dose q4–6h PRN, max 75 mg/kg/day)  \n- *Ibuprofen* (10 mg/kg/dose q6–8h PRN, max 40 mg/kg/day)  \n- Avoid NSAIDs if infection or malignancy is suspected until diagnosis is confirmed.\n\n**Other medications:**  \n- As indicated by final diagnosis (e.g., chemotherapy, anti-TB therapy, immunosuppressants).\n\n---\n\n## 4. Non-Pharmacological Interventions\n\n- **Strict bed rest** if neurological compromise or instability is suspected.\n- **Physical therapy**: Only after acute pathology is excluded and under specialist guidance.\n- **Nutritional support**: Dietitian referral for weight loss and possible malnutrition.\n- **Psychological support**: Counseling for patient and family due to anxiety/stress of serious illness.\n\n---\n\n## 5. Follow-Up Schedule\n\n- **Inpatient admission** is recommended for urgent workup and monitoring.\n- **Daily reassessment** for neurological status, pain, and systemic symptoms.\n- **Specialist consultations**:  \n  - Pediatrics (primary team)\n  - Infectious disease (if infection suspected)\n  - Oncology (if malignancy suspected)\n  - Orthopedics/neurosurgery (if structural lesion or neurological deficit)\n- **Outpatient follow-up**: Frequency and specialty to be determined by diagnosis and clinical course.\n\n---\n\n## 6. Monitoring Parameters\n\n- **Vital signs**: Fever, tachycardia, hypotension (sepsis)\n- **Neurological status**: Motor/sensory deficits, bowel/bladder function\n- **Pain score**: Frequency, severity, character\n- **Laboratory markers**: CBC, ESR, CRP, blood cultures, metabolic panel\n- **Imaging**: Serial MRI if evolving neurological symptoms\n- **Nutritional status**: Weight, BMI, dietary intake\n\n---\n\n## 7. Patient Education Points\n\n- **Urgency**: Explain the need for rapid and thorough evaluation due to concerning symptoms.\n- **Red flag symptoms**: Instruct to report any new weakness, numbness, incontinence, fever, or worsening pain immediately.\n- **Diagnostic process**: Outline the need for blood tests, imaging, and possibly biopsy.\n- **Treatment expectations**: Discuss that therapy will be tailored once the diagnosis is confirmed.\n- **Support**: Offer psychological and social support resources.\n\n---\n\n## 8. Potential Complications to Watch For\n\n- **Neurological deterioration**: Paralysis, incontinence (suggests spinal cord involvement)\n- **Sepsis**: Hypotension, tachycardia, altered mental status\n- **Metastatic spread**: If malignancy, look for systemic symptoms\n- **Chronic pain/disability**: If diagnosis or treatment is delayed\n- **Medication side effects**: Especially with empiric antibiotics or steroids\n\n---\n\n## Summary Table\n\n| Step                        | Action/Recommendation                                                                                     |\n|-----------------------------|----------------------------------------------------------------------------------------------------------|\n| Primary Diagnosis           | Undetermined; infection or malignancy most likely                                                        |\n| Treatment Goals             | Rapid diagnosis, symptom relief, prevent complications, address underlying cause                         |\n| Medications                 | Hold empiric therapy unless unstable; start broad-spectrum IV antibiotics if septic/neurological deficit |\n| Non-Pharmacological         | Bed rest, nutritional/psychological support, PT only after acute phase                                   |\n| Follow-Up                   | Admit for urgent workup, daily reassessment, specialist input                                            |\n| Monitoring                  | Vitals, neuro status, labs, imaging, nutrition                                                          |\n| Patient Education           | Urgency, red flags, diagnostic process, support                                                          |\n| Complications               | Neuro deficits, sepsis, metastasis, chronic pain, med side effects                                       |\n\n---\n\n**Note:**  \nThis plan is intended as a guide pending further diagnostic clarification. Management must be individualized based on evolving clinical findings and test results. Immediate consultation with pediatric specialists is essential. Always involve the patient and family in decision-making and provide ongoing support.\n\n**This information is not a substitute for direct clinical care.**', 'Medications:\n1. Acetaminophen  - 15 mg/kg per dose - Every 4 to 6 hours as needed for pain - Maximum 75 mg/kg per day\n\nInstructions:\n- Take with or without food.\n- Do not exceed the maximum daily dose.\n- Notify your healthcare provider if pain worsens or new symptoms develop.\n\nPrecautions:\n- Do not use other medications containing acetaminophen at the same time.\n- Seek immediate medical attention if you develop weakness, numbness, difficulty walking, incontinence, fever, or if pain becomes severe.', 992, 992, '2025-09-07 18:59:50', '2025-09-07 19:01:32', 98),
(13, 53, '44', 'Sudden heavy pain in upper abdomen in the late night and sometimes with acid reflux. Usually when dinner is taken in the late night and spicy meal is taken than this pain occurs. The patient is female aged 30.', '**Patient Information (Corrected):**  \n- Name: Mr Patient  \n- Age: 30 years  \n- Gender: Female  \n- Medical History: Not specified (dfgdfg appears to be a placeholder)\n\n**Current Symptoms:**  \n- Sudden, heavy pain in the upper abdomen, typically late at night  \n- Sometimes associated with acid reflux  \n- Pain often follows late-night or spicy meals\n\n---\n\n## 1. Potential Differential Diagnoses\n\n1. **Gastroesophageal Reflux Disease (GERD):**  \n   - Classic presentation with postprandial (after eating), especially spicy or late meals, upper abdominal pain and acid reflux.\n\n2. **Peptic Ulcer Disease (PUD):**  \n   - Ulcers in the stomach or duodenum can cause epigastric pain, often worsened by spicy foods or late meals.\n\n3. **Functional Dyspepsia:**  \n   - Chronic upper abdominal pain without clear structural cause, often meal-related.\n\n4. **Biliary Colic (Cholelithiasis):**  \n   - Gallstones can cause episodic upper abdominal pain, often after fatty or heavy meals, though less commonly associated with acid reflux.\n\n5. **Acute Gastritis:**  \n   - Inflammation of the stomach lining, often triggered by spicy foods, alcohol, NSAIDs.\n\n6. **Pancreatitis (less likely):**  \n   - Severe upper abdominal pain, but usually more persistent and severe, often radiating to the back.\n\n---\n\n## 2. Recommended Diagnostic Tests\n\n- **Physical Examination:**  \n  - Abdominal palpation for tenderness, guarding, or masses.\n\n- **Laboratory Tests:**  \n  - CBC (to rule out infection/anemia)\n  - Liver function tests (LFTs)\n  - Amylase/lipase (if pancreatitis suspected)\n  - H. pylori testing (urea breath test, stool antigen, or serology)\n\n- **Imaging:**  \n  - Abdominal ultrasound (to assess gallbladder, liver, pancreas)\n  - Upper GI endoscopy (if symptoms are persistent, severe, or associated with red flags)\n\n- **Other:**  \n  - ECG (if pain is severe or radiates, to rule out cardiac causes, especially in atypical presentations)\n\n---\n\n## 3. Urgency Level\n\n**Medium**  \n- Symptoms are recurrent and meal-related, suggesting a non-life-threatening but potentially significant GI disorder.\n- If red flags (see below) are present, urgency increases to **High**.\n\n---\n\n## 4. Key Observations and Clinical Notes\n\n- **Symptom Triggers:** Late-night and spicy meals are clear triggers.\n- **Timing:** Nocturnal symptoms may suggest GERD or peptic ulcer.\n- **Associated Symptoms:** Acid reflux present; no mention of vomiting, jaundice, weight loss, or GI bleeding.\n- **Demographics:** Young adult female; no significant comorbidities mentioned.\n- **History:** Medical history is unclear; further clarification needed.\n\n---\n\n## 5. Red Flags to Watch For\n\n- **Severe, persistent, or worsening pain**\n- **Hematemesis (vomiting blood) or melena (black, tarry stools)**\n- **Unintentional weight loss**\n- **Dysphagia (difficulty swallowing)**\n- **Persistent vomiting**\n- **Jaundice (yellowing of skin/eyes)**\n- **Fever or signs of sepsis**\n- **Signs of peritonitis (rigid abdomen, rebound tenderness)**\n\n**If any of these are present, immediate medical evaluation is warranted.**\n\n---\n\n**Summary:**  \nThe most likely diagnoses are GERD or peptic ulcer disease, given the relationship to meals and acid reflux. Initial workup should include basic labs, H. pylori testing, and possibly abdominal ultrasound. Endoscopy may be indicated if symptoms persist or red flags develop. Advise the patient to avoid late and spicy meals, and seek immediate care if any red flags occur.\n\n**Note:** This analysis is for informational purposes only. A full clinical assessment by a healthcare professional is necessary for diagnosis and management.', 'Cholelithiasis', '', 'Certainly. Based on the provided information and the clinical input of **cholelithiasis** (gallstones), here is a comprehensive, evidence-based treatment plan:\n\n---\n\n## 1. Primary Diagnosis\n\n**Cholelithiasis (Gallstones) with Biliary Colic**\n\n- Episodic upper abdominal pain, often postprandial (especially after fatty/spicy/late meals), with occasional acid reflux.\n- Diagnosis supported by clinical history and confirmed by imaging (abdominal ultrasound recommended if not already performed).\n\n---\n\n## 2. Treatment Goals\n\n- Relieve acute symptoms (pain, dyspepsia)\n- Prevent recurrence of biliary colic\n- Prevent complications (cholecystitis, choledocholithiasis, pancreatitis)\n- Address modifiable risk factors\n\n---\n\n## 3. Medication Recommendations\n\n### a. **Acute Symptom Management**\n- **Analgesia:**  \n  - *First-line:* **NSAIDs** (e.g., Diclofenac 50-75 mg IM/PO as needed, max 150 mg/day, short-term)  \n    - *Alternative:* Paracetamol 500–1000 mg PO every 6–8 hours as needed (max 4 g/day)\n  - *If severe pain:* Consider short-term opioid (e.g., Tramadol 50–100 mg PO/IM every 6–8 hours as needed; use with caution)\n\n- **Antispasmodics:**  \n  - *Optional, for severe colic:* Hyoscine butylbromide 10–20 mg PO/IM every 8 hours as needed\n\n### b. **Acid Reflux/GERD Symptoms (if present)**\n- **Proton Pump Inhibitor (PPI):**  \n  - Omeprazole 20 mg PO once daily for 2–4 weeks\n\n### c. **No role for antibiotics** unless evidence of infection (cholecystitis, cholangitis).\n\n### d. **No role for ursodeoxycholic acid** in uncomplicated, symptomatic cholelithiasis (limited efficacy, not routinely recommended).\n\n---\n\n## 4. Non-Pharmacological Interventions\n\n- **Dietary Modification:**  \n  - Low-fat, non-spicy, smaller, frequent meals  \n  - Avoid large, late-night, or fatty meals (triggers for biliary colic)\n- **Weight Management:**  \n  - Gradual weight loss if overweight/obese (rapid weight loss can worsen gallstone formation)\n- **Alcohol Moderation:**  \n  - Limit or avoid alcohol intake\n\n---\n\n## 5. Follow-up Schedule\n\n- **Initial follow-up:** 1–2 weeks after acute episode or sooner if symptoms worsen\n- **Post-ultrasound review:** To discuss imaging results and definitive management\n- **Surgical referral:** If recurrent symptoms or complications, refer to general surgery for elective **laparoscopic cholecystectomy** (definitive treatment)\n\n---\n\n## 6. Monitoring Parameters\n\n- **Symptom diary:** Frequency, severity, and triggers of pain episodes\n- **Signs of complications:** Fever, persistent pain, jaundice, vomiting\n- **Medication side effects:** GI upset, renal function (if NSAIDs used)\n- **Laboratory monitoring:** LFTs, CBC if symptoms persist or complications suspected\n\n---\n\n## 7. Patient Education Points\n\n- **Nature of disease:** Gallstones can cause episodic pain; definitive cure is surgical removal of the gallbladder.\n- **Diet:** Avoid fatty, spicy, and late-night meals; maintain a healthy weight.\n- **Red flag symptoms:** Seek immediate care if you develop severe, persistent pain, fever, jaundice, vomiting, or signs of infection.\n- **Medication use:** Take painkillers as prescribed; avoid self-medicating with NSAIDs long-term.\n- **Surgical options:** Discuss the benefits and risks of cholecystectomy with your surgeon if symptoms recur.\n\n---\n\n## 8. Potential Complications to Watch For\n\n- **Acute cholecystitis:** Persistent right upper quadrant pain, fever, leukocytosis\n- **Choledocholithiasis:** Jaundice, dark urine, pale stools, elevated LFTs\n- **Cholangitis:** Fever, jaundice, hypotension (Charcot’s triad)\n- **Gallstone pancreatitis:** Severe epigastric pain radiating to the back, vomiting, elevated amylase/lipase\n- **Gallbladder perforation or abscess**\n\n**Immediate medical attention is required if any of these develop.**\n\n---\n\n**Summary:**  \nSymptomatic cholelithiasis is best managed with dietary/lifestyle modification, symptomatic pain control, and surgical referral for cholecystectomy if symptoms recur or complications arise. Monitor for red flag symptoms and educate the patient on when to seek urgent care.\n\n**Note:** This plan should be tailored to the individual patient after full clinical evaluation. Always consult with a healthcare professional for definitive diagnosis and management.', 'Medications:\n1. Diclofenac 50 mg - Take one tablet by mouth every 8 hours as needed for pain - Maximum 150 mg per day - For up to 5 days\n2. Omeprazole 20 mg - Take one capsule by mouth once daily - For 2 weeks\n\nInstructions:\n- Take Diclofenac with food to reduce stomach upset.\n- Swallow Omeprazole capsule whole with water, 30 minutes before breakfast.\n- Avoid fatty, spicy, and large meals; eat smaller, more frequent meals.\n- Keep a diary of pain episodes and any triggers.\n\nPrecautions:\n- Do not exceed the recommended dose of Diclofenac.\n- Stop Diclofenac and seek medical attention if you develop severe stomach pain, black stools, vomiting, jaundice, or fever.\n- Avoid alcohol while taking these medications.\n- Contact your healthcare provider if symptoms worsen or new symptoms develop.', 992, 992, '2025-09-08 00:57:16', '2025-09-08 01:00:03', 98),
(14, 53, '44', 'Sudden heavy pain in upper abdomen. Afe 30-, female', '**Patient Information**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (text \"dfgdfg\" is not interpretable)\n\n**Current Symptoms**  \n- Sudden, heavy pain in upper abdomen  \n- (Note: There is a conflicting note \"Afe 30-, female\" which may be a typographical error. Analysis is based on a 13-year-old male.)\n\n---\n\n### 1. Potential Differential Diagnoses\n\nFor a 13-year-old male with sudden, severe upper abdominal pain, consider:\n\n- **Acute gastritis or peptic ulcer disease** (with or without perforation)\n- **Acute pancreatitis**\n- **Biliary colic or cholecystitis** (less common in males, but possible)\n- **Gastroenteritis**\n- **Splenic pathology** (e.g., infarct, rupture—rare but possible)\n- **Gastric volvulus**\n- **Esophageal rupture (Boerhaave syndrome)** (rare, but severe)\n- **Diabetic ketoacidosis** (if diabetic)\n- **Referred pain from lower lobe pneumonia**\n- **Musculoskeletal pain** (if history of trauma)\n- **Toxic ingestion** (if history suggests)\n- **Intestinal obstruction or volvulus**\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n- **Physical examination**: Assess for peritonitis, guarding, rebound tenderness, Murphy’s sign, etc.\n- **Vital signs**: Assess for fever, tachycardia, hypotension, tachypnea\n- **Laboratory tests**:\n  - CBC, electrolytes, renal function, liver function tests\n  - Amylase/lipase (for pancreatitis)\n  - Urinalysis\n  - Blood glucose\n  - Inflammatory markers (CRP, ESR)\n- **Imaging**:\n  - Abdominal ultrasound (first-line, especially for biliary or pancreatic pathology)\n  - Abdominal X-ray (look for free air, obstruction)\n  - Consider CT abdomen if diagnosis remains unclear or if severe findings\n- **Other**:\n  - EKG (if cardiac cause suspected)\n  - Stool studies (if diarrhea present)\n\n---\n\n### 3. Urgency Level\n\n**High**  \n- Sudden, severe abdominal pain in a child is always concerning and warrants urgent evaluation to rule out surgical or life-threatening causes (e.g., perforated ulcer, pancreatitis, volvulus, splenic rupture).\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- Onset, duration, and character of pain (sudden and severe is worrisome)\n- Associated symptoms: vomiting, fever, jaundice, diarrhea, chest pain, shortness of breath\n- Past medical history (not provided)\n- Recent trauma, ingestion, or illness\n- Family history of GI or metabolic disorders\n- Physical exam findings: tenderness, guarding, rigidity, distension, bowel sounds\n\n---\n\n### 5. Red Flags to Watch For\n\n- Signs of peritonitis (rebound tenderness, guarding, rigidity)\n- Hemodynamic instability (hypotension, tachycardia, shock)\n- Persistent vomiting (especially bilious or bloody)\n- Signs of GI bleeding (hematemesis, melena)\n- Altered mental status\n- Severe dehydration\n- Jaundice\n\n---\n\n**Clinical Note:**  \nThis presentation requires urgent assessment by a healthcare professional, preferably in an emergency department. Rapid deterioration is possible depending on the underlying cause. Early imaging and laboratory workup are essential to guide management.\n\n---\n\n**Disclaimer:**  \nThis analysis is for informational purposes only and does not replace clinical assessment. Immediate evaluation by a healthcare professional is strongly recommended.', 'Cholelithiasis', '', 'Certainly. Below is a comprehensive, structured treatment plan for a 13-year-old male presenting with sudden, severe upper abdominal pain, with a working diagnosis of **cholelithiasis** (gallstones). Please note that cholelithiasis in children is less common than in adults and may be associated with hemolytic disorders, obesity, or other risk factors. This plan assumes no evidence of cholecystitis, cholangitis, or pancreatitis unless otherwise specified by further clinical or laboratory findings.\n\n---\n\n## 1. Primary Diagnosis\n\n**Cholelithiasis (gallstones) without evidence of acute cholecystitis or complications**\n\n---\n\n## 2. Treatment Goals\n\n- Relieve abdominal pain and discomfort\n- Prevent complications (e.g., cholecystitis, choledocholithiasis, pancreatitis)\n- Identify and manage underlying risk factors\n- Educate patient and family on symptom recognition and when to seek urgent care\n- Plan for definitive management (possible surgical intervention if symptomatic or recurrent)\n\n---\n\n## 3. Medication Recommendations\n\n**A. Analgesia**\n- **Acetaminophen**: 10–15 mg/kg/dose orally every 4–6 hours as needed (maximum 75 mg/kg/day)\n- **NSAIDs** (e.g., ibuprofen): 5–10 mg/kg/dose orally every 6–8 hours as needed (maximum 40 mg/kg/day)\n- **Avoid opioids** if possible, but may be considered for severe pain under supervision\n\n**B. Antiemetics** (if nausea/vomiting)\n- **Ondansetron**: 0.15 mg/kg/dose (max 8 mg) orally or IV every 8 hours as needed\n\n**C. Antibiotics**\n- **Not indicated** for uncomplicated cholelithiasis.  \n- **If cholecystitis or infection is suspected:** Empiric IV antibiotics (e.g., ceftriaxone + metronidazole) per local protocols.\n\n**D. Ursodeoxycholic acid**\n- **Not routinely recommended** for symptomatic gallstones in children unless surgery is contraindicated and stones are cholesterol type.\n\n---\n\n## 4. Non-Pharmacological Interventions\n\n- **NPO (nil per os)** during acute pain episode if severe symptoms or if surgery is being considered\n- **IV fluids** if unable to tolerate oral intake or if dehydrated\n- **Gradual reintroduction of oral intake** as tolerated, starting with clear liquids\n- **Low-fat diet** after acute episode to reduce gallbladder stimulation\n- **Monitor for signs of complications** (see below)\n\n---\n\n## 5. Follow-up Schedule\n\n- **Immediate**: Admit for observation if pain is severe, recurrent, or if complications are suspected\n- **Short-term**: Outpatient follow-up within 1 week with pediatric gastroenterology or surgery if stable and discharged\n- **Long-term**: Regular follow-up if managed conservatively, or post-operatively if cholecystectomy performed\n\n---\n\n## 6. Monitoring Parameters\n\n- **Vital signs**: Monitor for fever, tachycardia, hypotension (suggesting sepsis or shock)\n- **Pain score**: Regular assessment\n- **Abdominal exam**: Watch for peritoneal signs, Murphy’s sign, distension\n- **Laboratory markers**: Repeat CBC, LFTs, amylase/lipase if clinical status changes\n- **Hydration status**: Input/output monitoring\n- **Signs of complications**: Jaundice, persistent vomiting, altered mental status\n\n---\n\n## 7. Patient Education Points\n\n- **Symptoms to watch for**: Worsening pain, fever, jaundice, persistent vomiting, dark urine, pale stools\n- **Diet**: Low-fat meals to reduce gallbladder stimulation\n- **Importance of follow-up**: To monitor for complications and discuss definitive management\n- **When to seek urgent care**: If severe pain returns, fever develops, or any red flag symptoms appear\n- **Potential need for surgery**: Discuss that cholecystectomy may be required if symptoms recur or complications develop\n\n---\n\n## 8. Potential Complications to Watch For\n\n- **Acute cholecystitis** (fever, right upper quadrant tenderness, Murphy’s sign, leukocytosis)\n- **Choledocholithiasis** (jaundice, elevated bilirubin/alkaline phosphatase)\n- **Acute pancreatitis** (epigastric pain radiating to back, elevated amylase/lipase)\n- **Cholangitis** (Charcot’s triad: fever, jaundice, RUQ pain)\n- **Gallbladder perforation or abscess**\n- **Sepsis**\n\n---\n\n**Clinical Note:**  \nThis plan should be individualized based on further clinical findings, laboratory/imaging results, and the presence or absence of complications. Consultation with pediatric gastroenterology and/or pediatric surgery is recommended for all cases of symptomatic cholelithiasis in children.\n\n---\n\n**Disclaimer:**  \nThis guidance is for informational purposes and does not replace clinical judgment. Immediate evaluation and management by a healthcare professional are essential.', 'Medications:\n1. Acetaminophen 500 mg - Take by mouth every 6 hours as needed for pain - Maximum 4 doses in 24 hours\n2. Ondansetron 4 mg - Take by mouth every 8 hours as needed for nausea or vomiting - Maximum 3 doses in 24 hours\n\nInstructions:\n- Take acetaminophen with a small amount of water; do not exceed the maximum daily dose.\n- Take ondansetron with or without food.\n- Start with clear liquids and advance to a low-fat diet as tolerated.\n- If unable to keep fluids down, seek medical attention.\n\nPrecautions:\n- Do not take more than the recommended dose of any medication.\n- Watch for signs of worsening pain, fever, yellowing of the skin or eyes, persistent vomiting, or dark urine, and seek medical care immediately if these occur.', 992, 992, '2025-09-08 01:03:29', '2025-09-08 01:06:51', 98),
(15, 53, '44', 'RIght arm musle pain', '**Patient Analysis**\n\n**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (text \"dfgdfg\" is not interpretable)\n\n**Presenting Symptom:**  \n- Right arm muscle pain\n\n---\n\n### 1. Potential Differential Diagnoses\n\n- **Muscle strain or overuse injury** (most common in adolescents, especially with sports or physical activity)\n- **Contusion or soft tissue injury** (history of trauma or impact)\n- **Delayed onset muscle soreness (DOMS)**\n- **Tendinitis or tenosynovitis**\n- **Fracture or bone injury** (if trauma present)\n- **Infection (myositis, cellulitis, abscess)** (especially if accompanied by redness, swelling, or fever)\n- **Nerve impingement or radiculopathy** (if associated with numbness, tingling, or weakness)\n- **Referred pain from cervical spine pathology**\n- **Compartment syndrome** (rare, but critical to rule out if severe pain, swelling, or neurovascular compromise)\n- **Systemic causes** (e.g., viral myalgia, inflammatory myopathies—less likely without other symptoms)\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n- **History and physical examination** (including assessment for trauma, activity, systemic symptoms, neurovascular status)\n- **X-ray of the right arm** (if trauma or suspicion of fracture)\n- **Ultrasound** (if soft tissue injury, abscess, or localized swelling)\n- **CBC, ESR, CRP** (if infection or inflammatory process suspected)\n- **MRI** (if persistent, severe, or unexplained pain, or suspicion of deep tissue injury)\n- **Electrodiagnostic studies** (if neurological symptoms present)\n\n---\n\n### 3. Urgency Level\n\n- **Low to Medium** (based on current information)\n  - **Increase to High** if any red flags (see below) are present.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **Age**: Adolescent; muscle pain often related to activity or minor trauma.\n- **Location**: Isolated to right arm; no mention of systemic symptoms.\n- **History**: No trauma, fever, or neurological symptoms reported (but should be specifically asked).\n- **Medical history**: Not provided; relevant for underlying conditions (e.g., bleeding disorders, autoimmune disease).\n\n---\n\n### 5. Red Flags to Watch For\n\n- **Severe, rapidly worsening pain**\n- **Swelling, redness, or warmth (suggesting infection or compartment syndrome)**\n- **Fever or systemic symptoms**\n- **Numbness, tingling, or weakness (suggesting nerve involvement)**\n- **Loss of pulses or pallor (vascular compromise)**\n- **History of significant trauma**\n- **Inability to move the arm or severe functional impairment**\n\n---\n\n### 6. Confidence Level\n\n- **Medium**\n  - Confidence limited by lack of detailed history, physical findings, and context (e.g., trauma, activity, systemic symptoms).\n\n---\n\n**Summary:**  \nRight arm muscle pain in a 13-year-old male is most commonly due to benign causes such as muscle strain or minor injury, but a thorough history and examination are essential to rule out serious conditions. Watch for red flags that may indicate infection, fracture, or compartment syndrome. Further evaluation and diagnostic testing should be guided by clinical findings.\n\n**Recommendation:**  \nA healthcare professional should perform a focused history and physical examination to determine the need for further testing and to ensure no urgent pathology is missed.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 04:09:48', NULL, 98),
(16, 53, '44', 'headache', '**Patient Analysis**\n\n**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (text appears non-informative)\n\n**Current Symptom:**  \n- Headache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nIn a 13-year-old male presenting with headache, consider the following common and serious causes:\n\n- **Primary Headache Disorders:**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes:**\n  - Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis)\n  - Medication overuse headache\n  - Dehydration\n  - Vision problems (refractive errors)\n  - Trauma/concussion\n  - Intracranial mass or increased intracranial pressure (rare, but important to rule out)\n  - Hypertension\n  - Dental or temporomandibular joint (TMJ) disorders\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- Detailed history and physical examination, including:\n  - Onset, duration, frequency, and character of headache\n  - Associated symptoms (nausea, vomiting, photophobia, phonophobia, visual changes, fever, neck stiffness, altered mental status)\n  - Family history of headache/migraine\n  - Recent trauma or illness\n- Vital signs, including blood pressure\n\n**If Red Flags or Abnormal Findings:**\n- Neuroimaging (CT/MRI brain)\n- Lumbar puncture (if concern for meningitis/encephalitis and imaging is clear)\n- Laboratory tests (CBC, CRP/ESR, electrolytes) if infection or systemic illness suspected\n- Ophthalmologic evaluation (if visual symptoms or papilledema suspected)\n\n---\n\n### 3. Urgency Level\n\n- **Medium** (based on current information)\n  - **High** if any red flags or abnormal neurological findings are present (see below)\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- Isolated headache in an adolescent is most commonly benign (e.g., migraine, tension-type), but secondary causes must be excluded.\n- Absence of detailed history (e.g., associated symptoms, duration, severity, response to analgesics) limits specificity of analysis.\n- No mention of trauma, fever, or neurological symptoms.\n- Medical history is not contributory in this case.\n\n---\n\n### 5. Red Flags to Watch For\n\nImmediate evaluation is warranted if any of the following are present:\n- Sudden, severe (“thunderclap”) headache\n- Headache with fever, neck stiffness, photophobia (concern for meningitis)\n- Altered mental status, confusion, seizures\n- Focal neurological deficits (weakness, vision loss, ataxia)\n- Headache triggered by Valsalva, coughing, or exertion\n- Headache worsening over time or waking from sleep\n- Recent head trauma\n- Papilledema on fundoscopic exam\n- Immunosuppression or known malignancy\n\n---\n\n### 6. Confidence Level\n\n- **Low to Medium**\n  - Due to limited clinical information and non-specific medical history, confidence in the differential is limited. Further history and physical examination are essential for accurate assessment.\n\n---\n\n**Summary:**  \nThis is a 13-year-old male with a headache of unspecified duration and characteristics. Most headaches in this age group are benign, but a careful assessment for red flags and secondary causes is essential. If any concerning symptoms are present, urgent evaluation is warranted. Recommend further history, physical examination, and targeted investigations as indicated.\n\n**Note:** This analysis is not a substitute for clinical evaluation. Please consult a healthcare professional for definitive diagnosis and management.', 'nothing found', '', 'Certainly. Below is a structured, comprehensive treatment plan for a 13-year-old male presenting with headache, based on the limited information provided and in the absence of red flag symptoms or abnormal findings.\n\n---\n\n## 1. Primary Diagnosis\n\n**Most Likely:**  \n- **Primary Headache Disorder** (Migraine or Tension-Type Headache)\n\n**Rationale:**  \n- Headache is common in adolescents; primary headache disorders (migraine, tension-type) are most frequent in this age group.\n- No red flag symptoms or abnormal findings reported.\n- No evidence of secondary causes based on available data.\n\n---\n\n## 2. Treatment Goals\n\n- Relieve acute headache symptoms\n- Minimize headache frequency and severity\n- Prevent recurrence\n- Identify and address potential triggers\n- Monitor for and promptly identify secondary causes or complications\n\n---\n\n## 3. Medication Recommendations\n\n**A. Acute Symptomatic Relief**\n\n- **First-line:**  \n  - **Acetaminophen**: 10–15 mg/kg/dose orally every 4–6 hours as needed (maximum 75 mg/kg/day or 3,000 mg/day, whichever is lower)\n  - **OR**  \n  - **Ibuprofen**: 10 mg/kg/dose orally every 6–8 hours as needed (maximum 40 mg/kg/day or 2,400 mg/day, whichever is lower)\n\n- **If migraine suspected and above ineffective:**  \n  - **Consider triptans** (e.g., sumatriptan nasal spray 5–20 mg, as per age/weight, single dose; may repeat once in 2 hours if needed; max 40 mg/24h).  \n  - *Note: Use only if migraine diagnosis is clear and under supervision of a healthcare provider.*\n\n**B. Preventive Therapy:**  \n- Not indicated unless headaches are frequent, severe, or disabling. Consider after specialist evaluation.\n\n---\n\n## 4. Non-Pharmacological Interventions\n\n- **Lifestyle Modifications:**\n  - Ensure regular sleep schedule\n  - Maintain adequate hydration\n  - Encourage regular meals, avoid skipping meals\n  - Limit caffeine and avoid known dietary triggers\n  - Encourage regular physical activity\n- **Headache Diary:**  \n  - Record frequency, duration, intensity, triggers, and response to treatment\n- **Stress Management:**  \n  - Relaxation techniques, cognitive-behavioral therapy if stress is a trigger\n- **Screen for Vision Problems:**  \n  - Recommend eye exam if visual symptoms or if not recently performed\n\n---\n\n## 5. Follow-Up Schedule\n\n- **Initial follow-up:**  \n  - 1–2 weeks after initial visit (sooner if symptoms worsen or red flags develop)\n- **Ongoing:**  \n  - Every 1–3 months if headaches persist or escalate, or as directed by clinical course\n\n---\n\n## 6. Monitoring Parameters\n\n- Headache frequency, duration, and severity (via diary)\n- Response to medications (effectiveness, side effects)\n- Emergence of red flag symptoms (see below)\n- Impact on school attendance and daily activities\n- Medication use (to avoid overuse/rebound headache)\n\n---\n\n## 7. Patient Education Points\n\n- Most headaches in adolescents are benign and self-limited\n- Importance of regular routines (sleep, meals, hydration)\n- Avoid overuse of pain medications (no more than 2–3 days per week)\n- Identify and avoid headache triggers\n- When to seek urgent care (see red flags below)\n- Keep a headache diary for better management\n\n---\n\n## 8. Potential Complications to Watch For\n\n- Medication overuse headache (from frequent analgesic use)\n- Progression to chronic daily headache\n- Underlying secondary cause (e.g., infection, mass lesion) if new symptoms develop\n- Impact on school performance or psychosocial functioning\n\n**Red Flags Requiring Immediate Medical Attention:**\n- Sudden, severe (“worst ever”) headache\n- Headache with fever, neck stiffness, photophobia\n- Confusion, altered mental status, seizures\n- Focal neurological deficits\n- Headache worsening over time or waking from sleep\n- Recent significant head trauma\n\n---\n\n## 9. Confidence Level\n\n**Medium**\n\n- Confidence is moderate due to limited clinical information and lack of detailed history or examination findings.\n- Plan is appropriate for initial management of presumed primary headache in an adolescent, but further evaluation is warranted if symptoms persist, worsen, or new findings emerge.\n\n---\n\n**Note:**  \nThis plan is based on available information and standard guidelines for pediatric headache management. A thorough clinical assessment is essential. Please consult a pediatrician or neurologist for further evaluation and individualized care.', 'Medications:\n1. Acetaminophen 500 mg tablets – 1 tablet by mouth every 4–6 hours as needed for headache – Maximum 4 doses in 24 hours, for up to 5 days\n\nInstructions:\n- Take with a full glass of water. May take with food if stomach upset occurs.\n- Do not exceed 4 doses (2,000 mg) in 24 hours.\n- Keep a headache diary to track frequency, duration, and possible triggers.\n\nPrecautions:\n- Do not use for more than 5 consecutive days without consulting your healthcare provider.\n- Seek medical attention immediately if headache is sudden and severe, associated with fever, neck stiffness, confusion, weakness, vision changes, or vomiting.', 992, 992, '2025-09-08 04:18:54', '2025-09-08 04:20:14', 98),
(17, 53, '44', 'Headche', '**Patient Information**  \nName: Mr Patient  \nAge: 13 years  \nGender: Male  \nMedical History: Not specified (text \"dfgdfg\" is non-informative)  \n\n**Current Symptom**  \nHeadache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nFor a 13-year-old male presenting with headache, consider:\n\n- **Primary Headache Disorders:**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes:**\n  - Sinusitis\n  - Viral or bacterial infections (e.g., upper respiratory tract infection, meningitis)\n  - Medication overuse headache\n  - Refractive error (vision problems)\n  - Trauma (recent head injury)\n  - Intracranial pathology (e.g., tumor, hydrocephalus, pseudotumor cerebri)\n  - Hypertension\n  - Sleep disorders\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- Detailed history and physical examination (including neurological exam)\n- Assessment for associated symptoms (fever, neck stiffness, photophobia, vomiting, visual changes, altered consciousness, recent trauma)\n- Blood pressure measurement\n- Vision screening\n\n**Further Investigations (if indicated by history/exam):**\n- CBC, CRP/ESR (if infection or inflammation suspected)\n- Sinus X-ray or CT (if sinusitis suspected)\n- MRI/CT brain (if red flags or abnormal neuro exam)\n- Lumbar puncture (if meningitis or subarachnoid hemorrhage suspected)\n- Urinalysis (if hypertension suspected)\n\n---\n\n### 3. Urgency Level\n\n**Medium**  \n- Most pediatric headaches are benign, but a thorough assessment is needed to rule out serious causes.\n- **Urgency increases to High** if any red flags (see below) are present.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- Age-appropriate headache assessment is crucial.\n- Lack of detailed history (onset, duration, character, associated symptoms, triggers, family history) limits specificity.\n- No mention of trauma, fever, or neurological symptoms.\n- No past medical history provided.\n- Consider both primary and secondary causes; secondary headaches are more common in children than adults.\n\n---\n\n### 5. Red Flags to Watch For\n\n- Sudden, severe (\"thunderclap\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Altered mental status, seizures, focal neurological deficits\n- Papilledema, visual changes\n- Persistent vomiting, especially in the morning\n- Recent head trauma\n- Headache worsening with Valsalva maneuver or lying down\n- Headache that awakens from sleep or is present on awakening\n- Immunosuppression or known malignancy\n\n---\n\n### 6. Confidence Level\n\n**Low to Medium**  \n- Confidence is limited due to lack of detailed history, physical exam findings, and medical history.\n- Further information is needed for a more definitive analysis.\n\n---\n\n**Summary:**  \nA 13-year-old male with headache requires careful evaluation to differentiate between primary and secondary causes. Most headaches in this age group are benign, but red flags must be excluded. Initial workup should focus on history and exam, with further tests as indicated. Urgency is medium unless red flags are present, in which case immediate evaluation is warranted.\n\n**Recommendation:**  \nAdvise prompt clinical assessment by a healthcare professional to obtain a detailed history, perform a physical and neurological examination, and guide further investigations as appropriate.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 04:22:40', NULL, 98),
(18, 53, '44', 'Headche', '**Patient Analysis**\n\n**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (non-informative: \"dfgdfg\")  \n\n**Current Symptom:**  \n- Headache  \n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the limited information (isolated headache in a 13-year-old male), the differential is broad. Common and important causes include:\n\n- **Primary Headache Disorders:**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes:**\n  - Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis)\n  - Medication overuse or withdrawal\n  - Vision problems (refractive errors, eye strain)\n  - Trauma (recent head injury)\n  - Intracranial pathology (tumor, hydrocephalus, hemorrhage)\n  - Hypertension\n  - Dental or temporomandibular joint (TMJ) disorders\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial evaluation should include:**\n- **Comprehensive history and physical examination** (including neurological exam)\n- **Vital signs** (fever, blood pressure)\n- **Fundoscopic exam** (to assess for papilledema)\n- **Vision assessment**\n\n**Further investigations if indicated by history/exam:**\n- **Neuroimaging (CT/MRI brain):** If red flags present (see below)\n- **Lumbar puncture:** If signs of meningitis or raised intracranial pressure (after imaging)\n- **Laboratory tests:** CBC, CRP, ESR if infection or inflammation suspected\n- **Sinus X-ray/CT:** If sinusitis suspected\n\n---\n\n### 3. Urgency Level\n\n**Medium**  \n- The urgency may escalate to **High** if any red flag symptoms are present (see below).\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **Symptom characterization is crucial:** Onset, duration, location, quality, associated symptoms (nausea, vomiting, photophobia, phonophobia, visual changes, fever, neck stiffness, recent trauma).\n- **History of similar episodes?** Family history of migraine?\n- **Any recent infections, trauma, or medication changes?**\n- **Impact on daily activities and school attendance?**\n\n---\n\n### 5. Red Flags to Watch For\n\nImmediate evaluation is warranted if any of the following are present:\n- Sudden, severe (\"worst ever\") headache\n- Altered mental status, confusion, or loss of consciousness\n- Focal neurological deficits (weakness, vision loss, speech difficulty)\n- Signs of increased intracranial pressure (projectile vomiting, papilledema)\n- Signs of meningeal irritation (neck stiffness, photophobia, fever)\n- Recent head trauma\n- Headache that wakes the patient from sleep or is worse in the morning\n- Immunosuppression or known malignancy\n\n---\n\n### 6. Confidence Level\n\n**Low**  \n- Due to extremely limited clinical information (only \"headache\" provided, no history, exam findings, or relevant medical history).\n\n---\n\n**Summary:**  \nThis is a 13-year-old male presenting with headache. The differential is broad, with both primary and secondary causes possible. Further history and examination are essential to narrow the diagnosis and determine the need for urgent intervention. Watch for red flags that may indicate a serious underlying condition. Recommend prompt clinical evaluation by a healthcare professional.\n\n---\n\n**Note:**  \nThis analysis is based on limited information. Please consult a healthcare professional for a thorough assessment, diagnosis, and management plan.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 04:23:34', NULL, 98);
INSERT INTO `treatment_plans` (`id`, `patient_id`, `doctor_id`, `symptoms`, `symptom_analysis`, `doctor_input`, `test_results`, `treatment_plan`, `prescription`, `created_by`, `updated_by`, `created_at`, `updated_at`, `hospital_id`) VALUES
(19, 53, '44', 'Headace', '**Patient Analysis**\n\n**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (non-contributory)\n\n**Current Symptom:**  \n- Headache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the limited information (isolated headache in a 13-year-old male), the following are common and important causes to consider:\n\n- **Primary Headache Disorders:**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes:**\n  - Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis)\n  - Medication overuse headache\n  - Head trauma/concussion\n  - Vision problems (e.g., refractive errors)\n  - Dehydration\n  - Intracranial pathology (e.g., tumor, hydrocephalus, idiopathic intracranial hypertension)\n  - Hypertension\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial evaluation should be guided by clinical history and physical examination.**  \nIf red flags or concerning features are present, consider:\n\n- **Basic Investigations:**\n  - Vital signs (including blood pressure)\n  - Neurological examination\n  - Fundoscopic examination (for papilledema)\n  - Visual acuity assessment\n\n- **If indicated by history/exam:**\n  - CBC, CRP/ESR (if infection or inflammation suspected)\n  - Urinalysis (if systemic symptoms)\n  - Brain imaging (CT/MRI) if red flags present (see below)\n  - Lumbar puncture (if meningitis or increased intracranial pressure suspected)\n\n---\n\n### 3. Urgency Level\n\n- **Low to Medium** (based on current information)\n  - **If no red flags** or abnormal findings on history/exam, outpatient evaluation is appropriate.\n  - **If red flags present** (see below), urgency increases to **High**—immediate evaluation required.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **History is critical:** Onset, duration, character, location, associated symptoms (nausea, vomiting, visual changes, photophobia, phonophobia, fever, neck stiffness, recent trauma, etc.).\n- **Physical exam:** Complete neurological and general examination.\n- **Family history:** Migraine or other headache disorders.\n- **Medication and substance use:** Caffeine, over-the-counter medications, recent changes.\n- **Psychosocial factors:** Stress, sleep patterns, school performance.\n\n---\n\n### 5. Red Flags to Watch For\n\nImmediate evaluation is warranted if any of the following are present:\n\n- Sudden, severe (\"thunderclap\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Headache with altered mental status, seizures, or focal neurological deficits\n- Headache that wakes the patient from sleep or is worse in the morning\n- Headache with vomiting (especially projectile)\n- Recent head trauma\n- Visual changes (blurred vision, double vision, vision loss)\n- Papilledema on exam\n- Immunocompromised status or known malignancy\n\n---\n\n### 6. Confidence Level\n\n- **Low**\n  - Due to the extremely limited clinical information provided (only \"headache\" as a symptom and no relevant medical history), the confidence in this analysis is low. A thorough clinical history and examination are essential for accurate diagnosis and management.\n\n---\n\n**Summary:**  \nThe differential for headache in a 13-year-old is broad, ranging from benign primary headache disorders to serious secondary causes. Careful assessment for red flags is crucial. If any concerning features are present, urgent evaluation is required. Otherwise, outpatient workup and management may be appropriate. Further history and examination findings are needed for a definitive assessment.\n\n**Recommendation:**  \nAdvise prompt in-person evaluation by a healthcare professional for a detailed history, examination, and appropriate investigations.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 04:24:01', NULL, 98),
(20, 53, '44', 'headace', '**Patient Analysis**\n\n**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (entry \"dfgdfg\" appears to be a placeholder)\n\n**Current Symptom:**  \n- Headache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the limited information (isolated headache in a 13-year-old male), consider the following common and serious causes:\n\n**Common Causes:**\n- Tension-type headache\n- Migraine (with or without aura)\n- Sinusitis\n- Viral illness (e.g., upper respiratory tract infection)\n- Eyestrain (refractive error)\n\n**Less Common but Serious Causes:**\n- Meningitis/encephalitis\n- Intracranial mass or space-occupying lesion\n- Idiopathic intracranial hypertension\n- Head trauma/concussion\n- Hypertension\n- Medication overuse headache\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- Detailed history and physical examination (including neurological exam)\n- Assessment for associated symptoms: fever, photophobia, neck stiffness, nausea/vomiting, visual changes, recent trauma, altered mental status\n\n**Further Workup (if indicated by history/exam):**\n- Fundoscopic examination (for papilledema)\n- Blood pressure measurement\n- CBC, CRP/ESR (if infection or inflammation suspected)\n- Sinus imaging (if sinusitis suspected)\n- Brain imaging (CT/MRI) if red flags present (see below)\n- Lumbar puncture (if meningitis/encephalitis suspected)\n\n---\n\n### 3. Urgency Level\n\n**Medium**  \n- Isolated headache in a 13-year-old is often benign, but further assessment is required to rule out serious causes.\n- Urgency increases to **High** if any red flags (see below) are present.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- Age and gender are typical for primary headache disorders (migraine, tension-type).\n- No associated symptoms or relevant medical history provided.\n- No mention of trauma, fever, neurological deficits, or other systemic symptoms.\n- Lack of detail limits the ability to narrow the differential diagnosis.\n\n---\n\n### 5. Red Flags to Watch For\n\nIf any of the following are present, escalate urgency and consider immediate referral or emergency evaluation:\n\n- Sudden-onset \"worst headache of life\"\n- Headache with fever, neck stiffness, photophobia (meningitis signs)\n- Altered mental status, seizures, focal neurological deficits\n- Papilledema or visual changes\n- Headache worsened by Valsalva, lying down, or in the morning\n- Recent head trauma\n- Persistent vomiting\n- Immunosuppression or known malignancy\n\n---\n\n### 6. Confidence Level\n\n**Low to Medium**  \n- Confidence is limited by lack of detailed history, physical findings, and associated symptoms.\n- Additional information is required for a more precise assessment.\n\n---\n\n**Summary:**  \nThis is a 13-year-old male with an isolated complaint of headache. The most likely causes are benign (tension-type or migraine), but serious etiologies must be considered and ruled out, especially if red flags are present. A thorough history and physical examination are essential. If any red flags are identified, urgent evaluation is warranted.\n\n**Recommendation:**  \nAdvise prompt clinical evaluation by a healthcare professional to obtain a detailed history and perform a physical and neurological examination. Immediate attention is required if any red flags develop.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 04:27:26', NULL, 98),
(21, 53, '44', 'headache', '**Patient Analysis**\n\n**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (text \"dfgdfg\" appears to be a placeholder)\n\n**Current Symptom:**  \n- Headache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the limited information (isolated headache in a 13-year-old male), the following differential diagnoses should be considered:\n\n- **Primary Headache Disorders:**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes:**\n  - Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis)\n  - Medication overuse headache\n  - Head trauma/concussion (if recent trauma)\n  - Vision problems (e.g., refractive errors)\n  - Intracranial pathology (e.g., tumor, hydrocephalus, idiopathic intracranial hypertension)\n  - Dehydration\n  - Sleep disorders\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Assessment:**\n- Thorough history and physical examination (including neurological exam)\n- Headache diary (onset, duration, associated symptoms, triggers)\n\n**If Red Flags or Abnormal Findings:**\n- Neuroimaging (MRI preferred, CT if urgent)\n- Lumbar puncture (if meningitis or subarachnoid hemorrhage suspected)\n- Blood tests (CBC, CRP/ESR if infection or inflammation suspected)\n- Sinus imaging (if sinusitis suspected)\n- Vision assessment (if visual symptoms present)\n\n---\n\n### 3. Urgency Level\n\n**Medium**\n\n- Most headaches in this age group are benign, but careful assessment for red flags is essential.\n- If any red flags (see below) are present, urgency increases to **High**.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- Isolated headache in a 13-year-old male is most commonly due to primary headache disorders.\n- Absence of associated symptoms (fever, vomiting, altered consciousness, visual changes, neck stiffness) in the provided information.\n- No medical history provided; relevant past history (e.g., trauma, chronic illness) is unknown.\n- Further history is crucial: onset, duration, character, location, associated symptoms, family history, medication use, recent infections, trauma.\n\n---\n\n### 5. Red Flags to Watch For\n\n- Sudden onset (\"thunderclap\" headache)\n- Severe, worsening, or persistent headache\n- Headache with fever, neck stiffness, photophobia, or altered mental status (meningitis/encephalitis)\n- Focal neurological deficits (weakness, vision changes, seizures)\n- Headache waking from sleep or worse in the morning (raised intracranial pressure)\n- Recent head trauma\n- Vomiting (especially projectile)\n- Immunosuppression or known malignancy\n\n---\n\n### 6. Confidence Level\n\n**Confidence Level:** 60%\n\n*Reasoning:*  \nAnalysis is limited by lack of detailed history, physical findings, and medical background. The most likely causes are benign, but serious secondary causes cannot be excluded without further information.\n\n---\n\n**Recommendation:**  \nA comprehensive clinical evaluation by a healthcare professional is essential to obtain a detailed history, perform a physical and neurological examination, and determine the need for further investigations. Immediate medical attention is warranted if any red flags are present.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 04:29:30', NULL, 98),
(22, 53, '44', 'headache', '**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (entry \"dfgdfg\" not interpretable)\n\n**Current Symptom:**  \n- Headache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the limited information (isolated headache in a 13-year-old male), consider the following common and serious causes:\n\n- **Primary Headache Disorders:**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n- **Secondary Headache Causes:**\n  - Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis)\n  - Medication overuse headache\n  - Vision problems (refractive errors)\n  - Trauma (concussion, subdural hematoma)\n  - Intracranial mass or space-occupying lesion (rare but serious)\n  - Hypertension\n  - Dehydration\n  - Sleep disturbances\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- Detailed history and physical examination (including neurological exam)\n- Assessment for recent trauma, fever, photophobia, neck stiffness, vomiting, visual changes, or focal neurological deficits\n\n**Further Investigations (if indicated by history/exam):**\n- **Neuroimaging (CT/MRI):** If red flags or abnormal neurological findings are present\n- **Lumbar puncture:** If meningitis or subarachnoid hemorrhage is suspected\n- **Laboratory tests:** CBC, CRP, ESR if infection or inflammation suspected\n- **Vision assessment:** If visual symptoms or eye strain suspected\n\n---\n\n### 3. Urgency Level\n\n**Medium**  \n- Isolated headache in a 13-year-old is common and often benign, but further assessment is needed to rule out serious causes.\n- **Urgency increases to High** if any red flags (see below) are present.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- The symptom is non-specific; further history is crucial (onset, duration, character, associated symptoms, triggers, family history, medication use, recent infections, trauma).\n- Physical and neurological examination findings are essential to guide further workup.\n- Consider psychosocial factors (school stress, sleep hygiene).\n\n---\n\n### 5. Red Flags to Watch For\n\n- Sudden, severe (\"thunderclap\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis)\n- Altered mental status, confusion, seizures\n- Focal neurological deficits (weakness, vision loss, ataxia)\n- Headache worsened by Valsalva, lying down, or in the morning (raised intracranial pressure)\n- Recent head trauma\n- Persistent vomiting\n- Immunosuppression or known malignancy\n\n---\n\n### 6. Confidence Level\n\n**Confidence Level:** 70%  \n- Confidence is limited by the lack of detailed history, physical examination, and medical background.  \n- Further information is required for a more precise assessment.\n\n---\n\n**Note:**  \nThis analysis is for informational purposes only. A thorough clinical evaluation by a healthcare professional is essential for accurate diagnosis and management. If any red flags are present, seek urgent medical attention.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 04:30:21', NULL, 98),
(23, 53, '44', 'Heaadace', '**Patient Information:**  \nName: Mr Patient  \nAge: 13 years  \nGender: Male  \nMedical History: Not specified (text appears non-informative)\n\n**Current Symptoms:**  \nHeadache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the limited information (isolated headache in a 13-year-old male), consider the following common and serious causes:\n\n- **Primary Headache Disorders:**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes:**\n  - Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis)\n  - Medication overuse headache\n  - Trauma (concussion, subdural hematoma)\n  - Vision problems (refractive errors, eye strain)\n  - Intracranial mass or increased intracranial pressure (rare but serious)\n  - Hypertension\n  - Dehydration\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- Detailed history and physical examination (including neurological assessment)\n- Vital signs (temperature, blood pressure, heart rate)\n- Fundoscopic examination (to assess for papilledema)\n\n**Further Investigations (if indicated by history/exam):**\n- CBC, CRP/ESR (if infection or inflammation suspected)\n- Lumbar puncture (if meningitis or subarachnoid hemorrhage suspected)\n- CT/MRI brain (if red flags or abnormal neurological findings)\n- Sinus imaging (if sinusitis suspected)\n- Vision assessment (if visual symptoms)\n\n---\n\n### 3. Urgency Level\n\n**Low to Medium**  \n- If headache is mild, non-progressive, and not associated with red flag symptoms, urgency is **Low**.\n- If any red flags (see below) are present, urgency increases to **High**.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- Isolated headache in an adolescent is most commonly benign (migraine or tension-type).\n- Lack of associated symptoms (fever, neck stiffness, vomiting, visual changes, altered mental status) in the provided information.\n- No history of trauma, recent illness, or medication use documented.\n- Medical history is unclear; further clarification needed.\n\n---\n\n### 5. Red Flags to Watch For\n\n- Sudden onset \"worst headache of life\"\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Altered mental status, confusion, seizures\n- Focal neurological deficits (weakness, vision loss, ataxia)\n- Papilledema (suggests increased intracranial pressure)\n- Headache waking from sleep or worse in the morning\n- Recent head trauma\n- Immunosuppression or known malignancy\n\n---\n\n### 6. Confidence Level\n\n**Confidence Level:** 60%  \n*Rationale: The analysis is based on a single symptom (\"headache\") with no detailed history, physical findings, or context. Confidence would increase with more comprehensive clinical information.*\n\n---\n\n**Note:**  \nThis analysis is not a substitute for a thorough clinical evaluation. Please ensure the patient is reviewed by a healthcare professional for a complete assessment and appropriate management.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 04:39:46', NULL, 98),
(24, 53, '44', 'Headace', '**Patient Analysis**\n\n**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (text appears non-informative)\n\n**Current Symptom:**  \n- Headache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the limited information (isolated headache in a 13-year-old male), possible causes include:\n\n- **Primary Headache Disorders:**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes:**\n  - Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis)\n  - Medication overuse or withdrawal\n  - Dehydration\n  - Vision problems (refractive errors)\n  - Trauma (concussion, subdural hematoma)\n  - Intracranial pathology (tumor, hydrocephalus, idiopathic intracranial hypertension)\n  - Hypertension\n  - Dental or temporomandibular joint (TMJ) issues\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- Detailed history and physical/neurological examination\n\n**Further Investigations (if indicated by history/exam):**\n- CBC, CRP/ESR (if infection or inflammation suspected)\n- Urinalysis (if systemic symptoms)\n- Imaging (CT/MRI brain) if red flags present (see below)\n- Lumbar puncture (if meningitis or subarachnoid hemorrhage suspected)\n- Ophthalmologic evaluation (if visual symptoms or papilledema suspected)\n- Blood pressure measurement\n\n---\n\n### 3. Urgency Level\n\n**Medium**  \n- Headache in a 13-year-old is common and often benign, but further assessment is needed to rule out serious causes, especially if red flags are present.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- Isolated headache in an adolescent is most commonly due to primary headache disorders.\n- Lack of associated symptoms (fever, neck stiffness, vomiting, visual changes, altered consciousness) in the provided information.\n- No trauma or chronic medical conditions reported.\n- Incomplete medical history; further details needed for comprehensive assessment.\n\n---\n\n### 5. Red Flags to Watch For\n\nImmediate evaluation is warranted if any of the following are present:\n- Sudden, severe (\"thunderclap\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Altered mental status, seizures, focal neurological deficits\n- Papilledema or visual changes\n- Headache worse with Valsalva, lying down, or in the morning (raised intracranial pressure)\n- Recent head trauma\n- Persistent vomiting\n- Immunosuppression or known malignancy\n\n---\n\n### 6. Confidence Level\n\n**Confidence Level:** 60%  \n- Confidence is limited by the lack of detailed history, associated symptoms, and physical findings. Further information is essential for a more accurate assessment.\n\n---\n\n**Note:**  \nThis analysis is based on the limited information provided. A thorough clinical evaluation by a healthcare professional is essential for accurate diagnosis and management. If any red flag symptoms develop, seek immediate medical attention.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 04:50:24', NULL, 98),
(25, 53, '44', 'Headache', '**Patient Information:**  \nName: Mr Patient  \nAge: 13 years  \nGender: Male  \nMedical History: Not specified (notation \"dfgdfg\" is non-informative)\n\n**Current Symptom:**  \nHeadache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nIn a 13-year-old male presenting with headache, differentials include:\n\n- **Primary Headaches:**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common at this age)\n\n- **Secondary Headaches:**\n  - Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis/encephalitis)\n  - Medication overuse or withdrawal\n  - Head trauma (concussion, subdural/epidural hematoma)\n  - Vision problems (refractive errors)\n  - Intracranial mass lesion (tumor, abscess, hydrocephalus)\n  - Hypertension\n  - Idiopathic intracranial hypertension\n\n---\n\n### 2. Recommended Diagnostic Tests\n\nThe choice of tests depends on further history and physical findings. Initial recommendations:\n\n- **History & Physical Exam:** Detailed neurological and general physical examination\n- **Basic Investigations:**\n  - Vital signs (including blood pressure)\n  - Fundoscopy (to assess for papilledema)\n  - Visual acuity testing\n- **If red flags or abnormal findings:**\n  - Neuroimaging (CT/MRI brain)\n  - Lumbar puncture (if meningitis, encephalitis, or subarachnoid hemorrhage suspected)\n  - Laboratory tests (CBC, CRP, ESR, electrolytes)\n\n---\n\n### 3. Urgency Level\n\n- **Medium** (based on isolated headache and lack of red flag symptoms in the provided information)\n- **High** if any red flags are present (see below)\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- The symptom is non-specific: further history is essential (onset, duration, quality, associated symptoms, triggers, family history, medication use, trauma, recent infections).\n- No mention of fever, neck stiffness, vomiting, visual changes, or altered consciousness.\n- No prior medical history provided.\n- Headaches in this age group are often benign but secondary causes must be ruled out, especially with new, severe, or progressive symptoms.\n\n---\n\n### 5. Red Flags to Watch For\n\n- Sudden, severe (“thunderclap”) headache\n- Headache with fever, neck stiffness, photophobia (concern for meningitis/encephalitis)\n- Altered mental status, confusion, or seizures\n- Focal neurological deficits (weakness, numbness, vision loss)\n- Papilledema or signs of increased intracranial pressure (vomiting, worse lying down)\n- Headache waking patient from sleep\n- Recent head trauma\n- Immunocompromised state or known malignancy\n\n---\n\n### 6. Confidence Level\n\n**Confidence Level:** 70%  \n*Rationale: The analysis is based on a single, non-specific symptom with insufficient clinical context or history. Confidence would increase with a more detailed history and examination findings.*\n\n---\n\n**Note:**  \nThis analysis is intended to guide further assessment and is not a substitute for direct clinical evaluation. Prompt review by a healthcare professional is recommended to obtain a thorough history, perform an examination, and determine appropriate management.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 04:51:38', NULL, 98),
(26, 53, '44', 'headache', '**Patient Information:**  \nName: Mr Patient  \nAge: 13 years  \nGender: Male  \nMedical History: Not specified (text \"dfgdfg\" is not interpretable)\n\n**Current Symptom:**  \nHeadache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the limited information (isolated headache in a 13-year-old male), consider the following common and serious causes:\n\n- **Primary Headache Disorders:**\n  - Tension-type headache\n  - Migraine (with or without aura)\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes:**\n  - Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis)\n  - Medication overuse or withdrawal\n  - Vision problems (e.g., refractive errors)\n  - Trauma (recent head injury)\n  - Intracranial pathology (e.g., tumor, hydrocephalus, idiopathic intracranial hypertension)\n  - Hypertension\n  - Dehydration\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- Detailed history and physical examination (including neurological exam)\n- Assessment for associated symptoms: fever, neck stiffness, photophobia, vomiting, visual changes, altered mental status, recent trauma\n\n**If Red Flags or Abnormal Findings:**\n- Neuroimaging (CT or MRI brain)\n- Lumbar puncture (if meningitis or subarachnoid hemorrhage suspected)\n- Blood tests (CBC, inflammatory markers if infection suspected)\n- Ophthalmologic evaluation (if visual symptoms or papilledema suspected)\n\n---\n\n### 3. Urgency Level\n\n**Medium**  \n- Most headaches in this age group are benign, but a careful assessment for red flags is essential.\n- If any red flags are present (see below), urgency escalates to **High**.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- Isolated headache in a 13-year-old is most commonly due to primary headache disorders or benign causes.\n- Lack of additional symptoms (fever, vomiting, altered consciousness) in the provided data lowers suspicion for acute life-threatening causes, but absence of evidence is not evidence of absence.\n- Medical history is not provided; relevant history (e.g., recent trauma, family history of migraine, medication use, prior similar episodes) is crucial for further narrowing the differential.\n\n---\n\n### 5. Red Flags to Watch For\n\n- Sudden, severe (\"thunderclap\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Headache with vomiting, especially early morning or projectile\n- Altered mental status, confusion, seizures\n- Focal neurological deficits (weakness, vision loss, ataxia)\n- Papilledema (suggestive of increased intracranial pressure)\n- Recent head trauma\n- Immunosuppression or underlying malignancy\n\n---\n\n### 6. Confidence Level\n\n**Confidence Level:** 60%  \n- Confidence is moderate due to the limited clinical information provided. A more detailed history and examination are essential for a more accurate assessment.\n\n---\n\n**Note:**  \nThis analysis is based on the information provided. A thorough clinical evaluation by a healthcare professional is necessary for accurate diagnosis and management. If any red flag symptoms develop, seek immediate medical attention.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 04:57:05', NULL, 98),
(27, 53, '44', 'Headache', '**Patient Information:**  \nName: Mr Patient  \nAge: 13 years  \nGender: Male  \nMedical History: Not specified (text appears non-informative)\n\n**Current Symptom:**  \nHeadache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nGiven the limited information (isolated headache in a 13-year-old male), consider the following common and serious causes:\n\n- **Primary Headache Disorders:**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes:**\n  - Viral or bacterial infection (e.g., sinusitis, upper respiratory infection, meningitis)\n  - Medication overuse or withdrawal\n  - Dehydration\n  - Vision problems (refractive errors)\n  - Trauma (concussion, subdural hematoma)\n  - Intracranial mass or increased intracranial pressure (rare but serious)\n  - Hypertension\n  - Dental issues (e.g., temporomandibular joint dysfunction)\n  - Sleep disorders\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial evaluation should be guided by history and physical examination.**  \nIf the headache is new, severe, or associated with concerning features, consider:\n\n- **Basic Workup:**\n  - Full neurological examination\n  - Vital signs (including blood pressure)\n  - Fundoscopic examination (for papilledema)\n  - Sinus examination\n\n- **Further Testing (if indicated by red flags or abnormal exam):**\n  - CBC, CRP/ESR (if infection or inflammation suspected)\n  - CT or MRI brain (if signs of increased intracranial pressure, focal neurological deficit, or trauma)\n  - Lumbar puncture (if meningitis or subarachnoid hemorrhage suspected)\n  - Vision assessment (if visual symptoms present)\n\n---\n\n### 3. Urgency Level\n\n**Medium**  \n- Most pediatric headaches are benign, but the urgency increases if red flags are present (see below).\n- If any red flags are present, escalate to **High** urgency.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- Isolated headache in a 13-year-old is most commonly due to benign causes (migraine, tension-type).\n- Lack of additional symptoms (fever, neck stiffness, vomiting, altered mental status, visual changes, trauma) makes serious causes less likely, but absence of information does not rule them out.\n- Detailed history (onset, duration, character, associated symptoms, triggers, family history, medication use) and physical exam are essential for further risk stratification.\n\n---\n\n### 5. Red Flags to Watch For\n\n- Sudden, severe (\"thunderclap\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis)\n- Altered mental status, confusion, or seizures\n- Focal neurological deficits (weakness, vision loss, ataxia)\n- Papilledema or signs of increased intracranial pressure (worse with lying down, vomiting)\n- Headache waking from sleep or worse in the morning\n- Recent head trauma\n- Immunosuppression or known malignancy\n- Persistent vomiting\n\n---\n\n### 6. Confidence Level\n\n**Confidence Level:** 70%  \n- Confidence is moderate due to the very limited clinical information provided. A thorough history and physical examination are required for a more definitive assessment.\n\n---\n\n**Note:**  \nThis analysis is based on the information provided. A face-to-face evaluation by a healthcare professional is essential for accurate diagnosis and management. If any red flags are present, seek urgent medical attention.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 05:18:57', NULL, 98),
(28, 53, '44', 'headache', '**Patient Information:**  \nName: Mr Patient  \nAge: 13 years  \nGender: Male  \nMedical History: Not specified (text \"dfgdfg\" is non-informative)\n\n**Presenting Symptom:**  \nHeadache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nIn a 13-year-old male with headache and no further history provided, consider the following common and serious causes:\n\n- **Primary Headache Disorders:**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes:**\n  - Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis)\n  - Medication overuse headache\n  - Head trauma/concussion\n  - Vision problems (refractive errors, eye strain)\n  - Dehydration\n  - Sleep disturbances\n  - Intracranial pathology (e.g., mass lesion, hydrocephalus, idiopathic intracranial hypertension)\n  - Hypertension\n  - Dental issues (e.g., temporomandibular joint dysfunction)\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- **History and Physical Examination:**  \n  - Detailed headache history (onset, duration, location, quality, associated symptoms, triggers, relieving factors, family history)\n  - Neurological examination\n  - Vital signs (including blood pressure)\n\n**Further Investigations (if indicated by history/exam):**\n- **Laboratory Tests:**  \n  - CBC, CRP/ESR (if infection or inflammation suspected)\n- **Imaging:**  \n  - Brain MRI or CT (if red flags present or abnormal neurological findings)\n- **Other:**  \n  - Ophthalmologic evaluation (if visual symptoms or papilledema suspected)\n  - Lumbar puncture (if meningitis or raised intracranial pressure suspected)\n\n---\n\n### 3. Urgency Level\n\n**Medium**  \n- Most pediatric headaches are benign, but a thorough assessment is needed to rule out serious causes.\n- Urgency increases to **High** if any red flags (see below) are present.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **Age-appropriate causes:** Migraine and tension-type headaches are common in adolescents.\n- **Lack of detailed history:** Unable to assess chronicity, associated symptoms (e.g., fever, vomiting, photophobia, neck stiffness), or precipitating factors.\n- **No medical history provided:** Unknown risk factors or comorbidities.\n- **No mention of trauma or systemic symptoms.**\n- **No neurological findings provided.**\n\n---\n\n### 5. Red Flags to Watch For\n\nImmediate evaluation is warranted if any of the following are present:\n\n- Sudden, severe (\"worst ever\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Altered mental status, seizures, or focal neurological deficits\n- Papilledema or visual changes\n- Headache worse with Valsalva, lying down, or in the morning (raised intracranial pressure)\n- Recent head trauma\n- Persistent vomiting\n- Immunosuppression or known malignancy\n- Age <6 years with new severe headache\n\n---\n\n**Summary:**  \nA 13-year-old male with headache requires a detailed history and physical exam to guide further workup. Most headaches in this age group are benign, but red flags must be excluded. If any concerning features are present, urgent neuroimaging and specialist referral are indicated.\n\n**Recommendation:**  \nConsult a healthcare professional for a comprehensive evaluation. If any red flags develop, seek immediate medical attention.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 05:32:18', NULL, 98),
(29, 53, '44', 'headache', '**Patient Information:**  \nName: Mr Patient  \nAge: 13 years  \nGender: Male  \nMedical History: Not specified (entry \"dfgdfg\" appears non-informative)\n\n**Presenting Symptom:**  \nHeadache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nIn a 13-year-old male presenting with headache, consider the following common and serious causes:\n\n**Primary Headache Disorders:**\n- Migraine (with or without aura)\n- Tension-type headache\n- Cluster headache (less common in this age group)\n\n**Secondary Headache Causes:**\n- Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis)\n- Medication overuse headache\n- Head trauma/concussion\n- Vision problems (refractive errors)\n- Dental issues (e.g., temporomandibular joint dysfunction)\n- Intracranial pathology (e.g., tumor, hydrocephalus, idiopathic intracranial hypertension)\n- Hypertension\n- Dehydration\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- Comprehensive history and physical examination, including neurological assessment\n- Vital signs (including blood pressure)\n- Fundoscopic examination (to assess for papilledema)\n\n**Further Investigations (if indicated by history/exam):**\n- CBC, CRP/ESR (if infection or inflammation suspected)\n- Lumbar puncture (if meningitis or subarachnoid hemorrhage suspected)\n- Neuroimaging (CT/MRI brain) if:\n  - Abnormal neurological findings\n  - Sudden onset (\"thunderclap\" headache)\n  - Signs of raised intracranial pressure\n  - Headache awakens patient from sleep or is worse in the morning\n  - New onset severe headache\n- Sinus imaging (if sinusitis suspected)\n- Vision assessment (if visual symptoms present)\n\n---\n\n### 3. Urgency Level\n\n**Medium** (based on current information)\n\n- **Low** if headache is mild, intermittent, with no red flags, and normal exam.\n- **High** if any red flags (see below) are present.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **History:** Onset, duration, location, character, severity, associated symptoms (nausea, vomiting, photophobia, phonophobia, visual changes, neck stiffness, fever, recent trauma, focal neurological deficits, recent illness).\n- **Family history:** Migraine or other headache disorders.\n- **Medication history:** Recent changes, over-the-counter or prescription drugs.\n- **Social history:** School stress, screen time, sleep patterns.\n- **Physical exam:** General appearance, vital signs, neurological exam, fundoscopic exam, sinus tenderness, neck stiffness.\n\n---\n\n### 5. Red Flags to Watch For\n\n- Sudden, severe (\"worst ever\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis)\n- Altered mental status, confusion, seizures\n- Focal neurological deficits (weakness, vision loss, ataxia)\n- Papilledema (signs of raised intracranial pressure)\n- Headache that awakens from sleep or is worse in the morning\n- Recent head trauma\n- Persistent vomiting\n- Immunosuppression or known malignancy\n\n---\n\n**Clinical Note:**  \nGiven the limited information, a thorough history and physical examination are essential to guide further workup. If any red flags are present, urgent evaluation is warranted. Otherwise, outpatient management and monitoring may be appropriate.\n\n**Recommendation:**  \nAdvise prompt evaluation by a healthcare professional to further characterize the headache and rule out serious causes.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 05:33:27', NULL, 98),
(30, 53, '44', 'Headache', '**Patient Analysis: Headache in a 13-year-old Male**\n\n---\n\n**1. Potential Differential Diagnoses**\n\n- **Primary Headache Disorders**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes**\n  - Sinusitis\n  - Viral or bacterial infection (e.g., upper respiratory tract infection, meningitis)\n  - Medication overuse headache\n  - Refractive error (vision problems)\n  - Trauma (recent head injury)\n  - Intracranial pathology (tumor, hydrocephalus, hemorrhage)\n  - Hypertension\n  - Dental issues (e.g., temporomandibular joint dysfunction)\n  - Dehydration\n\n---\n\n**2. Recommended Diagnostic Tests**\n\n*Initial evaluation should be guided by history and physical examination. Consider the following:*\n\n- **Basic Workup**\n  - Detailed history and neurological examination\n  - Vital signs (including blood pressure)\n  - Fundoscopic examination (for papilledema)\n  - Sinus examination\n\n- **Further Investigations (if indicated by red flags or abnormal findings)**\n  - Neuroimaging (MRI or CT brain) if suspicion of intracranial pathology\n  - Lumbar puncture (if signs of meningitis or subarachnoid hemorrhage)\n  - CBC, CRP/ESR (if infection or inflammation suspected)\n  - Vision assessment (if visual symptoms present)\n\n---\n\n**3. Urgency Level**\n\n- **Medium** (based on current information)\n  - *If only headache is present without red flags or abnormal findings, outpatient evaluation is appropriate.*\n  - *If any red flags are present (see below), urgency increases to High.*\n\n---\n\n**4. Key Observations and Clinical Notes**\n\n- Age and gender: 13-year-old male\n- Symptom: Headache (no further details provided)\n- No past medical history of note (medical history entry appears non-specific)\n- No associated symptoms provided (e.g., fever, neck stiffness, vomiting, visual changes, trauma)\n- No mention of recent illness, trauma, or medication use\n\n*Clinical notes:*\n- A thorough history is essential (onset, duration, location, character, associated symptoms, triggers, family history of migraine, impact on daily activities).\n- Physical and neurological examination is critical to rule out secondary causes.\n\n---\n\n**5. Red Flags to Watch For**\n\n- Sudden, severe (\"thunderclap\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Altered mental status, confusion, seizures\n- Focal neurological deficits (weakness, vision loss, ataxia)\n- Papilledema (suggests increased intracranial pressure)\n- Headache worsening with Valsalva, lying down, or in the morning\n- Recent head trauma\n- New onset headache in a patient with cancer or immunosuppression\n- Persistent vomiting\n- Headache that awakens from sleep\n\n---\n\n**Summary:**  \nMr Patient, a 13-year-old male, presents with headache. The differential is broad and includes primary and secondary causes. The urgency is medium unless red flags are present. A detailed history and examination are essential to guide further workup. Immediate attention is warranted if any red flags develop.\n\n**Recommendation:**  \nAdvise prompt evaluation by a healthcare professional for further assessment and management.', 'sinus', '', 'Certainly. Based on the information provided—including the clinical input of \"sinus\"—the most likely diagnosis is **acute sinusitis** (rhinosinusitis) as the cause of headache in this 13-year-old male. Below is a comprehensive, evidence-based treatment plan:\n\n---\n\n### 1. Primary Diagnosis\n\n**Acute Sinusitis (Acute Rhinosinusitis)**\n\n---\n\n### 2. Treatment Goals\n\n- Relieve headache and sinus symptoms\n- Eradicate infection (if bacterial)\n- Prevent complications (e.g., orbital or intracranial spread)\n- Restore normal sinus function\n- Minimize unnecessary antibiotic use\n\n---\n\n### 3. Medication Recommendations\n\n#### a. **First-line: Symptomatic Management**\n- **Analgesics/Antipyretics:**  \n  - *Acetaminophen* 10–15 mg/kg/dose every 4–6 hours as needed (max 75 mg/kg/day)\n  - *Ibuprofen* 5–10 mg/kg/dose every 6–8 hours as needed (max 40 mg/kg/day)\n\n- **Nasal Saline Irrigation:**  \n  - Isotonic saline nasal spray or irrigation 2–3 times daily\n\n- **Intranasal Corticosteroids** (if significant nasal congestion or allergic rhinitis):  \n  - *Fluticasone nasal spray* 1–2 sprays per nostril once daily\n\n#### b. **Antibiotics**  \n*Indicated only if:*\n- Symptoms persist >10 days without improvement\n- Severe symptoms (fever ≥39°C, purulent nasal discharge, facial pain) for ≥3 consecutive days\n- Worsening symptoms after initial improvement (\"double sickening\")\n\n**First-line antibiotic:**\n- *Amoxicillin-clavulanate* 45 mg/kg/day (amoxicillin component) divided every 12 hours for 10 days  \n  - If non-severe penicillin allergy: *Cefdinir* 14 mg/kg/day in 1–2 doses for 10 days  \n  - If severe allergy: *Levofloxacin* 10–20 mg/kg/day once daily for 10 days\n\n**Note:** Do not use macrolides due to resistance.\n\n---\n\n### 4. Non-Pharmacological Interventions\n\n- Encourage adequate hydration\n- Warm compresses over sinuses for pain relief\n- Rest\n- Avoid exposure to irritants (smoke, strong odors)\n- Humidified air (cool mist humidifier in bedroom)\n\n---\n\n### 5. Follow-up Schedule\n\n- **Routine:** Reassess in 48–72 hours if symptoms worsen or fail to improve\n- **Earlier:** Immediate evaluation if red flag symptoms develop (see below)\n- **After antibiotics:** Re-evaluate at end of course if not fully resolved\n\n---\n\n### 6. Monitoring Parameters\n\n- Symptom resolution (headache, nasal congestion, discharge, facial pain)\n- Temperature (fever resolution)\n- Adverse effects of medications (GI upset, rash, allergic reaction)\n- Signs of complications (see below)\n\n---\n\n### 7. Patient Education Points\n\n- Most sinus infections are viral and resolve without antibiotics\n- Use antibiotics only as prescribed; complete the full course if started\n- Proper technique for nasal saline irrigation\n- Recognize and report red flag symptoms promptly\n- Avoid overuse of decongestants (risk of rebound congestion)\n- Maintain good hand hygiene to prevent spread of infection\n\n---\n\n### 8. Potential Complications to Watch For\n\n- **Orbital complications:** Periorbital swelling, erythema, visual changes, ophthalmoplegia\n- **Intracranial complications:** Severe headache, altered mental status, persistent vomiting, neck stiffness, seizures\n- **Chronic sinusitis:** Symptoms >12 weeks\n- **Antibiotic adverse reactions:** Rash, diarrhea, anaphylaxis\n\n---\n\n**Summary:**  \nMr Patient likely has acute sinusitis. Begin with symptomatic management; reserve antibiotics for persistent, severe, or worsening symptoms. Educate on red flags and ensure close follow-up. Consult ENT or refer to hospital if complications or red flags arise.\n\n**Always recommend consultation with a healthcare professional for confirmation of diagnosis and ongoing management.**', 'Medications:\n1. Acetaminophen 325 mg - 1 tablet by mouth every 4–6 hours as needed for pain or fever - Maximum 5 doses in 24 hours\n2. Isotonic saline nasal spray - 2 sprays per nostril - 2 to 3 times daily - For 10 days\n3. Fluticasone nasal spray 50 mcg - 1 spray per nostril - Once daily - For 10 days\n\nInstructions:\n- Take acetaminophen with or without food as needed for headache or fever. Do not exceed the maximum daily dose.\n- Use saline nasal spray to help clear nasal congestion.\n- Use fluticasone nasal spray at the same time each day. Shake well before use.\n- Drink plenty of fluids and get adequate rest.\n- Apply a warm compress over the sinuses for pain relief.\n\nPrecautions:\n- Do not use over-the-counter decongestant nasal sprays for more than 3 days to avoid rebound congestion.\n- Seek medical attention if symptoms worsen, do not improve after 10 days, or if you develop severe headache, swelling around the eyes, vision changes, persistent vomiting, neck stiffness, or rash.', 992, 992, '2025-09-08 05:37:00', '2025-09-08 05:38:35', 98);
INSERT INTO `treatment_plans` (`id`, `patient_id`, `doctor_id`, `symptoms`, `symptom_analysis`, `doctor_input`, `test_results`, `treatment_plan`, `prescription`, `created_by`, `updated_by`, `created_at`, `updated_at`, `hospital_id`) VALUES
(31, 53, '44', 'headache', '**Patient Information:**  \nName: Mr Patient  \nAge: 13 years  \nGender: Male  \nMedical History: Not specified (text appears non-informative)\n\n**Presenting Symptom:**  \nHeadache\n\n---\n\n### 1. Potential Differential Diagnoses\n\nIn a 13-year-old male presenting with headache, consider the following common and serious causes:\n\n- **Primary Headache Disorders:**\n  - Migraine (with or without aura)\n  - Tension-type headache\n  - Cluster headache (less common in this age group)\n\n- **Secondary Headache Causes:**\n  - Viral or bacterial infection (e.g., sinusitis, upper respiratory tract infection, meningitis)\n  - Medication overuse or withdrawal\n  - Refractive error (vision problems)\n  - Trauma (concussion, subdural/epidural hematoma)\n  - Intracranial mass or space-occupying lesion (rare, but important to consider)\n  - Hypertension\n  - Dental or temporomandibular joint (TMJ) issues\n  - Dehydration\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n**Initial Evaluation:**\n- **Thorough history and physical examination** (including neurological exam)\n- **Vital signs** (including blood pressure, temperature)\n\n**Further investigations based on clinical suspicion:**\n- **CBC, CRP/ESR** (if infection or inflammation suspected)\n- **Urinalysis** (if systemic symptoms)\n- **Ophthalmologic evaluation** (if visual symptoms)\n- **Neuroimaging (CT/MRI brain):**\n  - If red flags present (see below)\n  - Abnormal neurological findings\n  - Sudden onset (\"thunderclap\" headache)\n  - Headache worsened by Valsalva or position\n- **Lumbar puncture:** If meningitis or subarachnoid hemorrhage suspected and imaging is negative\n\n---\n\n### 3. Urgency Level\n\n**Medium**  \n- Most pediatric headaches are benign, but a careful assessment is required to rule out serious causes.\n- If any red flags are present (see below), urgency increases to **High**.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **History:** Onset, duration, frequency, location, quality, severity, associated symptoms (nausea, vomiting, photophobia, phonophobia, visual changes, fever, neck stiffness, recent trauma, altered mental status)\n- **Family history:** Migraines or neurological disorders\n- **Medication use:** Recent changes, overuse\n- **Social history:** School stress, sleep patterns, screen time, caffeine use\n- **Physical exam:** Full neurological exam, fundoscopic exam (for papilledema), assessment for meningeal signs, sinus tenderness\n\n---\n\n### 5. Red Flags to Watch For\n\n- Sudden, severe (\"worst ever\") headache\n- Headache with fever, neck stiffness, photophobia (meningitis/encephalitis)\n- Altered mental status, confusion, seizures\n- Focal neurological deficits (weakness, vision loss, ataxia)\n- Papilledema (suggests increased intracranial pressure)\n- Headache worsened by lying down, coughing, or Valsalva\n- Recent head trauma\n- Persistent vomiting\n- Headache awakening from sleep or present on awakening\n- Immunosuppression or known malignancy\n\n---\n\n**Summary:**  \nA 13-year-old male with headache requires a thorough history and physical exam to distinguish between primary and secondary causes. Most headaches in this age group are benign, but red flags must be actively sought. If any are present, urgent evaluation and neuroimaging are warranted. Otherwise, outpatient workup and symptomatic management may be appropriate.\n\n**Recommendation:**  \nFurther clinical details are needed. Please consult a healthcare professional for a comprehensive evaluation.', 'migrane', '', 'Certainly. Here is a comprehensive, structured treatment plan for a 13-year-old male diagnosed with **migraine**:\n\n---\n\n## 1. Primary Diagnosis\n\n**Migraine headache** (pediatric/adolescent onset)\n\n---\n\n## 2. Treatment Goals\n\n- Rapid relief of acute migraine attacks\n- Minimize headache frequency, severity, and duration\n- Prevent migraine-related disability (school absence, activity limitation)\n- Reduce reliance on acute medications and prevent medication overuse\n- Identify and manage triggers\n- Monitor for and prevent complications\n\n---\n\n## 3. Medication Recommendations\n\n### a. **Acute (Abortive) Treatment**\n\n**First-line:**\n- **Acetaminophen**: 15 mg/kg/dose PO, max 1000 mg/dose, every 4–6 hours as needed (max 75 mg/kg/day or 4000 mg/day)\n- **Ibuprofen**: 10 mg/kg/dose PO, max 600 mg/dose, every 6–8 hours as needed (max 40 mg/kg/day or 2400 mg/day)\n\n**If inadequate response and diagnosis confirmed:**\n- **Triptans** (approved for pediatric use; age restrictions apply):\n    - **Sumatriptan nasal spray**: 5–20 mg (start with 10 mg), may repeat once after 2 hours if needed (max 40 mg/24h)\n    - **Rizatriptan**: 5 mg PO (for ages 6–17 years, weight-based), may repeat once after 2 hours (max 10 mg/24h)\n\n**Note:** Avoid opioid and barbiturate-containing medications.\n\n### b. **Preventive (Prophylactic) Treatment**\n\nConsider if:\n- ≥4 disabling headaches/month\n- Significant impact on quality of life\n- Poor response to acute therapy\n\n**Options:**\n- **Propranolol**: 10–20 mg PO BID, titrate as needed (max 2–4 mg/kg/day)\n- **Amitriptyline**: 0.25–1 mg/kg PO at bedtime\n- **Topiramate**: 25 mg PO at bedtime, titrate up to 100 mg/day as tolerated\n\n**Selection based on comorbidities, side effect profile, and patient/family preference.**\n\n---\n\n## 4. Non-Pharmacological Interventions\n\n- **Lifestyle modifications:**\n    - Regular sleep schedule\n    - Hydration (adequate fluid intake)\n    - Regular meals, avoid skipping meals\n    - Limit caffeine and screen time\n    - Regular physical activity\n- **Trigger identification and avoidance:** Keep a headache diary\n- **Stress management:** Relaxation techniques, cognitive-behavioral therapy (CBT) if indicated\n- **Biofeedback** (if available)\n- **Education** on early recognition and management of symptoms\n\n---\n\n## 5. Follow-up Schedule\n\n- **Initial follow-up:** 2–4 weeks after starting treatment or sooner if symptoms worsen\n- **Subsequent follow-ups:** Every 3 months if stable, or as clinically indicated\n- **Headache diary review** at each visit\n\n---\n\n## 6. Monitoring Parameters\n\n- **Headache frequency, severity, and duration** (headache diary)\n- **Medication use:** Frequency and response to abortive therapy\n- **Side effects** of medications (e.g., drowsiness, weight changes, mood changes)\n- **Impact on daily activities** (school attendance, participation in activities)\n- **Vital signs** (especially if on beta-blockers)\n- **Growth parameters** (height, weight, BMI)\n\n---\n\n## 7. Patient Education Points\n\n- **Nature of migraine:** Not dangerous, but can be disabling\n- **Importance of early treatment:** Take medication at onset of headache for best effect\n- **Avoid medication overuse:** Limit acute medications to ≤2–3 days/week to prevent rebound headaches\n- **Lifestyle factors:** Emphasize regular routines and trigger avoidance\n- **When to seek urgent care:** If headache is sudden/severe, associated with fever, neck stiffness, confusion, weakness, vision loss, or persistent vomiting\n\n---\n\n## 8. Potential Complications to Watch For\n\n- **Medication overuse headache** (rebound headache)\n- **Adverse effects** of medications (GI upset, sedation, mood changes, weight gain/loss, cognitive effects)\n- **Progression to chronic migraine**\n- **Psychosocial impact:** School absenteeism, anxiety, depression\n- **Development of new or atypical symptoms** (may indicate secondary cause)\n\n---\n\n**Note:**  \nThis plan should be individualized based on the patient’s full history, comorbidities, and response to therapy. All medication dosages should be confirmed and adjusted as appropriate for age and weight. **Consultation with a pediatric neurologist** is recommended for refractory or complex cases.\n\n**Always advise close follow-up and re-evaluation if symptoms change or do not improve.**', NULL, 992, 992, '2025-09-08 05:54:33', '2025-09-08 05:55:43', 98),
(32, 53, '44', 'RIght hand arm muscle pain ', '**Patient Information:**  \nName: Mr Patient  \nAge: 13 years  \nGender: Male  \nMedical History: Not specified (text appears as placeholder)\n\n**Presenting Complaint:**  \nRight hand/arm muscle pain\n\n---\n\n### 1. Potential Differential Diagnoses\n\n- **Muscle strain or overuse injury** (most common in adolescents, especially if involved in sports or physical activity)\n- **Minor trauma or contusion** (history of recent injury, fall, or impact)\n- **Tendinitis or tenosynovitis**\n- **Nerve compression or entrapment** (e.g., carpal tunnel syndrome, though less common at this age)\n- **Infection** (cellulitis, abscess, or myositis—especially if associated with redness, swelling, or fever)\n- **Referred pain** (from cervical radiculopathy or shoulder pathology)\n- **Juvenile idiopathic arthritis** (if associated with joint swelling, morning stiffness)\n- **Compartment syndrome** (rare, but critical to rule out if severe pain, swelling, or neurovascular compromise)\n- **Bone pathology** (e.g., fracture, osteomyelitis, bone tumor—less likely but important to consider)\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n- **Detailed physical examination** (inspection, palpation, range of motion, neurovascular assessment)\n- **Plain X-ray** of the right hand/arm (if trauma suspected or to rule out fracture)\n- **Ultrasound** (if soft tissue injury, abscess, or tenosynovitis suspected)\n- **CBC, ESR, CRP** (if infection or inflammatory process suspected)\n- **MRI** (if persistent, unexplained pain or suspicion of deep tissue involvement)\n- **Nerve conduction studies** (if neuropathic symptoms present)\n\n---\n\n### 3. Urgency Level\n\n- **Low to Medium**  \n  - If pain is mild, no trauma, no systemic symptoms, and no neurovascular compromise.\n- **High**  \n  - If any red flags (see below) are present.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **History:** Onset, duration, character, and location of pain; history of trauma or overuse; associated symptoms (swelling, redness, fever, numbness, weakness).\n- **Examination:** Look for swelling, erythema, warmth, deformity, tenderness, range of motion, and neurovascular status (capillary refill, pulses, sensation, motor function).\n- **Functional impact:** Ability to use the hand/arm, impact on daily activities.\n- **Systemic symptoms:** Fever, malaise, weight loss.\n\n---\n\n### 5. Red Flags to Watch For\n\n- **Severe, unrelenting pain** (especially out of proportion to exam)\n- **Rapidly increasing swelling or tightness** (suggestive of compartment syndrome)\n- **Neurovascular compromise** (numbness, tingling, weakness, pallor, absent pulses)\n- **Signs of infection** (fever, erythema, warmth, fluctuance)\n- **History of significant trauma**\n- **Systemic symptoms** (fever, weight loss, night sweats)\n- **Inability to move fingers/hand or loss of function**\n\n---\n\n**Summary:**  \nRight hand/arm muscle pain in a 13-year-old male is most commonly due to minor trauma or overuse, but a thorough history and examination are essential to rule out more serious causes. Immediate attention is required if any red flags are present. Further workup should be guided by clinical findings.\n\n**Recommendation:**  \nAdvise prompt clinical evaluation to determine the underlying cause and initiate appropriate management.', 'not sure', '', 'Certainly. Below is a comprehensive, structured treatment plan for a 13-year-old male presenting with right hand/arm muscle pain, based on the information provided. This plan assumes no red flags or systemic symptoms are present and that the most likely diagnosis is a **muscle strain or overuse injury**. If further history or examination suggests another etiology, the plan should be adjusted accordingly.\n\n---\n\n## 1. Primary Diagnosis\n\n**Muscle strain or overuse injury** of the right hand/arm  \n*(If new information arises—such as trauma, infection, or neurological symptoms—reassess and update diagnosis.)*\n\n---\n\n## 2. Treatment Goals\n\n- Relieve pain and restore function\n- Prevent further injury\n- Identify and address any underlying or serious pathology\n- Educate patient and family on injury prevention and warning signs\n\n---\n\n## 3. Medication Recommendations\n\n**First-line (if no contraindications):**\n- **Acetaminophen (Paracetamol):**  \n  - Dose: 10–15 mg/kg per dose every 4–6 hours as needed (maximum 75 mg/kg/day, not to exceed 3,000 mg/day)\n- **OR Ibuprofen:**  \n  - Dose: 5–10 mg/kg per dose every 6–8 hours as needed (maximum 40 mg/kg/day, not to exceed 2,400 mg/day)\n- **Duration:** Use for 3–5 days or until pain resolves. Taper as symptoms improve.\n\n**Note:**  \n- Avoid NSAIDs if there is suspicion of fracture, renal impairment, or GI issues.\n- Do not use both acetaminophen and ibuprofen simultaneously unless specifically indicated.\n\n---\n\n## 4. Non-Pharmacological Interventions\n\n- **Rest:** Limit activities that exacerbate pain for 48–72 hours.\n- **Ice:** Apply ice packs to the affected area for 15–20 minutes every 2–3 hours for the first 48 hours.\n- **Compression:** Use an elastic bandage if mild swelling is present (ensure no neurovascular compromise).\n- **Elevation:** Keep the arm elevated above heart level to reduce swelling.\n- **Gentle stretching and range-of-motion exercises:** Begin as pain allows to prevent stiffness.\n- **Physical therapy referral:** If pain persists beyond 1–2 weeks or if there is functional limitation.\n\n---\n\n## 5. Follow-up Schedule\n\n- **Initial follow-up:** 3–5 days to reassess pain, function, and check for any new symptoms.\n- **Further follow-up:** 1–2 weeks if symptoms persist or worsen.\n- **Immediate review:** If any red flags develop (see below).\n\n---\n\n## 6. Monitoring Parameters\n\n- Pain severity and functional status\n- Swelling, redness, or warmth\n- Neurovascular status (sensation, movement, capillary refill)\n- Signs of infection (fever, local erythema, fluctuance)\n- Ability to perform daily activities\n\n---\n\n## 7. Patient Education Points\n\n- Importance of rest and gradual return to activity\n- Proper use of medications (dose, frequency, duration)\n- How to apply ice and compression safely\n- Warning signs that require urgent medical attention:\n  - Severe or worsening pain\n  - Numbness, tingling, or weakness\n  - Inability to move fingers/hand\n  - Swelling, redness, or warmth\n  - Fever or systemic symptoms\n- Avoiding reinjury: warm-up before activities, use proper technique, avoid overuse\n\n---\n\n## 8. Potential Complications to Watch For\n\n- **Compartment syndrome:** Severe pain, swelling, neurovascular compromise (medical emergency)\n- **Infection:** Increasing redness, warmth, swelling, fever\n- **Nerve injury:** Persistent numbness, tingling, or weakness\n- **Chronic pain or loss of function:** If not improving as expected\n- **Missed fracture or underlying pathology:** If pain persists or worsens despite treatment\n\n---\n\n**If any red flags or concerning features develop, or if the diagnosis is uncertain, escalate care and consider further diagnostic workup (imaging, labs, specialist referral).**\n\n---\n\n**Note:**  \nThis plan is for general guidance and should be tailored to the individual patient based on clinical findings and response to initial management. Always consult with a healthcare professional for definitive diagnosis and treatment.', 'Medications:\n1. Ibuprofen 200 mg (tablet or liquid, as appropriate) - Take 1 tablet (or 5–10 mg/kg per dose) by mouth every 6–8 hours as needed for pain - For up to 5 days\n\nInstructions:\n- Take with food to reduce stomach upset.\n- Do not exceed 40 mg/kg per day or 2,400 mg per day (whichever is lower).\n- Use the lowest effective dose for the shortest duration needed.\n- Rest the affected arm and avoid activities that cause pain for 48–72 hours.\n- Apply ice to the painful area for 15–20 minutes every 2–3 hours for the first 48 hours.\n- Elevate the arm above heart level to reduce swelling.\n\nPrecautions:\n- Do not use if you have a history of stomach ulcers, kidney problems, or allergy to ibuprofen.\n- Stop medication and seek medical attention if you develop severe pain, swelling, redness, numbness, tingling, weakness, fever, or if symptoms worsen or do not improve after 5 days.', 992, 992, '2025-09-08 06:10:28', '2025-09-08 06:12:38', 98),
(33, 53, '44', 'Server lower abdomen pain', '**Patient Analysis**\n\n**Patient Information:**  \n- Name: Mr Patient  \n- Age: 13 years  \n- Gender: Male  \n- Medical History: Not specified (text appears as \"dfgdfg\")\n\n**Current Symptom:**  \n- Severe lower abdominal pain\n\n---\n\n### 1. Potential Differential Diagnoses\n\nFor a 13-year-old male with severe lower abdominal pain, consider the following:\n\n- **Acute Appendicitis**  \n  (Most common surgical emergency in this age group; pain often starts periumbilically and migrates to the right lower quadrant)\n- **Testicular Torsion**  \n  (Can present as lower abdominal pain, especially if referred pain; must be ruled out urgently)\n- **Gastroenteritis**  \n  (Usually associated with vomiting/diarrhea)\n- **Constipation/Fecal Impaction**\n- **Urinary Tract Infection (UTI) or Cystitis**\n- **Mesenteric Adenitis**  \n  (Common in children/adolescents, often mimics appendicitis)\n- **Intussusception**  \n  (More common in younger children, but possible)\n- **Inguinal Hernia (incarcerated/strangulated)**\n- **Meckel’s Diverticulitis**\n- **Inflammatory Bowel Disease (IBD)**\n- **Henoch-Schönlein Purpura (HSP)**\n- **Trauma**\n\n---\n\n### 2. Recommended Diagnostic Tests\n\n- **Physical Examination:**  \n  - Abdominal exam (tenderness, rebound, guarding, masses, bowel sounds)\n  - Genital exam (testicular tenderness, swelling, cremasteric reflex)\n- **Laboratory Tests:**  \n  - CBC (leukocytosis)\n  - CRP/ESR (inflammation)\n  - Urinalysis (UTI, hematuria)\n  - Electrolytes, renal function\n- **Imaging:**  \n  - Abdominal ultrasound (appendicitis, intussusception, hernia, testicular torsion)\n  - Scrotal ultrasound with Doppler (if testicular torsion suspected)\n  - Abdominal X-ray (if obstruction/constipation suspected)\n- **Other:**  \n  - Stool studies (if diarrhea present)\n\n---\n\n### 3. Urgency Level\n\n**High**  \n- Severe lower abdominal pain in a 13-year-old male is a potentially surgical emergency.  \n- Immediate evaluation is warranted to rule out appendicitis, testicular torsion, or other acute abdominal conditions.\n\n---\n\n### 4. Key Observations and Clinical Notes\n\n- **Pain characteristics:** Onset, duration, location, migration, severity, associated symptoms (nausea, vomiting, fever, urinary symptoms, constipation/diarrhea)\n- **Associated symptoms:** Vomiting, fever, dysuria, hematuria, scrotal pain/swelling, rash, recent trauma\n- **Past medical/surgical history:** Not provided\n- **Vital signs:** Not provided (tachycardia, hypotension, fever are important)\n- **Physical findings:** Not provided (abdominal tenderness, peritonism, testicular findings)\n\n---\n\n### 5. Red Flags to Watch For\n\n- **Signs of peritonitis:** Rebound tenderness, guarding, rigidity\n- **Hemodynamic instability:** Tachycardia, hypotension, pallor\n- **Testicular pain/swelling:** Absent cremasteric reflex, high-riding testis (testicular torsion)\n- **Persistent vomiting**\n- **Bloody stools or urine**\n- **Severe, worsening, or sudden-onset pain**\n- **Inability to pass urine or stool**\n- **Signs of sepsis:** Fever, altered mental status\n\n---\n\n**Summary:**  \nSevere lower abdominal pain in a 13-year-old male is a high-urgency presentation. Immediate evaluation is required to rule out surgical emergencies such as appendicitis and testicular torsion. Prompt physical examination, laboratory workup, and imaging are recommended. Monitor for red flags and consult pediatric surgery/urology as indicated.\n\n**Note:** This analysis is for informational purposes only. Immediate clinical assessment by a healthcare professional is essential.', NULL, NULL, NULL, NULL, 992, NULL, '2025-09-08 12:29:08', NULL, 98);

-- --------------------------------------------------------

--
-- Table structure for table `usage_logs`
--

CREATE TABLE `usage_logs` (
  `id` int(11) NOT NULL,
  `inventory_item_id` int(11) NOT NULL,
  `department_id` int(11) DEFAULT NULL,
  `used_by_type` enum('doctor','nurse','patient','department','other') NOT NULL,
  `used_by_id` int(11) DEFAULT NULL,
  `patient_id` int(11) DEFAULT NULL,
  `doctor_id` int(11) DEFAULT NULL,
  `quantity_used` int(11) NOT NULL,
  `unit_cost` decimal(10,2) DEFAULT 0.00,
  `total_cost` decimal(15,2) DEFAULT 0.00,
  `usage_date` timestamp NOT NULL DEFAULT current_timestamp(),
  `purpose` varchar(255) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `batch_number` varchar(100) DEFAULT NULL,
  `expiry_date` date DEFAULT NULL,
  `hospital_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `created_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `usage_logs`
--

INSERT INTO `usage_logs` (`id`, `inventory_item_id`, `department_id`, `used_by_type`, `used_by_id`, `patient_id`, `doctor_id`, `quantity_used`, `unit_cost`, `total_cost`, `usage_date`, `purpose`, `notes`, `batch_number`, `expiry_date`, `hospital_id`, `created_at`, `created_by`) VALUES
(1, 3, 0, 'nurse', 0, 0, 0, 30, 12.00, 360.00, '2025-08-08 00:38:00', 'sdfsfsdf', 'sdfsdfs', '', '0000-00-00', 98, '2025-08-08 00:38:56', 992),
(2, 2, 0, 'department', 0, 0, 0, 50, 12.00, 600.00, '2025-08-08 00:38:00', 'dfgdfgdfgd', 'fdgdgdfg', '', '0000-00-00', 98, '2025-08-08 00:39:25', 992),
(3, 1, 0, 'doctor', 0, 0, 44, 20, 10.00, 200.00, '2025-08-08 00:39:00', 'dfgfdgfdg', 'dfgfdgdg', '', '0000-00-00', 98, '2025-08-08 00:39:50', 992),
(4, 2, 0, 'nurse', 0, 0, 0, 50, 12.00, 600.00, '2025-09-03 14:40:00', 'Treatment', '', '', '0000-00-00', 98, '2025-09-03 14:41:01', 992);

--
-- Triggers `usage_logs`
--
DELIMITER $$
CREATE TRIGGER `tr_update_stock_on_usage` AFTER INSERT ON `usage_logs` FOR EACH ROW BEGIN
    DECLARE prev_stock INT;
    
    SELECT current_stock INTO prev_stock FROM inventory_items WHERE id = NEW.inventory_item_id;
    
    UPDATE inventory_items 
    SET current_stock = current_stock - NEW.quantity_used,
        updated_at = CURRENT_TIMESTAMP
    WHERE id = NEW.inventory_item_id;
    
    INSERT INTO stock_transactions (
        inventory_item_id, transaction_type, reference_type, reference_id, 
        quantity, unit_cost, total_cost, previous_stock, new_stock, 
        expiry_date, batch_number, hospital_id, created_by
    ) VALUES (
        NEW.inventory_item_id, 'usage', 'usage_log', NEW.id,
        -NEW.quantity_used, NEW.unit_cost, NEW.total_cost,
        prev_stock, prev_stock - NEW.quantity_used,
        NEW.expiry_date, NEW.batch_number,
        NEW.hospital_id, NEW.created_by
    );
END
$$
DELIMITER ;

-- --------------------------------------------------------

--
-- Table structure for table `users`
--

CREATE TABLE `users` (
  `id` int(11) UNSIGNED NOT NULL,
  `ip_address` varchar(15) NOT NULL,
  `username` varchar(100) NOT NULL,
  `password` varchar(255) NOT NULL,
  `salt` varchar(255) DEFAULT NULL,
  `email` varchar(100) NOT NULL,
  `activation_code` varchar(40) DEFAULT NULL,
  `forgotten_password_code` varchar(40) DEFAULT NULL,
  `forgotten_password_time` int(11) UNSIGNED DEFAULT NULL,
  `remember_code` varchar(40) DEFAULT NULL,
  `created_on` int(11) UNSIGNED NOT NULL,
  `last_login` int(11) UNSIGNED DEFAULT NULL,
  `active` tinyint(1) UNSIGNED DEFAULT NULL,
  `first_name` varchar(50) DEFAULT NULL,
  `last_name` varchar(50) DEFAULT NULL,
  `company` varchar(100) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `hospital_ion_id` varchar(100) DEFAULT NULL,
  `img_url` varchar(1000) DEFAULT NULL,
  `sidebar` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `users`
--

INSERT INTO `users` (`id`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `hospital_ion_id`, `img_url`, `sidebar`) VALUES
(1, '127.0.0.1', 'Super Admin', '$2y$08$7.GvR4bJco0I41DMIlz7W.ZITEKIegyT5u8dq8O49ivRMqR4pllUa', '', 'superadmin@hms.com', '', 'eX0.Bq6nP57EuXX4hJkPHO973e7a4c25f1849d3a', 1511432365, 'zCeJpcj78CKqJ4sVxVbxcO', 1268889823, 1756109699, 1, 'Admin', 'istrator', 'ADMIN', '0', NULL, NULL, '1'),
(992, '103.231.162.67', 'Hospital Admin', '$2y$08$s6rD5svVL5NRympXc.90l.oD4plJMIQHcpHnudtyi16Igh/KoLRI2', NULL, 'admin@hms.com', NULL, NULL, NULL, NULL, 1640871501, 1757313741, 1, NULL, NULL, NULL, NULL, NULL, 'uploads/userIcon.png', '1'),
(996, '103.231.162.67', 'Mr. Pharmacist', '$2y$08$JGEE1UKZeSN7FK6FuTE1reXgVih.i3Py5xosfLhAK/UIT3CkjaXyK', NULL, 'pharmacist@hms.com', NULL, NULL, NULL, NULL, 1640872306, 1731305559, 1, NULL, NULL, NULL, NULL, '992', NULL, '1'),
(997, '103.231.162.67', 'Mr. Laboratorist', '$2y$08$O4W9KfNQ0JKuh99pYZ.jau3C1JQjd8EqG4NPwXggI/9EqobywDCY.', NULL, 'laboratorist@hms.com', NULL, NULL, NULL, NULL, 1640872353, 1741462557, 1, NULL, NULL, NULL, NULL, '992', NULL, '1'),
(999, '103.231.162.67', 'Mr. Receptionist', '$2y$08$sV9w5r1M.eMwMwxrtXonvOGy7w43z2HpQg8NGhRTsHW.5EJ85cbIG', NULL, 'receptionist@hms.com', NULL, NULL, NULL, NULL, 1640872489, 1736862380, 1, NULL, NULL, NULL, NULL, '992', NULL, '1'),
(1037, '103.231.162.57', 'Mrs Nurse', '$2y$08$C6PSBOX7nBvbiVexQBxjguVkex.b/WVMzCFDEECBoecnUvj7qAwDi', NULL, 'nurse@hms.com', NULL, NULL, NULL, NULL, 1654758336, 1736862020, 1, NULL, NULL, NULL, NULL, '992', NULL, '1'),
(1065, '103.220.205.33', 'caSoft', '$2y$08$7gyVj4b5836qHiJdysQ6bOxN.qplvFGGvOH4T2y2Z0eZ6RXqX4Kg.', NULL, 'admin@example.commm', NULL, NULL, NULL, NULL, 1681107777, NULL, 1, NULL, NULL, NULL, NULL, '1064', NULL, NULL),
(1067, '103.220.205.33', 'Mr Accountant', '$2y$08$S2ZT0Afx5XCOT4NQt7rEl.aKIkvZ4FClR42l8XSRC02KdClm.7K8C', NULL, 'accountant@hms.com', NULL, NULL, NULL, NULL, 1684289908, 1731305844, 1, NULL, NULL, NULL, NULL, '992', NULL, '1'),
(1070, '110.76.128.101', 'Demo Doctor', '$2y$08$2Qv9zmzHYIfJOb2LJsfQMuwHp3GlPQgshwBeptZ21Os2o08HLVqUq', NULL, 'doctor1@hms.com', NULL, NULL, NULL, NULL, 1700468397, 1700468420, 1, NULL, NULL, NULL, NULL, '1069', NULL, NULL),
(1113, '110.76.128.101', ' Rizvi Mahmud', '$2y$08$Zt4I9GCnzKA9U/Lkz0fbdOXpxCJl/7YvIYBZFcYDBQHz32M9UWJqC', NULL, 'rizvi@example.com', NULL, NULL, NULL, NULL, 1728287982, NULL, 1, NULL, NULL, NULL, NULL, '1112', NULL, NULL),
(1114, '110.76.128.101', 'Dr Rahmatullah', '$2y$08$cDPvjSRd/094Ss1.Esi4NuAx7/Qr.jU/cLpr/.DL6x.k1TT5rvPQW', NULL, 'rahmatullah@example.com', NULL, NULL, NULL, NULL, 1728287982, NULL, 1, NULL, NULL, NULL, NULL, '1112', NULL, NULL),
(1131, '103.77.63.65', 'Mr Doctor', '$2y$08$F0OCioJeQcTvu0IEJKdcmuRKz/GKRBRsarPDU/clDbGpZnm6sEohe', NULL, 'doctor@hms.com', NULL, NULL, NULL, NULL, 1735375563, 1757304029, 1, NULL, NULL, NULL, NULL, '992', NULL, '1'),
(1141, '110.76.128.101', 'Mr Patient', '$2y$08$fsU45XWqyDREnAIsZqNJo.AjStevnDTpKl9jl3g5RFOqjxBvW/R3G', NULL, 'patient@hms.com', NULL, NULL, NULL, NULL, 1736862254, 1756798084, 1, NULL, NULL, NULL, NULL, '992', NULL, '1');

-- --------------------------------------------------------

--
-- Table structure for table `users_groups`
--

CREATE TABLE `users_groups` (
  `id` int(11) UNSIGNED NOT NULL,
  `user_id` int(11) UNSIGNED NOT NULL,
  `group_id` mediumint(8) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `users_groups`
--

INSERT INTO `users_groups` (`id`, `user_id`, `group_id`) VALUES
(1, 1, 1),
(879, 877, 5),
(880, 878, 4),
(881, 879, 6),
(882, 880, 7),
(883, 881, 8),
(884, 882, 3),
(885, 883, 10),
(889, 887, 5),
(890, 888, 4),
(999, 992, 11),
(1001, 994, 4),
(1002, 995, 6),
(1003, 996, 7),
(1004, 997, 8),
(1005, 998, 3),
(1006, 999, 10),
(1008, 1001, 5),
(1010, 1003, 5),
(1011, 1004, 4),
(1012, 1005, 4),
(1013, 1006, 11),
(1015, 1008, 4),
(1016, 1009, 4),
(1017, 1010, 4),
(1018, 1011, 3),
(1019, 1012, 6),
(1020, 1013, 10),
(1021, 1014, 7),
(1022, 1015, 8),
(1023, 1016, 5),
(1024, 1017, 5),
(1025, 1018, 5),
(1026, 1019, 5),
(1027, 1020, 4),
(1028, 1021, 5),
(1029, 1022, 5),
(1030, 1023, 5),
(1031, 1024, 11),
(1032, 1025, 11),
(1033, 1026, 4),
(1034, 1027, 4),
(1035, 1028, 4),
(1036, 1029, 4),
(1037, 1030, 5),
(1038, 1031, 4),
(1039, 1032, 4),
(1040, 1033, 4),
(1041, 1034, 4),
(1042, 1035, 4),
(1043, 1036, 6),
(1044, 1037, 6),
(1045, 1038, 5),
(1046, 1039, 4),
(1047, 1040, 6),
(1048, 1041, 4),
(1049, 1042, 5),
(1050, 1043, 4),
(1051, 1044, 5),
(1052, 1045, 6),
(1053, 1046, 8),
(1054, 1047, 4),
(1055, 1048, 11),
(1056, 1049, 11),
(1057, 1050, 11),
(1058, 1051, 11),
(1059, 1052, 11),
(1060, 1053, 11),
(1061, 1054, 11),
(1062, 1055, 11),
(1063, 1056, 11),
(1064, 1057, 11),
(1065, 1058, 5),
(1066, 1059, 6),
(1067, 1060, 7),
(1068, 1061, 8),
(1069, 1062, 3),
(1070, 1063, 10),
(1071, 1064, 11),
(1072, 1065, 5),
(1073, 1066, 5),
(1074, 1067, 3),
(1075, 1068, 5),
(1076, 1069, 11),
(1077, 1070, 4),
(1078, 1071, 1),
(1079, 1072, 11),
(1080, 1073, 6),
(1081, 1074, 4),
(1082, 1075, 4),
(1083, 1076, 4),
(1084, 1077, 4),
(1085, 1078, 4),
(1086, 1079, 4),
(1087, 1080, 4),
(1088, 1081, 4),
(1089, 1082, 4),
(1090, 1083, 4),
(1091, 1084, 4),
(1092, 1085, 4),
(1093, 1086, 4),
(1094, 1087, 11),
(1095, 1088, 11),
(1096, 1089, 11),
(1097, 1090, 5),
(1098, 1091, 5),
(1099, 1092, 4),
(1100, 1093, 5),
(1101, 1094, 5),
(1102, 1095, 5),
(1103, 1096, 5),
(1104, 1097, 11),
(1105, 1098, 11),
(1106, 1099, 11),
(1107, 1100, 11),
(1108, 1101, 11),
(1109, 1102, 11),
(1110, 1103, 11),
(1111, 1104, 11),
(1112, 1105, 11),
(1113, 1106, 11),
(1114, 1107, 11),
(1115, 1108, 11),
(1116, 1109, 11),
(1117, 1110, 3),
(1118, 1111, 11),
(1119, 1112, 11),
(1120, 1113, 5),
(1121, 1114, 4),
(1122, 1115, 11),
(1123, 1116, 5),
(1124, 1117, 4),
(1125, 1118, 5),
(1126, 1119, 5),
(1127, 1120, 5),
(1128, 1121, 5),
(1129, 1122, 5),
(1130, 1123, 5),
(1131, 1124, 5),
(1132, 1125, 5),
(1133, 1126, 5),
(1134, 1127, 11),
(1135, 1128, 5),
(1136, 1129, 5),
(1137, 1130, 5),
(1138, 1131, 4),
(1139, 1132, 5),
(1140, 1133, 5),
(1141, 1134, 5),
(1142, 1135, 5),
(1143, 1136, 5),
(1144, 1137, 4),
(1145, 1138, 4),
(1146, 1139, 4),
(1147, 1140, 4),
(1148, 1141, 5),
(1149, 1142, 11),
(1150, 1143, 11),
(1151, 1144, 11),
(1152, 1145, 4),
(1153, 1146, 11);

-- --------------------------------------------------------

--
-- Table structure for table `vendor_quotations`
--

CREATE TABLE `vendor_quotations` (
  `id` int(11) NOT NULL,
  `quotation_number` varchar(50) NOT NULL,
  `supplier_id` int(11) NOT NULL,
  `quotation_date` date NOT NULL,
  `validity_date` date DEFAULT NULL,
  `status` enum('draft','sent','received','accepted','rejected','expired') DEFAULT 'draft',
  `total_amount` decimal(15,2) DEFAULT 0.00,
  `tax_amount` decimal(15,2) DEFAULT 0.00,
  `discount_amount` decimal(15,2) DEFAULT 0.00,
  `grand_total` decimal(15,2) DEFAULT 0.00,
  `terms_conditions` text DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `hospital_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vendor_quotation_items`
--

CREATE TABLE `vendor_quotation_items` (
  `id` int(11) NOT NULL,
  `quotation_id` int(11) NOT NULL,
  `inventory_item_id` int(11) NOT NULL,
  `quantity` int(11) NOT NULL,
  `unit_price` decimal(10,2) NOT NULL,
  `total_price` decimal(15,2) NOT NULL,
  `delivery_time` varchar(100) DEFAULT NULL,
  `specifications` text DEFAULT NULL,
  `notes` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `vital_signs`
--

CREATE TABLE `vital_signs` (
  `id` int(100) NOT NULL,
  `patient_id` varchar(1000) DEFAULT NULL,
  `bmi_height` varchar(1000) DEFAULT NULL,
  `bmi_weight` varchar(1000) DEFAULT NULL,
  `respiratory_rate` varchar(1000) DEFAULT NULL,
  `oxygen_saturation` varchar(1000) DEFAULT NULL,
  `temperature` varchar(1000) DEFAULT NULL,
  `diastolic_blood_pressure` varchar(1000) DEFAULT NULL,
  `systolic_blood_pressure` varchar(1000) DEFAULT NULL,
  `add_date_time` varchar(1000) DEFAULT NULL,
  `heart_rate` varchar(1000) DEFAULT NULL,
  `hospital_id` varchar(1000) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `vital_signs`
--

INSERT INTO `vital_signs` (`id`, `patient_id`, `bmi_height`, `bmi_weight`, `respiratory_rate`, `oxygen_saturation`, `temperature`, `diastolic_blood_pressure`, `systolic_blood_pressure`, `add_date_time`, `heart_rate`, `hospital_id`) VALUES
(13, '11', '1.01', '1.02', '2', '1', '2', '4', '2', '18-05-2024 20:41:16', '2', '98'),
(14, '44', '1.04', '1.05', '5', '5', '5', '5', '6', '03-11-2024 16:33:15', '5', '98'),
(16, '47', '432', '324', '234', '324', '234', '234', '234', '08-11-2024 17:50:48', '324', '98'),
(17, '47', '234', '24', '24', '234', '43', '24', '42', '08-11-2024 17:52:41', '34', '98'),
(18, '53', '175.26', '68', '16', '96', '37', '90', '130', '07-09-2025 11:07:23', '78', '98');

-- --------------------------------------------------------

--
-- Table structure for table `website_settings`
--

CREATE TABLE `website_settings` (
  `id` int(100) NOT NULL,
  `title` varchar(100) DEFAULT NULL,
  `logo` varchar(100) DEFAULT NULL,
  `address` varchar(500) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `emergency` varchar(100) DEFAULT NULL,
  `support` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `currency` varchar(100) DEFAULT NULL,
  `block_1_text_under_title` varchar(500) DEFAULT NULL,
  `service_block__text_under_title` varchar(500) DEFAULT NULL,
  `doctor_block__text_under_title` varchar(500) DEFAULT NULL,
  `facebook_id` varchar(100) DEFAULT NULL,
  `twitter_id` varchar(100) DEFAULT NULL,
  `google_id` varchar(100) DEFAULT NULL,
  `youtube_id` varchar(100) DEFAULT NULL,
  `skype_id` varchar(100) DEFAULT NULL,
  `x` varchar(100) DEFAULT NULL,
  `twitter_username` varchar(100) DEFAULT NULL,
  `block_img_url` varchar(200) DEFAULT NULL,
  `comment_1` varchar(500) DEFAULT NULL,
  `comment_2` varchar(500) DEFAULT NULL,
  `verified_1` varchar(200) DEFAULT NULL,
  `verified_2` varchar(200) DEFAULT NULL,
  `comment_logo_1` varchar(100) DEFAULT NULL,
  `comment_logo_2` varchar(100) DEFAULT NULL,
  `partner_header_title` varchar(300) DEFAULT NULL,
  `partner_header_description` varchar(500) DEFAULT NULL,
  `section_title_1` varchar(200) DEFAULT NULL,
  `section_title_2` varchar(200) DEFAULT NULL,
  `section_title_3` varchar(200) DEFAULT NULL,
  `section_description_1` varchar(500) DEFAULT NULL,
  `section_description_2` varchar(500) DEFAULT NULL,
  `section_description_3` varchar(500) DEFAULT NULL,
  `section_1_text_1` varchar(500) DEFAULT NULL,
  `section_2_text_1` varchar(500) DEFAULT NULL,
  `section_3_text_1` varchar(500) DEFAULT NULL,
  `section_1_text_2` varchar(500) DEFAULT NULL,
  `section_2_text_2` varchar(500) DEFAULT NULL,
  `section_3_text_2` varchar(500) DEFAULT NULL,
  `section_1_text_3` varchar(500) DEFAULT NULL,
  `section_2_text_3` varchar(500) DEFAULT NULL,
  `section_3_text_3` varchar(500) DEFAULT NULL,
  `partner_image_1` varchar(200) DEFAULT NULL,
  `partner_image_2` varchar(200) DEFAULT NULL,
  `partner_image_3` varchar(200) DEFAULT NULL,
  `market_title` varchar(200) DEFAULT NULL,
  `market_description` varchar(500) DEFAULT NULL,
  `market_button_link` varchar(200) DEFAULT NULL,
  `market_image` varchar(200) DEFAULT NULL,
  `market_commentator_name` varchar(200) DEFAULT NULL,
  `market_commentator_designation` varchar(200) DEFAULT NULL,
  `market_comment` varchar(500) DEFAULT NULL,
  `commentator_profile_image` varchar(200) DEFAULT NULL,
  `commentator_logo_1` varchar(200) DEFAULT NULL,
  `commentator_logo_2` varchar(200) DEFAULT NULL,
  `commentator_logo_3` varchar(200) DEFAULT NULL,
  `team_title` varchar(200) DEFAULT NULL,
  `team_description` varchar(500) DEFAULT NULL,
  `team_button_link` varchar(200) DEFAULT NULL,
  `team_commentator_name` varchar(200) DEFAULT NULL,
  `team_commentator_designation` varchar(200) DEFAULT NULL,
  `team_comment` varchar(500) DEFAULT NULL,
  `team_verified` varchar(200) DEFAULT NULL,
  `team_review_logo` varchar(200) DEFAULT NULL,
  `team_commentator_image` varchar(200) DEFAULT NULL,
  `registration_block_text` varchar(1000) DEFAULT NULL,
  `contact_us` varchar(1000) DEFAULT NULL,
  `contact_us_email` varchar(100) DEFAULT NULL,
  `chat_js` varchar(1000) DEFAULT NULL,
  `google_translation_switch_in_frontend` varchar(100) DEFAULT NULL,
  `language` varchar(100) DEFAULT NULL,
  `question1` text DEFAULT NULL,
  `question2` text DEFAULT NULL,
  `question3` text DEFAULT NULL,
  `question4` text DEFAULT NULL,
  `question5` text DEFAULT NULL,
  `question6` text DEFAULT NULL,
  `question7` text DEFAULT NULL,
  `question8` text DEFAULT NULL,
  `question9` text DEFAULT NULL,
  `answer1` text DEFAULT NULL,
  `answer2` text DEFAULT NULL,
  `answer3` text DEFAULT NULL,
  `answer4` text DEFAULT NULL,
  `answer5` text DEFAULT NULL,
  `answer6` text DEFAULT NULL,
  `answer7` text DEFAULT NULL,
  `answer8` text DEFAULT NULL,
  `answer9` text DEFAULT NULL,
  `tawk_to_status` varchar(5) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `website_settings`
--

INSERT INTO `website_settings` (`id`, `title`, `logo`, `address`, `phone`, `emergency`, `support`, `email`, `currency`, `block_1_text_under_title`, `service_block__text_under_title`, `doctor_block__text_under_title`, `facebook_id`, `twitter_id`, `google_id`, `youtube_id`, `skype_id`, `x`, `twitter_username`, `block_img_url`, `comment_1`, `comment_2`, `verified_1`, `verified_2`, `comment_logo_1`, `comment_logo_2`, `partner_header_title`, `partner_header_description`, `section_title_1`, `section_title_2`, `section_title_3`, `section_description_1`, `section_description_2`, `section_description_3`, `section_1_text_1`, `section_2_text_1`, `section_3_text_1`, `section_1_text_2`, `section_2_text_2`, `section_3_text_2`, `section_1_text_3`, `section_2_text_3`, `section_3_text_3`, `partner_image_1`, `partner_image_2`, `partner_image_3`, `market_title`, `market_description`, `market_button_link`, `market_image`, `market_commentator_name`, `market_commentator_designation`, `market_comment`, `commentator_profile_image`, `commentator_logo_1`, `commentator_logo_2`, `commentator_logo_3`, `team_title`, `team_description`, `team_button_link`, `team_commentator_name`, `team_commentator_designation`, `team_comment`, `team_verified`, `team_review_logo`, `team_commentator_image`, `registration_block_text`, `contact_us`, `contact_us_email`, `chat_js`, `google_translation_switch_in_frontend`, `language`, `question1`, `question2`, `question3`, `question4`, `question5`, `question6`, `question7`, `question8`, `question9`, `answer1`, `answer2`, `answer3`, `answer4`, `answer5`, `answer6`, `answer7`, `answer8`, `answer9`, `tawk_to_status`) VALUES
(1, 'Hospital Saas', 'uploads/66b9a2ee3f71ae0484e26a7bNew_Project_(1).png', 'Boropool, Rajbari-770001', '556165156131', '+01234567891', '+01234567891', 'zzenofast@gmail.com', '$', NULL, 'Lets see what our recent customer says.', NULL, 'https://www.facebook.com/rizvi.plabon/', 'https://www.twitter.com/casoft/', 'https://www.google.com/casoft/', 'https://www.youtube.com/casoft/', 'https://www.skype.com/casoft/', NULL, 'codearistos/', 'uploads/customer.svg', NULL, NULL, NULL, NULL, 'uploads/8th-illus.png', 'uploads/module-1.jpg', 'Streamlined Hospital Management', 'Empower your practice with our comprehensive hospital SaaS solution—where technology meets  dental expertise.', 'Empower Hospital Practice', 'Automate with Excellence', 'Unmatched Support', 'Maximize clinic efficiency with our customizable hospital               management SaaS. Streamline operations, enhance care, and propel               growth.', 'Elevate your hospital services with our comprehensive automation               tools. Tailored for clinics big and small.', 'Immediate assistance and extensive resources at your fingertips,               ensuring your clinic', 'If you have an active software license, then you will have access to software support. This really is totally open-source software.', 'Accumulative solutions', 'Organize your hospital', 'Flawless Functionality for Hospital Excellence', 'We are providing all the essential professional services of a firm. For example, inventory management system, purchase order management system, supplier report, and cash-flow management system.', 'Customization Facilities', 'Experience unparalleled reliability with our hospital SaaS. We ensure seamless operation, allowing you to focus on patient care without technical distractions.', 'Streamline Your Practice Management', 'This software is 100% customizable. We are prepared to customize predicates on your own business requirements.', 'uploads/module-2.jpg', 'uploads/module-3.jpg', 'uploads/RD-solicita-facilidad-para-adquisicion.jpg', NULL, NULL, NULL, 'uploads/RD-solicita-facilidad-para-adquisicion1.jpg', NULL, NULL, NULL, 'uploads/photo-1503023345310-bd7c1de61c7d1.jpg', 'uploads/astana.jpg', 'uploads/innnn.jpg', 'uploads/unbounce.jpg', 'Why Choose Our Product?', 'We are providing the most perfect service for you, and our priority is the customer', 'How long do I get support?', 'Engineered for performance', 'Our platform', NULL, NULL, 'uploads/15548217993981.jpg', 'uploads/png-transparent-junior-chamber-international-jci-malaysia-secretariat-organization-united-states-junior-chamber-business-business-blue-text-trademark.png', NULL, 'Contact With Us', NULL, 'Tawk Chat Embed Link', 'yes', NULL, 'Responsive Website', 'Android Apps', 'Admin Panel', 'Administrative Module', 'https://codearistos.net/dev/hmz/frontend', 'Doctor Module', 'https://codearistos.net/dev/hmz/frontend', 'Accountants Module', 'https://codearistos.net/dev/hmz/frontend', 'We have arranged a fully responsive SEO optimized dynamic website. This website ensures your online presence & people will be able to make an online appointment through the website.', 'In today', 'With this software, you can get a superpower administrative module that can provide you an ultimate system of management. In this software, you can create 8 kinds of accounts like doctors, nurses, pharmacists, accountant, laboratorian, receptionist, representative, case managers by using the admin panel, and also can specify their responsibilities separately. As well as, this software has a separate dashboard for each account.', 'We have designed the administrative module for a hospital owner or the person who is accountable to operate the entire hospital smoothly. Using this module, you can manage the entire system easily and efficiently. Because this module includes every important feature like doctors portal, patient portal, appointment scheduling, prescription management, human resource management, bed management, employee, accounts, software settings, role assigning, etc.', 'https://codearistos.net/dev/hmz/frontend', 'A doctor is the most important person to ensure the health condition of any patient. For this purpose, this software has a doctor module. Using this module, doctors can access all important functions that belong to them. As a result, they can maintain patient portals, appointment scheduling & maintaining, prescription making, and any other things that are related to hospital activities.', 'https://codearistos.net/dev/hmz/frontend', 'Accountants are responsible to control monetary flow, profit-and- loss calculation. Patients are considered the main factor of this software. Moreover, they are the key earning source of this system. So this module allows access to the patient portal. Besides, the Accountant module also has the access account creation option, like debit or credit account based on expense and earning, employee name, and billing. With this software, you can get a complete clinic management system that helps to understand both technical or non-technical people.', 'https://codearistos.net/dev/hmz/frontend', 'no');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `accountant`
--
ALTER TABLE `accountant`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `advice`
--
ALTER TABLE `advice`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `ai_image_analyses`
--
ALTER TABLE `ai_image_analyses`
  ADD PRIMARY KEY (`id`),
  ADD KEY `patient_id` (`patient_id`),
  ADD KEY `doctor_id` (`doctor_id`),
  ADD KEY `hospital_id` (`hospital_id`),
  ADD KEY `created_by` (`created_by`),
  ADD KEY `updated_by` (`updated_by`),
  ADD KEY `image_type` (`image_type`),
  ADD KEY `created_at` (`created_at`);

--
-- Indexes for table `ai_patient_overviews`
--
ALTER TABLE `ai_patient_overviews`
  ADD PRIMARY KEY (`id`),
  ADD KEY `patient_id` (`patient_id`),
  ADD KEY `doctor_id` (`doctor_id`),
  ADD KEY `hospital_id` (`hospital_id`),
  ADD KEY `created_by` (`created_by`),
  ADD KEY `updated_by` (`updated_by`),
  ADD KEY `created_at` (`created_at`);

--
-- Indexes for table `alloted_bed`
--
ALTER TABLE `alloted_bed`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `appointment`
--
ALTER TABLE `appointment`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `attendance`
--
ALTER TABLE `attendance`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `autoemailshortcode`
--
ALTER TABLE `autoemailshortcode`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `autoemailtemplate`
--
ALTER TABLE `autoemailtemplate`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `autosmsshortcode`
--
ALTER TABLE `autosmsshortcode`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `autosmstemplate`
--
ALTER TABLE `autosmstemplate`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `bankb`
--
ALTER TABLE `bankb`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `bed`
--
ALTER TABLE `bed`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `bed_category`
--
ALTER TABLE `bed_category`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `bed_checkout`
--
ALTER TABLE `bed_checkout`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `bed_diagnostic`
--
ALTER TABLE `bed_diagnostic`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `bed_medicine`
--
ALTER TABLE `bed_medicine`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `bed_service`
--
ALTER TABLE `bed_service`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `blood_group`
--
ALTER TABLE `blood_group`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `category`
--
ALTER TABLE `category`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `chat`
--
ALTER TABLE `chat`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `daily_progress`
--
ALTER TABLE `daily_progress`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `department`
--
ALTER TABLE `department`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `diagnosis`
--
ALTER TABLE `diagnosis`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `diagnostic_report`
--
ALTER TABLE `diagnostic_report`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `doctor`
--
ALTER TABLE `doctor`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `doctor_visit`
--
ALTER TABLE `doctor_visit`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `donor`
--
ALTER TABLE `donor`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `draft_payment`
--
ALTER TABLE `draft_payment`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `email`
--
ALTER TABLE `email`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `email_settings`
--
ALTER TABLE `email_settings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `emergency`
--
ALTER TABLE `emergency`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `expense`
--
ALTER TABLE `expense`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `expense_category`
--
ALTER TABLE `expense_category`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `facilitie`
--
ALTER TABLE `facilitie`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `faq`
--
ALTER TABLE `faq`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `featured`
--
ALTER TABLE `featured`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `file`
--
ALTER TABLE `file`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `folder`
--
ALTER TABLE `folder`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `gallery`
--
ALTER TABLE `gallery`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `google_captcha`
--
ALTER TABLE `google_captcha`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `gpt_memory`
--
ALTER TABLE `gpt_memory`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `grid`
--
ALTER TABLE `grid`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `groups`
--
ALTER TABLE `groups`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `holidays`
--
ALTER TABLE `holidays`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `hospital`
--
ALTER TABLE `hospital`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `hospital_deposit`
--
ALTER TABLE `hospital_deposit`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `hospital_payment`
--
ALTER TABLE `hospital_payment`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `insurance_company`
--
ALTER TABLE `insurance_company`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `inventory_categories`
--
ALTER TABLE `inventory_categories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_hospital_id` (`hospital_id`),
  ADD KEY `idx_parent_id` (`parent_id`),
  ADD KEY `idx_status` (`status`);

--
-- Indexes for table `inventory_items`
--
ALTER TABLE `inventory_items`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_item_code_hospital` (`item_code`,`hospital_id`),
  ADD KEY `idx_hospital_id` (`hospital_id`),
  ADD KEY `idx_category` (`category`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_current_stock` (`current_stock`),
  ADD KEY `idx_reorder_level` (`reorder_level`),
  ADD KEY `idx_name` (`name`),
  ADD KEY `idx_barcode` (`barcode`),
  ADD KEY `idx_inventory_items_code_hospital` (`item_code`,`hospital_id`);

--
-- Indexes for table `lab`
--
ALTER TABLE `lab`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `laboratorist`
--
ALTER TABLE `laboratorist`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lab_category`
--
ALTER TABLE `lab_category`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `language`
--
ALTER TABLE `language`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `leaves`
--
ALTER TABLE `leaves`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `leave_type`
--
ALTER TABLE `leave_type`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `login_attempts`
--
ALTER TABLE `login_attempts`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `logs`
--
ALTER TABLE `logs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `macro`
--
ALTER TABLE `macro`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `manualemailshortcode`
--
ALTER TABLE `manualemailshortcode`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `manualsmsshortcode`
--
ALTER TABLE `manualsmsshortcode`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `manual_email_template`
--
ALTER TABLE `manual_email_template`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `manual_sms_template`
--
ALTER TABLE `manual_sms_template`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `medical_history`
--
ALTER TABLE `medical_history`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `medicine`
--
ALTER TABLE `medicine`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `medicine_batches`
--
ALTER TABLE `medicine_batches`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_batch_medicine_hospital` (`batch_number`,`medicine_id`,`hospital_id`),
  ADD KEY `idx_medicine_id` (`medicine_id`),
  ADD KEY `idx_supplier_id` (`supplier_id`),
  ADD KEY `idx_purchase_item_id` (`purchase_item_id`),
  ADD KEY `idx_hospital_id` (`hospital_id`),
  ADD KEY `idx_expiry_date` (`expiry_date`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_current_stock` (`current_stock`),
  ADD KEY `idx_medicine_batches_expiry_hospital` (`expiry_date`,`hospital_id`);

--
-- Indexes for table `medicine_category`
--
ALTER TABLE `medicine_category`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `medicine_purchases`
--
ALTER TABLE `medicine_purchases`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_po_hospital` (`purchase_order_no`,`hospital_id`),
  ADD KEY `idx_supplier_id` (`supplier_id`),
  ADD KEY `idx_hospital_id` (`hospital_id`),
  ADD KEY `idx_purchase_date` (`purchase_date`),
  ADD KEY `idx_purchase_status` (`purchase_status`),
  ADD KEY `idx_payment_status` (`payment_status`),
  ADD KEY `idx_medicine_purchases_po_hospital` (`purchase_order_no`,`hospital_id`);

--
-- Indexes for table `medicine_purchase_items`
--
ALTER TABLE `medicine_purchase_items`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_purchase_id` (`purchase_id`),
  ADD KEY `idx_medicine_id` (`medicine_id`),
  ADD KEY `idx_batch_number` (`batch_number`),
  ADD KEY `idx_expiry_date` (`expiry_date`);

--
-- Indexes for table `medicine_purchase_payments`
--
ALTER TABLE `medicine_purchase_payments`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_purchase_id` (`purchase_id`),
  ADD KEY `idx_hospital_id` (`hospital_id`),
  ADD KEY `idx_payment_date` (`payment_date`),
  ADD KEY `idx_status` (`status`);

--
-- Indexes for table `medicine_stock_movements`
--
ALTER TABLE `medicine_stock_movements`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_medicine_id` (`medicine_id`),
  ADD KEY `idx_batch_id` (`batch_id`),
  ADD KEY `idx_hospital_id` (`hospital_id`),
  ADD KEY `idx_movement_type` (`movement_type`),
  ADD KEY `idx_movement_date` (`movement_date`),
  ADD KEY `idx_reference` (`reference_type`,`reference_id`),
  ADD KEY `idx_medicine_stock_movements_date_hospital` (`movement_date`,`hospital_id`);

--
-- Indexes for table `medicine_suppliers`
--
ALTER TABLE `medicine_suppliers`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_hospital_id` (`hospital_id`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_name` (`name`),
  ADD KEY `idx_medicine_suppliers_name_hospital` (`name`,`hospital_id`);

--
-- Indexes for table `meeting`
--
ALTER TABLE `meeting`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `meeting_settings`
--
ALTER TABLE `meeting_settings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `module`
--
ALTER TABLE `module`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `notice`
--
ALTER TABLE `notice`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `nurse`
--
ALTER TABLE `nurse`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `odontogram`
--
ALTER TABLE `odontogram`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `ot_payment`
--
ALTER TABLE `ot_payment`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `package`
--
ALTER TABLE `package`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `patient`
--
ALTER TABLE `patient`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `patient_deposit`
--
ALTER TABLE `patient_deposit`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `patient_material`
--
ALTER TABLE `patient_material`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `payment`
--
ALTER TABLE `payment`
  ADD PRIMARY KEY (`id`),
  ADD KEY `hospital_id` (`hospital_id`),
  ADD KEY `id` (`id`),
  ADD KEY `hospital_id_2` (`hospital_id`);

--
-- Indexes for table `paymentGateway`
--
ALTER TABLE `paymentGateway`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `payment_category`
--
ALTER TABLE `payment_category`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `payroll`
--
ALTER TABLE `payroll`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `pharmacist`
--
ALTER TABLE `pharmacist`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `pharmacy_expense`
--
ALTER TABLE `pharmacy_expense`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `pharmacy_expense_category`
--
ALTER TABLE `pharmacy_expense_category`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `pharmacy_payment`
--
ALTER TABLE `pharmacy_payment`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `pharmacy_payment_category`
--
ALTER TABLE `pharmacy_payment_category`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `prescription`
--
ALTER TABLE `prescription`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `pservice`
--
ALTER TABLE `pservice`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `purchase_orders`
--
ALTER TABLE `purchase_orders`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_po_number_hospital` (`po_number`,`hospital_id`),
  ADD KEY `idx_supplier_id` (`supplier_id`),
  ADD KEY `idx_hospital_id` (`hospital_id`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_order_date` (`order_date`),
  ADD KEY `idx_purchase_orders_number_hospital` (`po_number`,`hospital_id`);

--
-- Indexes for table `purchase_order_items`
--
ALTER TABLE `purchase_order_items`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_purchase_order_id` (`purchase_order_id`),
  ADD KEY `idx_inventory_item_id` (`inventory_item_id`);

--
-- Indexes for table `receptionist`
--
ALTER TABLE `receptionist`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `report`
--
ALTER TABLE `report`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `request`
--
ALTER TABLE `request`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `review`
--
ALTER TABLE `review`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `salary`
--
ALTER TABLE `salary`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `service`
--
ALTER TABLE `service`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `settings`
--
ALTER TABLE `settings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `site_featured`
--
ALTER TABLE `site_featured`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `site_gallery`
--
ALTER TABLE `site_gallery`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `site_grid`
--
ALTER TABLE `site_grid`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `site_map`
--
ALTER TABLE `site_map`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `site_review`
--
ALTER TABLE `site_review`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `site_service`
--
ALTER TABLE `site_service`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `site_settings`
--
ALTER TABLE `site_settings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `site_slide`
--
ALTER TABLE `site_slide`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `slide`
--
ALTER TABLE `slide`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `sms`
--
ALTER TABLE `sms`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `sms_settings`
--
ALTER TABLE `sms_settings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `stock_transactions`
--
ALTER TABLE `stock_transactions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_inventory_item_id` (`inventory_item_id`),
  ADD KEY `idx_transaction_type` (`transaction_type`),
  ADD KEY `idx_hospital_id` (`hospital_id`),
  ADD KEY `idx_transaction_date` (`transaction_date`),
  ADD KEY `idx_reference` (`reference_type`,`reference_id`),
  ADD KEY `idx_stock_transactions_date_hospital` (`transaction_date`,`hospital_id`);

--
-- Indexes for table `superadmin`
--
ALTER TABLE `superadmin`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `suppliers`
--
ALTER TABLE `suppliers`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_hospital_id` (`hospital_id`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_name` (`name`),
  ADD KEY `idx_suppliers_name_hospital` (`name`,`hospital_id`);

--
-- Indexes for table `symptom`
--
ALTER TABLE `symptom`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `template`
--
ALTER TABLE `template`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `testpkz`
--
ALTER TABLE `testpkz`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `time_schedule`
--
ALTER TABLE `time_schedule`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `time_slot`
--
ALTER TABLE `time_slot`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `transaction_logs`
--
ALTER TABLE `transaction_logs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `treatment`
--
ALTER TABLE `treatment`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `treatment_plans`
--
ALTER TABLE `treatment_plans`
  ADD PRIMARY KEY (`id`),
  ADD KEY `patient_id` (`patient_id`),
  ADD KEY `created_by` (`created_by`),
  ADD KEY `updated_by` (`updated_by`),
  ADD KEY `hospital_id` (`hospital_id`);

--
-- Indexes for table `usage_logs`
--
ALTER TABLE `usage_logs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_inventory_item_id` (`inventory_item_id`),
  ADD KEY `idx_hospital_id` (`hospital_id`),
  ADD KEY `idx_usage_date` (`usage_date`),
  ADD KEY `idx_used_by` (`used_by_type`,`used_by_id`),
  ADD KEY `idx_patient_id` (`patient_id`),
  ADD KEY `idx_doctor_id` (`doctor_id`),
  ADD KEY `idx_department_id` (`department_id`),
  ADD KEY `idx_usage_logs_date_hospital` (`usage_date`,`hospital_id`);

--
-- Indexes for table `users`
--
ALTER TABLE `users`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `users_groups`
--
ALTER TABLE `users_groups`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `uc_users_groups` (`user_id`,`group_id`),
  ADD KEY `fk_users_groups_users1_idx` (`user_id`),
  ADD KEY `fk_users_groups_groups1_idx` (`group_id`);

--
-- Indexes for table `vendor_quotations`
--
ALTER TABLE `vendor_quotations`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_quotation_number_hospital` (`quotation_number`,`hospital_id`),
  ADD KEY `idx_supplier_id` (`supplier_id`),
  ADD KEY `idx_hospital_id` (`hospital_id`),
  ADD KEY `idx_status` (`status`),
  ADD KEY `idx_quotation_date` (`quotation_date`);

--
-- Indexes for table `vendor_quotation_items`
--
ALTER TABLE `vendor_quotation_items`
  ADD PRIMARY KEY (`id`),
  ADD KEY `idx_quotation_id` (`quotation_id`),
  ADD KEY `idx_inventory_item_id` (`inventory_item_id`);

--
-- Indexes for table `vital_signs`
--
ALTER TABLE `vital_signs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `website_settings`
--
ALTER TABLE `website_settings`
  ADD PRIMARY KEY (`id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `accountant`
--
ALTER TABLE `accountant`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `advice`
--
ALTER TABLE `advice`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `ai_image_analyses`
--
ALTER TABLE `ai_image_analyses`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=67;

--
-- AUTO_INCREMENT for table `ai_patient_overviews`
--
ALTER TABLE `ai_patient_overviews`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;

--
-- AUTO_INCREMENT for table `alloted_bed`
--
ALTER TABLE `alloted_bed`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=95;

--
-- AUTO_INCREMENT for table `appointment`
--
ALTER TABLE `appointment`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=449;

--
-- AUTO_INCREMENT for table `attendance`
--
ALTER TABLE `attendance`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=162;

--
-- AUTO_INCREMENT for table `autoemailshortcode`
--
ALTER TABLE `autoemailshortcode`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=74;

--
-- AUTO_INCREMENT for table `autoemailtemplate`
--
ALTER TABLE `autoemailtemplate`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1656;

--
-- AUTO_INCREMENT for table `autosmsshortcode`
--
ALTER TABLE `autosmsshortcode`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=70;

--
-- AUTO_INCREMENT for table `autosmstemplate`
--
ALTER TABLE `autosmstemplate`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=973;

--
-- AUTO_INCREMENT for table `bankb`
--
ALTER TABLE `bankb`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=745;

--
-- AUTO_INCREMENT for table `bed`
--
ALTER TABLE `bed`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `bed_category`
--
ALTER TABLE `bed_category`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `bed_checkout`
--
ALTER TABLE `bed_checkout`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;

--
-- AUTO_INCREMENT for table `bed_diagnostic`
--
ALTER TABLE `bed_diagnostic`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=105;

--
-- AUTO_INCREMENT for table `bed_medicine`
--
ALTER TABLE `bed_medicine`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=159;

--
-- AUTO_INCREMENT for table `bed_service`
--
ALTER TABLE `bed_service`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=92;

--
-- AUTO_INCREMENT for table `blood_group`
--
ALTER TABLE `blood_group`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `category`
--
ALTER TABLE `category`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `chat`
--
ALTER TABLE `chat`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `daily_progress`
--
ALTER TABLE `daily_progress`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;

--
-- AUTO_INCREMENT for table `department`
--
ALTER TABLE `department`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;

--
-- AUTO_INCREMENT for table `diagnosis`
--
ALTER TABLE `diagnosis`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;

--
-- AUTO_INCREMENT for table `diagnostic_report`
--
ALTER TABLE `diagnostic_report`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `doctor`
--
ALTER TABLE `doctor`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=50;

--
-- AUTO_INCREMENT for table `doctor_visit`
--
ALTER TABLE `doctor_visit`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;

--
-- AUTO_INCREMENT for table `donor`
--
ALTER TABLE `donor`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `draft_payment`
--
ALTER TABLE `draft_payment`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;

--
-- AUTO_INCREMENT for table `email`
--
ALTER TABLE `email`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;

--
-- AUTO_INCREMENT for table `email_settings`
--
ALTER TABLE `email_settings`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=360;

--
-- AUTO_INCREMENT for table `emergency`
--
ALTER TABLE `emergency`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `expense`
--
ALTER TABLE `expense`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43;

--
-- AUTO_INCREMENT for table `expense_category`
--
ALTER TABLE `expense_category`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `facilitie`
--
ALTER TABLE `facilitie`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29;

--
-- AUTO_INCREMENT for table `faq`
--
ALTER TABLE `faq`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `featured`
--
ALTER TABLE `featured`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `file`
--
ALTER TABLE `file`
  MODIFY `id` int(50) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `folder`
--
ALTER TABLE `folder`
  MODIFY `id` int(50) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=110;

--
-- AUTO_INCREMENT for table `gallery`
--
ALTER TABLE `gallery`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `google_captcha`
--
ALTER TABLE `google_captcha`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `gpt_memory`
--
ALTER TABLE `gpt_memory`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `grid`
--
ALTER TABLE `grid`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `groups`
--
ALTER TABLE `groups`
  MODIFY `id` mediumint(8) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;

--
-- AUTO_INCREMENT for table `holidays`
--
ALTER TABLE `holidays`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `hospital`
--
ALTER TABLE `hospital`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=140;

--
-- AUTO_INCREMENT for table `hospital_deposit`
--
ALTER TABLE `hospital_deposit`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=115;

--
-- AUTO_INCREMENT for table `hospital_payment`
--
ALTER TABLE `hospital_payment`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=94;

--
-- AUTO_INCREMENT for table `insurance_company`
--
ALTER TABLE `insurance_company`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `inventory_categories`
--
ALTER TABLE `inventory_categories`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;

--
-- AUTO_INCREMENT for table `inventory_items`
--
ALTER TABLE `inventory_items`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `lab`
--
ALTER TABLE `lab`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=904;

--
-- AUTO_INCREMENT for table `laboratorist`
--
ALTER TABLE `laboratorist`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `lab_category`
--
ALTER TABLE `lab_category`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=128;

--
-- AUTO_INCREMENT for table `language`
--
ALTER TABLE `language`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `leaves`
--
ALTER TABLE `leaves`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `leave_type`
--
ALTER TABLE `leave_type`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `login_attempts`
--
ALTER TABLE `login_attempts`
  MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=258;

--
-- AUTO_INCREMENT for table `logs`
--
ALTER TABLE `logs`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2142;

--
-- AUTO_INCREMENT for table `macro`
--
ALTER TABLE `macro`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- AUTO_INCREMENT for table `manualemailshortcode`
--
ALTER TABLE `manualemailshortcode`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `manualsmsshortcode`
--
ALTER TABLE `manualsmsshortcode`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `manual_email_template`
--
ALTER TABLE `manual_email_template`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;

--
-- AUTO_INCREMENT for table `manual_sms_template`
--
ALTER TABLE `manual_sms_template`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `medical_history`
--
ALTER TABLE `medical_history`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=151;

--
-- AUTO_INCREMENT for table `medicine`
--
ALTER TABLE `medicine`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=36;

--
-- AUTO_INCREMENT for table `medicine_batches`
--
ALTER TABLE `medicine_batches`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `medicine_category`
--
ALTER TABLE `medicine_category`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `medicine_purchases`
--
ALTER TABLE `medicine_purchases`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `medicine_purchase_items`
--
ALTER TABLE `medicine_purchase_items`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `medicine_purchase_payments`
--
ALTER TABLE `medicine_purchase_payments`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `medicine_stock_movements`
--
ALTER TABLE `medicine_stock_movements`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- AUTO_INCREMENT for table `medicine_suppliers`
--
ALTER TABLE `medicine_suppliers`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `meeting`
--
ALTER TABLE `meeting`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;

--
-- AUTO_INCREMENT for table `meeting_settings`
--
ALTER TABLE `meeting_settings`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `module`
--
ALTER TABLE `module`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `notice`
--
ALTER TABLE `notice`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `nurse`
--
ALTER TABLE `nurse`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `odontogram`
--
ALTER TABLE `odontogram`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26;

--
-- AUTO_INCREMENT for table `ot_payment`
--
ALTER TABLE `ot_payment`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `package`
--
ALTER TABLE `package`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `patient`
--
ALTER TABLE `patient`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=54;

--
-- AUTO_INCREMENT for table `patient_deposit`
--
ALTER TABLE `patient_deposit`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=409;

--
-- AUTO_INCREMENT for table `patient_material`
--
ALTER TABLE `patient_material`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=50;

--
-- AUTO_INCREMENT for table `payment`
--
ALTER TABLE `payment`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=666;

--
-- AUTO_INCREMENT for table `paymentGateway`
--
ALTER TABLE `paymentGateway`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=595;

--
-- AUTO_INCREMENT for table `payment_category`
--
ALTER TABLE `payment_category`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=87;

--
-- AUTO_INCREMENT for table `payroll`
--
ALTER TABLE `payroll`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=105;

--
-- AUTO_INCREMENT for table `pharmacist`
--
ALTER TABLE `pharmacist`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `pharmacy_expense`
--
ALTER TABLE `pharmacy_expense`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `pharmacy_expense_category`
--
ALTER TABLE `pharmacy_expense_category`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `pharmacy_payment`
--
ALTER TABLE `pharmacy_payment`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27;

--
-- AUTO_INCREMENT for table `pharmacy_payment_category`
--
ALTER TABLE `pharmacy_payment_category`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `prescription`
--
ALTER TABLE `prescription`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=46;

--
-- AUTO_INCREMENT for table `pservice`
--
ALTER TABLE `pservice`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;

--
-- AUTO_INCREMENT for table `purchase_orders`
--
ALTER TABLE `purchase_orders`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `purchase_order_items`
--
ALTER TABLE `purchase_order_items`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `receptionist`
--
ALTER TABLE `receptionist`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `report`
--
ALTER TABLE `report`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `request`
--
ALTER TABLE `request`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `review`
--
ALTER TABLE `review`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `salary`
--
ALTER TABLE `salary`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `service`
--
ALTER TABLE `service`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `settings`
--
ALTER TABLE `settings`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=155;

--
-- AUTO_INCREMENT for table `site_featured`
--
ALTER TABLE `site_featured`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `site_gallery`
--
ALTER TABLE `site_gallery`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `site_grid`
--
ALTER TABLE `site_grid`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `site_map`
--
ALTER TABLE `site_map`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=140;

--
-- AUTO_INCREMENT for table `site_review`
--
ALTER TABLE `site_review`
  MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `site_service`
--
ALTER TABLE `site_service`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `site_settings`
--
ALTER TABLE `site_settings`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `site_slide`
--
ALTER TABLE `site_slide`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;

--
-- AUTO_INCREMENT for table `slide`
--
ALTER TABLE `slide`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `sms`
--
ALTER TABLE `sms`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `sms_settings`
--
ALTER TABLE `sms_settings`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=561;

--
-- AUTO_INCREMENT for table `stock_transactions`
--
ALTER TABLE `stock_transactions`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `superadmin`
--
ALTER TABLE `superadmin`
  MODIFY `id` int(50) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;

--
-- AUTO_INCREMENT for table `suppliers`
--
ALTER TABLE `suppliers`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `symptom`
--
ALTER TABLE `symptom`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62;

--
-- AUTO_INCREMENT for table `template`
--
ALTER TABLE `template`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32;

--
-- AUTO_INCREMENT for table `testpkz`
--
ALTER TABLE `testpkz`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `time_schedule`
--
ALTER TABLE `time_schedule`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=46;

--
-- AUTO_INCREMENT for table `time_slot`
--
ALTER TABLE `time_slot`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=850;

--
-- AUTO_INCREMENT for table `transaction_logs`
--
ALTER TABLE `transaction_logs`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=630;

--
-- AUTO_INCREMENT for table `treatment`
--
ALTER TABLE `treatment`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;

--
-- AUTO_INCREMENT for table `treatment_plans`
--
ALTER TABLE `treatment_plans`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34;

--
-- AUTO_INCREMENT for table `usage_logs`
--
ALTER TABLE `usage_logs`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
  MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1147;

--
-- AUTO_INCREMENT for table `users_groups`
--
ALTER TABLE `users_groups`
  MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1154;

--
-- AUTO_INCREMENT for table `vendor_quotations`
--
ALTER TABLE `vendor_quotations`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vendor_quotation_items`
--
ALTER TABLE `vendor_quotation_items`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `vital_signs`
--
ALTER TABLE `vital_signs`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- AUTO_INCREMENT for table `website_settings`
--
ALTER TABLE `website_settings`
  MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

-- --------------------------------------------------------

--
-- Structure for view `low_stock_items`
--
DROP TABLE IF EXISTS `low_stock_items`;

CREATE ALGORITHM=UNDEFINED DEFINER=`democa`@`localhost` SQL SECURITY DEFINER VIEW `low_stock_items`  AS SELECT `i`.`id` AS `id`, `i`.`item_code` AS `item_code`, `i`.`name` AS `name`, `i`.`category` AS `category`, `i`.`current_stock` AS `current_stock`, `i`.`reorder_level` AS `reorder_level`, `i`.`minimum_stock` AS `minimum_stock`, `i`.`unit_cost` AS `unit_cost`, `i`.`hospital_id` AS `hospital_id`, `i`.`reorder_level`- `i`.`current_stock` AS `shortage_quantity` FROM `inventory_items` AS `i` WHERE `i`.`current_stock` <= `i`.`reorder_level` AND `i`.`status` = 'active' ;

-- --------------------------------------------------------

--
-- Structure for view `medicine_expiring_soon`
--
DROP TABLE IF EXISTS `medicine_expiring_soon`;

CREATE ALGORITHM=UNDEFINED DEFINER=`democa`@`localhost` SQL SECURITY DEFINER VIEW `medicine_expiring_soon`  AS SELECT `m`.`id` AS `medicine_id`, `m`.`name` AS `medicine_name`, `m`.`generic` AS `generic`, `mb`.`id` AS `batch_id`, `mb`.`batch_number` AS `batch_number`, `mb`.`expiry_date` AS `expiry_date`, `mb`.`current_stock` AS `current_stock`, to_days(`mb`.`expiry_date`) - to_days(curdate()) AS `days_to_expiry`, `mb`.`unit_cost`* `mb`.`current_stock` AS `value_at_risk`, `m`.`hospital_id` AS `hospital_id`, `ms`.`name` AS `supplier_name` FROM ((`medicine` `m` join `medicine_batches` `mb` on(`m`.`id` = `mb`.`medicine_id`)) left join `medicine_suppliers` `ms` on(`mb`.`supplier_id` = `ms`.`id`)) WHERE `mb`.`current_stock` > 0 AND to_days(`mb`.`expiry_date`) - to_days(curdate()) <= 90 AND to_days(`mb`.`expiry_date`) - to_days(curdate()) >= 0 ORDER BY to_days(`mb`.`expiry_date`) - to_days(curdate()) ASC ;

-- --------------------------------------------------------

--
-- Structure for view `medicine_low_stock`
--
DROP TABLE IF EXISTS `medicine_low_stock`;

CREATE ALGORITHM=UNDEFINED DEFINER=`democa`@`localhost` SQL SECURITY DEFINER VIEW `medicine_low_stock`  AS SELECT `m`.`id` AS `id`, `m`.`name` AS `name`, `m`.`generic` AS `generic`, `m`.`category` AS `category`, `m`.`quantity` AS `current_total_stock`, coalesce(sum(`mb`.`current_stock`),0) AS `total_batch_stock`, count(`mb`.`id`) AS `total_batches`, `m`.`hospital_id` AS `hospital_id` FROM (`medicine` `m` left join `medicine_batches` `mb` on(`m`.`id` = `mb`.`medicine_id` and `mb`.`current_stock` > 0)) GROUP BY `m`.`id` HAVING `current_total_stock` <= 10 ;

-- --------------------------------------------------------

--
-- Structure for view `medicine_stock_with_batches`
--
DROP TABLE IF EXISTS `medicine_stock_with_batches`;

CREATE ALGORITHM=UNDEFINED DEFINER=`democa`@`localhost` SQL SECURITY DEFINER VIEW `medicine_stock_with_batches`  AS SELECT `m`.`id` AS `medicine_id`, `m`.`name` AS `medicine_name`, `m`.`generic` AS `generic`, `m`.`category` AS `category`, `m`.`company` AS `company`, coalesce(`mb`.`id`,0) AS `batch_id`, coalesce(`mb`.`batch_number`,'No Batch') AS `batch_number`, `mb`.`expiry_date` AS `expiry_date`, `mb`.`manufacturing_date` AS `manufacturing_date`, coalesce(`mb`.`current_stock`,0) AS `batch_stock`, coalesce(`mb`.`unit_cost`,0) AS `batch_cost`, coalesce(`mb`.`selling_price`,0) AS `batch_selling_price`, coalesce(`mb`.`mrp`,0) AS `batch_mrp`, coalesce(`mb`.`status`,'unknown') AS `batch_status`, CASE WHEN `mb`.`expiry_date` is null THEN NULL ELSE to_days(`mb`.`expiry_date`) - to_days(curdate()) END AS `days_to_expiry`, CASE WHEN `mb`.`expiry_date` is null THEN 'no_expiry' WHEN to_days(`mb`.`expiry_date`) - to_days(curdate()) <= 0 THEN 'expired' WHEN to_days(`mb`.`expiry_date`) - to_days(curdate()) <= 30 THEN 'expiring_soon' ELSE 'good' END AS `expiry_status`, `m`.`hospital_id` AS `hospital_id` FROM (`medicine` `m` left join `medicine_batches` `mb` on(`m`.`id` = `mb`.`medicine_id`)) WHERE `mb`.`current_stock` > 0 OR `mb`.`id` is null ;

-- --------------------------------------------------------

--
-- Structure for view `monthly_usage_summary`
--
DROP TABLE IF EXISTS `monthly_usage_summary`;

CREATE ALGORITHM=UNDEFINED DEFINER=`democa`@`localhost` SQL SECURITY DEFINER VIEW `monthly_usage_summary`  AS SELECT `i`.`id` AS `inventory_item_id`, `i`.`name` AS `item_name`, `i`.`category` AS `category`, year(`ul`.`usage_date`) AS `usage_year`, month(`ul`.`usage_date`) AS `usage_month`, sum(`ul`.`quantity_used`) AS `total_quantity_used`, sum(`ul`.`total_cost`) AS `total_cost`, avg(`ul`.`quantity_used`) AS `avg_daily_usage`, `ul`.`hospital_id` AS `hospital_id` FROM (`usage_logs` `ul` join `inventory_items` `i` on(`ul`.`inventory_item_id` = `i`.`id`)) GROUP BY `i`.`id`, year(`ul`.`usage_date`), month(`ul`.`usage_date`), `ul`.`hospital_id` ;

-- --------------------------------------------------------

--
-- Structure for view `purchase_order_summary`
--
DROP TABLE IF EXISTS `purchase_order_summary`;

CREATE ALGORITHM=UNDEFINED DEFINER=`democa`@`localhost` SQL SECURITY DEFINER VIEW `purchase_order_summary`  AS SELECT `po`.`id` AS `id`, `po`.`po_number` AS `po_number`, `s`.`name` AS `supplier_name`, `po`.`order_date` AS `order_date`, `po`.`expected_delivery_date` AS `expected_delivery_date`, `po`.`status` AS `status`, `po`.`grand_total` AS `grand_total`, count(`poi`.`id`) AS `total_items`, sum(`poi`.`quantity_ordered`) AS `total_quantity_ordered`, sum(`poi`.`quantity_received`) AS `total_quantity_received`, `po`.`hospital_id` AS `hospital_id` FROM ((`purchase_orders` `po` left join `suppliers` `s` on(`po`.`supplier_id` = `s`.`id`)) left join `purchase_order_items` `poi` on(`po`.`id` = `poi`.`purchase_order_id`)) GROUP BY `po`.`id` ;

--
-- Constraints for dumped tables
--

--
-- Constraints for table `inventory_categories`
--
ALTER TABLE `inventory_categories`
  ADD CONSTRAINT `inventory_categories_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `inventory_categories` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `medicine_batches`
--
ALTER TABLE `medicine_batches`
  ADD CONSTRAINT `fk_batches_purchase_item` FOREIGN KEY (`purchase_item_id`) REFERENCES `medicine_purchase_items` (`id`) ON DELETE SET NULL,
  ADD CONSTRAINT `fk_batches_supplier` FOREIGN KEY (`supplier_id`) REFERENCES `medicine_suppliers` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `medicine_purchases`
--
ALTER TABLE `medicine_purchases`
  ADD CONSTRAINT `fk_purchases_supplier` FOREIGN KEY (`supplier_id`) REFERENCES `medicine_suppliers` (`id`),
  ADD CONSTRAINT `medicine_purchases_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `medicine_suppliers` (`id`);

--
-- Constraints for table `medicine_purchase_items`
--
ALTER TABLE `medicine_purchase_items`
  ADD CONSTRAINT `fk_purchase_items_purchase` FOREIGN KEY (`purchase_id`) REFERENCES `medicine_purchases` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `medicine_purchase_payments`
--
ALTER TABLE `medicine_purchase_payments`
  ADD CONSTRAINT `fk_purchase_payments_purchase` FOREIGN KEY (`purchase_id`) REFERENCES `medicine_purchases` (`id`);

--
-- Constraints for table `medicine_stock_movements`
--
ALTER TABLE `medicine_stock_movements`
  ADD CONSTRAINT `fk_stock_movements_batch` FOREIGN KEY (`batch_id`) REFERENCES `medicine_batches` (`id`) ON DELETE SET NULL;

--
-- Constraints for table `purchase_orders`
--
ALTER TABLE `purchase_orders`
  ADD CONSTRAINT `purchase_orders_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`);

--
-- Constraints for table `purchase_order_items`
--
ALTER TABLE `purchase_order_items`
  ADD CONSTRAINT `purchase_order_items_ibfk_1` FOREIGN KEY (`purchase_order_id`) REFERENCES `purchase_orders` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `purchase_order_items_ibfk_2` FOREIGN KEY (`inventory_item_id`) REFERENCES `inventory_items` (`id`);

--
-- Constraints for table `stock_transactions`
--
ALTER TABLE `stock_transactions`
  ADD CONSTRAINT `stock_transactions_ibfk_1` FOREIGN KEY (`inventory_item_id`) REFERENCES `inventory_items` (`id`);

--
-- Constraints for table `usage_logs`
--
ALTER TABLE `usage_logs`
  ADD CONSTRAINT `usage_logs_ibfk_1` FOREIGN KEY (`inventory_item_id`) REFERENCES `inventory_items` (`id`);

--
-- Constraints for table `vendor_quotations`
--
ALTER TABLE `vendor_quotations`
  ADD CONSTRAINT `vendor_quotations_ibfk_1` FOREIGN KEY (`supplier_id`) REFERENCES `suppliers` (`id`);

--
-- Constraints for table `vendor_quotation_items`
--
ALTER TABLE `vendor_quotation_items`
  ADD CONSTRAINT `vendor_quotation_items_ibfk_1` FOREIGN KEY (`quotation_id`) REFERENCES `vendor_quotations` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `vendor_quotation_items_ibfk_2` FOREIGN KEY (`inventory_item_id`) REFERENCES `inventory_items` (`id`);
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
