From 281516c5dc52445fff14f35a888ccd0ac7cdcb8e Mon Sep 17 00:00:00 2001 From: Venkatesh Date: Fri, 7 Aug 2026 10:19:31 +0530 Subject: [PATCH] FEAT_TPA_REPORT_HTML --- app/Config/Routes.php | 16 + .../ClaimReportDashboardController.php | 261 +++ app/Controllers/EmployeeController.php | 136 +- app/Libraries/AbhiMisChartImageService.php | 396 ++++ app/Libraries/AbhiMisPdfService.php | 161 ++ app/Libraries/AbhiMisReportService.php | 1238 +++++++++++++ app/Libraries/IciciMisPdfService.php | 137 ++ app/Libraries/IciciMisReportService.php | 1164 ++++++++++++ app/Libraries/MediAssistMisPdfService.php | 139 ++ app/Libraries/MediAssistMisReportService.php | 1488 +++++++++++++++ app/Libraries/VidalMisPdfService.php | 139 ++ app/Libraries/VidalMisReportService.php | 1616 +++++++++++++++++ app/Views/claims_mis_abhi.php | 772 ++++++++ app/Views/claims_mis_abhi_pdf.php | 558 ++++++ app/Views/claims_mis_icici.php | 1211 ++++++++++++ app/Views/claims_mis_medi_assist.php | 1015 +++++++++++ app/Views/claims_mis_vidal.php | 869 +++++++++ .../partials/claims_mis_abhi_helpers.php | 31 + app/Views/partials/claims_mis_abhi_script.php | 550 ++++++ app/Views/tpa_mis_reports_dashboard.php | 401 ++++ public/assets/images/abhi.png | Bin 0 -> 72603 bytes public/assets/images/icici_lambard_new.png | Bin 0 -> 17291 bytes public/assets/images/medi_assist.png | Bin 0 -> 33640 bytes public/assets/images/vidal.png | Bin 0 -> 60779 bytes public/assets/images/vidal_mis.png | Bin 0 -> 56831 bytes public/assets/libs/chart.js/chart.umd.min.js | 20 + tests/smoke_abhi_mis_report.php | 72 + tests/smoke_icici_mis_report.php | 140 ++ tests/smoke_medi_assist_mis_report.php | 128 ++ tests/smoke_vidal_mis_report.php | 133 ++ 30 files changed, 12763 insertions(+), 28 deletions(-) create mode 100644 app/Libraries/AbhiMisChartImageService.php create mode 100644 app/Libraries/AbhiMisPdfService.php create mode 100644 app/Libraries/AbhiMisReportService.php create mode 100644 app/Libraries/IciciMisPdfService.php create mode 100644 app/Libraries/IciciMisReportService.php create mode 100644 app/Libraries/MediAssistMisPdfService.php create mode 100644 app/Libraries/MediAssistMisReportService.php create mode 100644 app/Libraries/VidalMisPdfService.php create mode 100644 app/Libraries/VidalMisReportService.php create mode 100644 app/Views/claims_mis_abhi.php create mode 100644 app/Views/claims_mis_abhi_pdf.php create mode 100644 app/Views/claims_mis_icici.php create mode 100644 app/Views/claims_mis_medi_assist.php create mode 100644 app/Views/claims_mis_vidal.php create mode 100644 app/Views/partials/claims_mis_abhi_helpers.php create mode 100644 app/Views/partials/claims_mis_abhi_script.php create mode 100644 app/Views/tpa_mis_reports_dashboard.php create mode 100644 public/assets/images/abhi.png create mode 100644 public/assets/images/icici_lambard_new.png create mode 100644 public/assets/images/medi_assist.png create mode 100644 public/assets/images/vidal.png create mode 100644 public/assets/images/vidal_mis.png create mode 100644 public/assets/libs/chart.js/chart.umd.min.js create mode 100644 tests/smoke_abhi_mis_report.php create mode 100644 tests/smoke_icici_mis_report.php create mode 100644 tests/smoke_medi_assist_mis_report.php create mode 100644 tests/smoke_vidal_mis_report.php diff --git a/app/Config/Routes.php b/app/Config/Routes.php index 1d379fc2..e50dd0f0 100755 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -257,6 +257,8 @@ $routes->group("/employee", ["filter" => "authMVC"], function ($routes) { $routes->get('clearCdSession', 'EmployeeController::clearCdSession'); $routes->get('checkSessionStatus', 'EmployeeController::checkSessionStatus'); $routes->get("tpaReportsDashboard", "EmployeeController::tpaReportsDashboard"); + $routes->get("tpaReportsMetabase", "EmployeeController::tpaReportsMetabase"); + $routes->get("tpaMisReport", "EmployeeController::tpaMisReport"); }); @@ -513,6 +515,13 @@ $routes->group("/util", ["filter" => "authMVC"], function ($routes) { $routes->get('debug/(:num)', 'ClaimReportDashboardController::debug/$1'); $routes->get('sync', 'ClaimReportDashboardController::sync'); $routes->get('download-excel', 'ClaimReportDashboardController::downloadExcel'); + $routes->get('mis', 'ClaimReportDashboardController::mis'); + $routes->get('mis-pdf', 'ClaimReportDashboardController::misPdf'); + }); + + $routes->group('tpa-reports', static function ($routes) { + $routes->get('metabase', 'EmployeeController::tpaReportsMetabase'); + $routes->get('mis', 'EmployeeController::tpaMisReport'); }); $routes->group('enrollment-collection-v1', static function ($routes) { @@ -883,6 +892,13 @@ $routes->group("employeeRest", ["filter" => ['GlobalPostFileUploadGuard', 'ratel $routes->get('debug', 'ClaimReportDashboardController::debug'); $routes->get('debug/(:num)', 'ClaimReportDashboardController::debug/$1'); $routes->get('download-excel', 'ClaimReportDashboardController::downloadExcel'); + $routes->get('mis', 'ClaimReportDashboardController::mis'); + $routes->get('mis-pdf', 'ClaimReportDashboardController::misPdf'); + }); + + $routes->group('tpa-reports', static function ($routes) { + $routes->get('metabase', 'EmployeeController::tpaReportsMetabase'); + $routes->get('mis', 'EmployeeController::tpaMisReport'); }); $routes->group('enrollment-collection-v1', static function ($routes) { diff --git a/app/Controllers/ClaimReportDashboardController.php b/app/Controllers/ClaimReportDashboardController.php index 61f2ccf3..8dd07865 100644 --- a/app/Controllers/ClaimReportDashboardController.php +++ b/app/Controllers/ClaimReportDashboardController.php @@ -5,6 +5,14 @@ namespace App\Controllers; use App\Models\ClaimReportDashboardModel; use App\Models\ClaimsCollectionV2DashboardModel; use App\Models\ClaimDumpFileModel; +use App\Libraries\AbhiMisReportService; +use App\Libraries\AbhiMisPdfService; +use App\Libraries\IciciMisReportService; +use App\Libraries\IciciMisPdfService; +use App\Libraries\MediAssistMisReportService; +use App\Libraries\MediAssistMisPdfService; +use App\Libraries\VidalMisReportService; +use App\Libraries\VidalMisPdfService; use CodeIgniter\API\ResponseTrait; use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Writer\Xlsx; @@ -752,4 +760,257 @@ class ClaimReportDashboardController extends BaseController return array_values(array_slice($fields, $marker + 1)); } + /** + * HTML preview of TPA-specific MIS report for a policy. + * Resolves TPA from client_policy and routes to ABHI / ICICI templates. + * + * GET /util/claims-collection-report/mis?client_policy_id= + */ + public function mis() + { + $policyId = $this->resolvePolicyId(); + if ($policyId <= 0) { + return $this->respond([ + 'status' => false, + 'message' => 'client_policy or client_policy_id is required.', + ], 422); + } + + $resolved = $this->resolveMisKind($policyId); + if (($resolved['kind'] ?? null) === null) { + return $this->respond([ + 'status' => false, + 'message' => $resolved['message'] ?? 'MIS report is not available for this policy.', + ], 404); + } + + $path = $this->request->getUri()->getPath(); + $isJwt = stripos($path, 'employeeRest') !== false; + $prefix = $isJwt ? 'employeeRest/claims-collection-report' : 'util/claims-collection-report'; + $pdfUrl = base_url($prefix . '/mis-pdf?client_policy_id=' . $policyId); + + if ($resolved['kind'] === 'icici') { + $built = (new IciciMisReportService())->build($policyId); + if (!$built['status']) { + return $this->respond([ + 'status' => false, + 'message' => $built['message'] ?? 'Unable to build ICICI MIS report.', + ], 404); + } + + return view('claims_mis_icici', [ + 'report' => $built['data'], + 'view_model' => $built['data']['view_model'] ?? [], + 'policy_id' => $policyId, + 'pdf_url' => $pdfUrl, + 'embed' => false, + ]); + } + + if ($resolved['kind'] === 'medi_assist') { + $built = (new MediAssistMisReportService())->build($policyId); + if (!$built['status']) { + return $this->respond([ + 'status' => false, + 'message' => $built['message'] ?? 'Unable to build Medi Assist MIS report.', + ], 404); + } + + return view('claims_mis_medi_assist', [ + 'report' => $built['data'], + 'view_model' => $built['data']['view_model'] ?? [], + 'policy_id' => $policyId, + 'pdf_url' => $pdfUrl, + 'embed' => false, + ]); + } + + if ($resolved['kind'] === 'vidal') { + $built = (new VidalMisReportService())->build($policyId); + if (!$built['status']) { + return $this->respond([ + 'status' => false, + 'message' => $built['message'] ?? 'Unable to build Vidal MIS report.', + ], 404); + } + + return view('claims_mis_vidal', [ + 'report' => $built['data'], + 'view_model' => $built['data']['view_model'] ?? [], + 'policy_id' => $policyId, + 'pdf_url' => $pdfUrl, + 'embed' => false, + ]); + } + + $built = (new AbhiMisReportService())->build($policyId); + if (!$built['status']) { + return $this->respond([ + 'status' => false, + 'message' => $built['message'] ?? 'Unable to build MIS report.', + ], 404); + } + + return view('claims_mis_abhi', [ + 'report' => $built['data'], + 'view_model' => $built['data']['view_model'] ?? [], + 'policy_id' => $policyId, + 'pdf_url' => $pdfUrl, + 'embed' => false, + ]); + } + + /** + * Download TPA-specific MIS report as PDF. + * Resolves TPA from client_policy and routes to ABHI / ICICI PDF generators. + * + * GET /util/claims-collection-report/mis-pdf?client_policy_id= + */ + public function misPdf() + { + $policyId = $this->resolvePolicyId(); + if ($policyId <= 0) { + return $this->respond([ + 'status' => false, + 'message' => 'client_policy or client_policy_id is required.', + ], 422); + } + + $resolved = $this->resolveMisKind($policyId); + if (($resolved['kind'] ?? null) === null) { + return $this->respond([ + 'status' => false, + 'message' => $resolved['message'] ?? 'MIS report is not available for this policy.', + ], 404); + } + + if ($resolved['kind'] === 'icici') { + $built = (new IciciMisReportService())->build($policyId); + if (!$built['status']) { + return $this->respond([ + 'status' => false, + 'message' => $built['message'] ?? 'Unable to build ICICI MIS report.', + ], 404); + } + + $pdf = (new IciciMisPdfService())->generateFromReport($built['data'], $policyId); + if (!$pdf['status']) { + return $this->respond([ + 'status' => false, + 'message' => $pdf['message'] ?? 'PDF generation failed.', + ], 500); + } + + return $this->response + ->setHeader('Content-Type', 'application/pdf') + ->setHeader('Content-Disposition', 'attachment; filename="' . ($pdf['filename'] ?? 'ICICI_MIS.pdf') . '"') + ->setBody($pdf['content'] ?? ''); + } + + if ($resolved['kind'] === 'medi_assist') { + $built = (new MediAssistMisReportService())->build($policyId); + if (!$built['status']) { + return $this->respond([ + 'status' => false, + 'message' => $built['message'] ?? 'Unable to build Medi Assist MIS report.', + ], 404); + } + + $pdf = (new MediAssistMisPdfService())->generateFromReport($built['data'], $policyId); + if (!$pdf['status']) { + return $this->respond([ + 'status' => false, + 'message' => $pdf['message'] ?? 'PDF generation failed.', + ], 500); + } + + return $this->response + ->setHeader('Content-Type', 'application/pdf') + ->setHeader('Content-Disposition', 'attachment; filename="' . ($pdf['filename'] ?? 'MA_MIS.pdf') . '"') + ->setBody($pdf['content'] ?? ''); + } + + if ($resolved['kind'] === 'vidal') { + $built = (new VidalMisReportService())->build($policyId); + if (!$built['status']) { + return $this->respond([ + 'status' => false, + 'message' => $built['message'] ?? 'Unable to build Vidal MIS report.', + ], 404); + } + + $pdf = (new VidalMisPdfService())->generateFromReport($built['data'], $policyId); + if (!$pdf['status']) { + return $this->respond([ + 'status' => false, + 'message' => $pdf['message'] ?? 'PDF generation failed.', + ], 500); + } + + return $this->response + ->setHeader('Content-Type', 'application/pdf') + ->setHeader('Content-Disposition', 'attachment; filename="' . ($pdf['filename'] ?? 'VIDAL_MIS.pdf') . '"') + ->setBody($pdf['content'] ?? ''); + } + + $built = (new AbhiMisReportService())->build($policyId); + if (!$built['status']) { + return $this->respond([ + 'status' => false, + 'message' => $built['message'] ?? 'Unable to build MIS report.', + ], 404); + } + + $pdf = (new AbhiMisPdfService())->generateFromReport($built['data'], $policyId); + if (!$pdf['status']) { + return $this->respond([ + 'status' => false, + 'message' => $pdf['message'] ?? 'PDF generation failed.', + ], 500); + } + + return $this->response + ->setHeader('Content-Type', 'application/pdf') + ->setHeader('Content-Disposition', 'attachment; filename="' . ($pdf['filename'] ?? 'ABH_MIS.pdf') . '"') + ->setBody($pdf['content'] ?? ''); + } + + /** + * Resolve which MIS report to serve from the policy's TPA. + * + * @return array{kind:?string,message?:string,tpa_id?:int} + */ + private function resolveMisKind(int $policyId): array + { + $db = db_connect(); + $policy = $db->table('client_policy') + ->select('tpa_id') + ->where('id', $policyId) + ->get() + ->getRowArray(); + + if (!$policy) { + return ['kind' => null, 'message' => 'Policy not found.']; + } + + $tpaId = (int) ($policy['tpa_id'] ?? 0); + $map = [ + (int) env('ABHI_PRIMARY_KEY_CONSTANT') => 'abhi', + (int) env('ICICI_PRIMARY_KEY_CONSTANT') => 'icici', + (int) env('MEDI_ASSIST_PRIMARY_KEY_CONSTANT') => 'medi_assist', + (int) env('VIDAL_PRIMARY_KEY_CONSTANT') => 'vidal', + ]; + + $kind = $map[$tpaId] ?? null; + if ($kind === null) { + return [ + 'kind' => null, + 'tpa_id' => $tpaId, + 'message' => 'MIS report is not available for this policy TPA. Supported: ABHI, ICICI, Medi Assist, Vidal.', + ]; + } + + return ['kind' => $kind, 'tpa_id' => $tpaId]; + } + } diff --git a/app/Controllers/EmployeeController.php b/app/Controllers/EmployeeController.php index 4ed9f93b..89d99b13 100755 --- a/app/Controllers/EmployeeController.php +++ b/app/Controllers/EmployeeController.php @@ -7408,21 +7408,31 @@ class EmployeeController extends AdminController } + /** + * TPA Reports dashboard page — native MIS only (ABHI / ICICI / Medi Assist / Vidal). + */ public function tpaReportsDashboard() + { + $data = [ + 'tab_name' => 'TPA Reports', + 'page_name' => 'TPA Reports', + 'misApiUrl' => base_url('/util/tpa-reports/mis'), + ]; + + return $this->loadLayout('tpa_mis_reports_dashboard', $data); + } + + /** + * Metabase signed-embed token for a client policy. + * GET /util/tpa-reports/metabase?client_policy= + * GET /employeeRest/tpa-reports/metabase?client_policy= + */ + public function tpaReportsMetabase() { $METABASE_SECRET_KEY = getenv('METABASE_SECRET_KEY'); - $policy_id = $this->request->getGet('client_policy') ?? null; - - if ($this->request->getGet('api') != 1) { - $data = [ - 'tab_name' => 'TPA Reports', - 'page_name' => 'TPA Reports', - 'metabaseUrl' => 'https://nsights.nhanceindia.in', - 'dashboardApiUrl' => base_url('/employee/tpaReportsDashboard'), - ]; - - return $this->loadLayout('meta_dashboard_demo_one', $data); - } + $policy_id = $this->request->getGet('client_policy') + ?? $this->request->getGet('client_policy_id') + ?? null; if (empty($policy_id)) { return $this->respond([ @@ -7441,31 +7451,22 @@ class EmployeeController extends AdminController $database_id = isset($client_policy_data['dashboard_id']) ? (int) $client_policy_data['dashboard_id'] : null; if (empty($database_id)) { - - if ($this->request->getGet('api') == 1) { - return $this->respond([ - 'status' => 'failed', - 'message' => 'There is no dashboard for this TPA.', - 'data' => [] - ]); - } - - return view('errors/404', [ - 'message' => 'There is no dashboard for this TPA.' + return $this->respond([ + 'status' => 'failed', + 'message' => 'There is no dashboard for this TPA.', + 'data' => [], ]); } $payload = [ 'resource' => [ - 'dashboard' => $database_id + 'dashboard' => $database_id, ], - 'exp' => time() + (10 * 60), // 10 minutes - 'params' => (object) ['client_policy' => $policy_id ], // MUST be object for Metabase - + 'exp' => time() + (10 * 60), + 'params' => (object) ['client_policy' => $policy_id], ]; $token = JWT::encode($payload, $METABASE_SECRET_KEY, 'HS256'); - // dd($token); return $this->respond([ 'status' => 'success', @@ -7477,5 +7478,84 @@ class EmployeeController extends AdminController ]); } + /** + * Native TPA MIS report embed info for the frontend (preview + PDF URLs). + * GET /util/tpa-reports/mis?client_policy= + * GET /employeeRest/tpa-reports/mis?client_policy= + */ + public function tpaMisReport() + { + $policyId = (int) ( + $this->request->getGet('client_policy') + ?? $this->request->getGet('client_policy_id') + ?? 0 + ); + + if ($policyId <= 0) { + return $this->respond([ + 'status' => 'failed', + 'message' => 'Client policy is required.', + 'data' => [], + ]); + } + + $policy = $this->clientPolicyModel + ->select('id, tpa_id') + ->where('id', $policyId) + ->first(); + + if (!$policy) { + return $this->respond([ + 'status' => 'failed', + 'message' => 'Policy not found.', + 'data' => [], + ]); + } + + $tpaId = (int) ($policy['tpa_id'] ?? 0); + $map = [ + (int) env('ABHI_PRIMARY_KEY_CONSTANT') => 'abhi', + (int) env('ICICI_PRIMARY_KEY_CONSTANT') => 'icici', + (int) env('MEDI_ASSIST_PRIMARY_KEY_CONSTANT') => 'medi_assist', + (int) env('VIDAL_PRIMARY_KEY_CONSTANT') => 'vidal', + ]; + $kind = $map[$tpaId] ?? null; + + if ($kind === null) { + return $this->respond([ + 'status' => 'failed', + 'message' => 'MIS report is not available for this policy TPA. Supported: ABHI, ICICI, Medi Assist, Vidal.', + 'data' => [ + 'supported' => false, + 'tpa_id' => $tpaId, + ], + ]); + } + + $path = $this->request->getUri()->getPath(); + $isJwt = stripos($path, 'employeeRest') !== false; + $prefix = $isJwt ? 'employeeRest/claims-collection-report' : 'util/claims-collection-report'; + + $labels = [ + 'abhi' => 'ABHI MIS Report', + 'icici' => 'ICICI Portfolio Analysis', + 'medi_assist' => 'Medi Assist Portfolio Analysis', + 'vidal' => 'Vidal Corporate Analysis', + ]; + + return $this->respond([ + 'status' => 'success', + 'message' => 'MIS report available.', + 'data' => [ + 'supported' => true, + 'kind' => $kind, + 'tpa_id' => $tpaId, + 'title' => $labels[$kind] ?? 'TPA MIS Report', + 'preview_url' => base_url($prefix . '/mis?client_policy_id=' . $policyId), + 'pdf_url' => base_url($prefix . '/mis-pdf?client_policy_id=' . $policyId), + ], + ]); + } + } diff --git a/app/Libraries/AbhiMisChartImageService.php b/app/Libraries/AbhiMisChartImageService.php new file mode 100644 index 00000000..6741449a --- /dev/null +++ b/app/Libraries/AbhiMisChartImageService.php @@ -0,0 +1,396 @@ +dir = $dir ?: (rtrim(WRITEPATH, '/\\') . '/cache/abhi_mis_charts'); + if (!is_dir($this->dir)) { + @mkdir($this->dir, 0775, true); + } + } + + /** + * @param array $vm + * @return array chart key => absolute PNG path + */ + public function buildAll(array $vm): array + { + $out = []; + + $status = $vm['claimStatus'] ?? []; + $out['donut'] = $this->pie( + 'donut', + array_map(static fn ($r) => (string) ($r['status'] ?? ''), $status), + array_map(static fn ($r) => (float) ($r['reported'] ?? 0), $status), + ['#2E86DE', '#1B3F8C', '#E8862C', '#6A3D9A'] + ); + + $pre = $vm['preAuthTAT'] ?? ['within' => 100, 'above' => 0]; + $out['preAuth'] = $this->pie( + 'preauth', + ['Within 2 Hours %', 'Above 2 Hours %'], + [(float) ($pre['within'] ?? 0), (float) ($pre['above'] ?? 0)], + ['#2E86DE', '#1B3F8C'] + ); + + $bars = $vm['premiumBars'] ?? [0, 0, 0]; + $out['premiumBars'] = $this->vBars( + 'premium_bars', + ['Premium', 'Earn Premium', 'Claim Incurred'], + [(float) ($bars[0] ?? 0), (float) ($bars[1] ?? 0), (float) ($bars[2] ?? 0)], + ['#2E86DE', '#1B3F8C', '#E8862C'] + ); + + $gender = $vm['gender'] ?? []; + $gLabels = []; + $gCounts = []; + $gAmts = []; + $gColors = []; + foreach (['Male' => '#6A3D9A', 'Female' => '#1A3399'] as $label => $color) { + $row = null; + foreach ($gender as $g) { + if (($g['label'] ?? '') === $label) { + $row = $g; + break; + } + } + $gLabels[] = $label; + $gCounts[] = (float) ($row['count'] ?? 0); + $gAmts[] = (float) ($row['amount'] ?? 0); + $gColors[] = $color; + } + $out['genderCount'] = $this->hBars('gender_count', $gLabels, $gCounts, $gColors, false); + $out['genderAmt'] = $this->hBars('gender_amt', $gLabels, $gAmts, $gColors, true); + + $pc = $vm['paidCharts'] ?? []; + $cbt = $pc['countByType'] ?? []; + $out['paidCount'] = $this->vBars( + 'paid_count', + ['Cashless', 'Reimbursement'], + [(float) ($pc['paidCount'][0] ?? 0), (float) ($pc['paidCount'][1] ?? 0)], + ['#2E86DE', '#1B3F8C'] + ); + $out['paidAmtAcs'] = $this->groupedVBars( + 'paid_amt_acs', + ['Cashless', 'Reimbursement'], + [ + ['label' => 'Paid Amt', 'values' => [(float) ($pc['paidAmt'][0] ?? 0), (float) ($pc['paidAmt'][1] ?? 0)], 'color' => '#2E86DE'], + ['label' => 'ACS', 'values' => [(float) ($pc['acs'][0] ?? 0), (float) ($pc['acs'][1] ?? 0)], 'color' => '#E8862C'], + ] + ); + $out['countStatus'] = $this->groupedVBars( + 'count_status', + ['Settled', 'Outstanding', 'Rejected'], + [ + [ + 'label' => 'Cashless', + 'values' => [ + (float) ($cbt['Settled']['Cashless'] ?? 0), + (float) ($cbt['Outstanding']['Cashless'] ?? 0), + (float) ($cbt['Rejected']['Cashless'] ?? 0), + ], + 'color' => '#2E86DE', + ], + [ + 'label' => 'Reimbursement', + 'values' => [ + (float) ($cbt['Settled']['Reimbursement'] ?? 0), + (float) ($cbt['Outstanding']['Reimbursement'] ?? 0), + (float) ($cbt['Rejected']['Reimbursement'] ?? 0), + ], + 'color' => '#1B3F8C', + ], + ] + ); + $out['amtStatus'] = $this->vBars( + 'amt_status', + ['Settled', 'Outstanding', 'Rejected'], + [ + (float) ($pc['amtByStatus'][0] ?? 0), + (float) ($pc['amtByStatus'][1] ?? 0), + (float) ($pc['amtByStatus'][2] ?? 0), + ], + ['#2E86DE', '#E8862C', '#6A3D9A'] + ); + + $months = $vm['months'] ?? []; + $out['monthCount'] = $this->groupedVBars( + 'month_count', + $months, + [ + ['label' => 'Paid Count', 'values' => array_map('floatval', $vm['paidCountByMonth'] ?? []), 'color' => '#2E86DE'], + ['label' => 'Outstanding Count', 'values' => array_map('floatval', $vm['outCountByMonth'] ?? []), 'color' => '#1B3F8C'], + ], + 720, + 280 + ); + $out['monthAmt'] = $this->groupedVBars( + 'month_amt', + $months, + [ + ['label' => 'Paid Amount', 'values' => array_map('floatval', $vm['paidAmtByMonth'] ?? []), 'color' => '#2E86DE'], + ['label' => 'Outstanding Amount', 'values' => array_map('floatval', $vm['outAmtByMonth'] ?? []), 'color' => '#1B3F8C'], + ], + 720, + 280 + ); + + return array_filter($out); + } + + /** + * @param list $labels + * @param list $values + * @param list $colors + */ + public function pie(string $key, array $labels, array $values, array $colors, int $w = 420, int $h = 260): string + { + $img = imagecreatetruecolor($w, $h); + $white = imagecolorallocate($img, 255, 255, 255); + imagefilledrectangle($img, 0, 0, $w, $h, $white); + + $total = array_sum($values); + $cx = (int) ($w * 0.32); + $cy = (int) ($h / 2); + $rx = 95; + $ry = 70; + $start = 0.0; + + foreach ($values as $i => $val) { + $slice = $total > 0 ? ($val / $total) * 360.0 : 0.0; + if ($slice <= 0) { + continue; + } + $rgb = $this->hex($colors[$i % count($colors)]); + $col = imagecolorallocate($img, $rgb[0], $rgb[1], $rgb[2]); + $this->filledArc($img, $cx, $cy, $rx * 2, $ry * 2, (int) $start, (int) ($start + $slice), $col); + $start += $slice; + } + + // hole for donut + $hole = imagecolorallocate($img, 255, 255, 255); + imagefilledellipse($img, $cx, $cy, (int) ($rx * 0.9), (int) ($ry * 0.9), $hole); + + $black = imagecolorallocate($img, 40, 40, 40); + $lx = (int) ($w * 0.58); + $ly = 40; + foreach ($labels as $i => $label) { + $rgb = $this->hex($colors[$i % count($colors)]); + $col = imagecolorallocate($img, $rgb[0], $rgb[1], $rgb[2]); + imagefilledrectangle($img, $lx, $ly, $lx + 12, $ly + 12, $col); + $pct = $total > 0 ? round(($values[$i] / $total) * 100, 1) : 0; + imagestring($img, 3, $lx + 18, $ly - 1, $this->fit($label . ' ' . $pct . '%', 28), $black); + $ly += 22; + } + + return $this->save($key, $img); + } + + /** + * @param list $labels + * @param list $values + * @param list $colors + */ + public function hBars(string $key, array $labels, array $values, array $colors, bool $indianFmt, int $w = 480, int $h = 200): string + { + $img = imagecreatetruecolor($w, $h); + $white = imagecolorallocate($img, 255, 255, 255); + $black = imagecolorallocate($img, 40, 40, 40); + imagefilledrectangle($img, 0, 0, $w, $h, $white); + + $max = max(1.0, ...array_map('floatval', $values ?: [1])); + $left = 70; + $barH = 36; + $gap = 28; + $y = 40; + $maxW = $w - $left - 30; + + foreach ($labels as $i => $label) { + $val = (float) ($values[$i] ?? 0); + $bw = (int) (($val / $max) * $maxW); + $rgb = $this->hex($colors[$i % count($colors)]); + $col = imagecolorallocate($img, $rgb[0], $rgb[1], $rgb[2]); + imagestring($img, 3, 8, $y + 10, $this->fit($label, 10), $black); + imagefilledrectangle($img, $left, $y, $left + max(2, $bw), $y + $barH, $col); + $txt = $indianFmt ? $this->fmtIn($val) : (string) (int) $val; + $tx = $left + (int) ($bw / 2) - (int) (strlen($txt) * 3); + $tx = max($left + 4, min($tx, $w - 80)); + $box = imagecolorallocate($img, 255, 255, 255); + imagefilledrectangle($img, $tx - 2, $y + 10, $tx + strlen($txt) * 7 + 2, $y + 26, $box); + imagestring($img, 3, $tx, $y + 12, $txt, $black); + $y += $barH + $gap; + } + + return $this->save($key, $img); + } + + /** + * @param list $labels + * @param list $values + * @param list $colors + */ + public function vBars(string $key, array $labels, array $values, array $colors, int $w = 480, int $h = 240): string + { + $img = imagecreatetruecolor($w, $h); + $white = imagecolorallocate($img, 255, 255, 255); + $black = imagecolorallocate($img, 40, 40, 40); + $grid = imagecolorallocate($img, 230, 230, 230); + imagefilledrectangle($img, 0, 0, $w, $h, $white); + + $max = max(1.0, ...array_map('floatval', $values ?: [1])); + $top = 20; + $bottom = $h - 40; + $left = 40; + $right = $w - 20; + $plotH = $bottom - $top; + $n = max(1, count($labels)); + $slot = ($right - $left) / $n; + $barW = max(12, (int) ($slot * 0.45)); + + for ($g = 0; $g <= 4; $g++) { + $gy = (int) ($bottom - ($plotH * $g / 4)); + imageline($img, $left, $gy, $right, $gy, $grid); + } + + foreach ($labels as $i => $label) { + $val = (float) ($values[$i] ?? 0); + $bh = (int) (($val / $max) * $plotH); + $x = (int) ($left + $slot * $i + ($slot - $barW) / 2); + $y = $bottom - $bh; + $rgb = $this->hex($colors[$i % count($colors)]); + $col = imagecolorallocate($img, $rgb[0], $rgb[1], $rgb[2]); + imagefilledrectangle($img, $x, $y, $x + $barW, $bottom, $col); + $txt = $this->fmtShort($val); + imagestring($img, 2, $x, max(4, $y - 14), $txt, $black); + imagestring($img, 2, $x - 4, $bottom + 8, $this->fit($label, 12), $black); + } + + return $this->save($key, $img); + } + + /** + * @param list $labels + * @param list,color:string}> $series + */ + public function groupedVBars(string $key, array $labels, array $series, int $w = 520, int $h = 240): string + { + $img = imagecreatetruecolor($w, $h); + $white = imagecolorallocate($img, 255, 255, 255); + $black = imagecolorallocate($img, 40, 40, 40); + $grid = imagecolorallocate($img, 230, 230, 230); + imagefilledrectangle($img, 0, 0, $w, $h, $white); + + $all = []; + foreach ($series as $s) { + foreach ($s['values'] as $v) { + $all[] = (float) $v; + } + } + $max = max(1.0, ...($all ?: [1.0])); + $top = 28; + $bottom = $h - 50; + $left = 30; + $right = $w - 20; + $plotH = $bottom - $top; + $n = max(1, count($labels)); + $slot = ($right - $left) / $n; + $seriesN = max(1, count($series)); + $barW = max(8, (int) (($slot * 0.7) / $seriesN)); + + for ($g = 0; $g <= 4; $g++) { + $gy = (int) ($bottom - ($plotH * $g / 4)); + imageline($img, $left, $gy, $right, $gy, $grid); + } + + foreach ($labels as $i => $label) { + foreach ($series as $si => $s) { + $val = (float) ($s['values'][$i] ?? 0); + $bh = (int) (($val / $max) * $plotH); + $x = (int) ($left + $slot * $i + ($slot - $barW * $seriesN) / 2 + $si * $barW); + $y = $bottom - $bh; + $rgb = $this->hex($s['color']); + $col = imagecolorallocate($img, $rgb[0], $rgb[1], $rgb[2]); + imagefilledrectangle($img, $x, $y, $x + $barW - 2, $bottom, $col); + } + imagestring($img, 2, (int) ($left + $slot * $i + 4), $bottom + 6, $this->fit((string) $label, 10), $black); + } + + $lx = $left; + foreach ($series as $s) { + $rgb = $this->hex($s['color']); + $col = imagecolorallocate($img, $rgb[0], $rgb[1], $rgb[2]); + imagefilledrectangle($img, $lx, 8, $lx + 10, 18, $col); + imagestring($img, 2, $lx + 14, 7, $this->fit($s['label'], 18), $black); + $lx += 120; + } + + return $this->save($key, $img); + } + + /** @return array{0:int,1:int,2:int} */ + private function hex(string $hex): array + { + $hex = ltrim($hex, '#'); + if (strlen($hex) === 3) { + $hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2]; + } + if (strlen($hex) < 6) { + return [46, 134, 222]; + } + + return [ + hexdec(substr($hex, 0, 2)), + hexdec(substr($hex, 2, 2)), + hexdec(substr($hex, 4, 2)), + ]; + } + + private function filledArc($img, int $cx, int $cy, int $w, int $h, int $s, int $e, $col): void + { + if ($e <= $s) { + return; + } + imagefilledarc($img, $cx, $cy, $w, $h, $s, $e, $col, IMG_ARC_PIE); + } + + private function fit(string $s, int $max): string + { + $s = preg_replace('/[^\x20-\x7E]/', '', $s) ?? $s; + return strlen($s) > $max ? substr($s, 0, $max - 1) . '.' : $s; + } + + private function fmtIn(float $n): string + { + return number_format($n, 0, '.', ','); + } + + private function fmtShort(float $n): string + { + if (abs($n) >= 100000) { + return number_format($n / 100000, 1) . 'L'; + } + if (abs($n) >= 1000) { + return number_format($n / 1000, 1) . 'k'; + } + + return (string) (int) $n; + } + + /** @param resource|\GdImage $img */ + private function save(string $key, $img): string + { + $path = $this->dir . DIRECTORY_SEPARATOR . $key . '_' . uniqid('', true) . '.png'; + imagepng($img, $path); + imagedestroy($img); + + return $path; + } +} diff --git a/app/Libraries/AbhiMisPdfService.php b/app/Libraries/AbhiMisPdfService.php new file mode 100644 index 00000000..865d76e6 --- /dev/null +++ b/app/Libraries/AbhiMisPdfService.php @@ -0,0 +1,161 @@ + $report + * @return array{status:bool,message?:string,content?:string,filename?:string} + */ + public function generateFromReport(array $report, int $policyId): array + { + $vm = $report['view_model'] ?? []; + $policyNo = trim((string) ($report['header']['policy_number'] ?? (string) $policyId)); + $charts = []; + + try { + $chartSvc = new AbhiMisChartImageService(); + $charts = $chartSvc->buildAll(is_array($vm) ? $vm : []); + + $html = view('claims_mis_abhi', [ + 'report' => $report, + 'view_model' => $vm, + 'policy_id' => $policyId, + 'pdf_url' => '', + 'embed' => true, + 'charts' => $charts, + ]); + + return $this->generate($html, $policyNo); + } finally { + foreach ($charts as $path) { + if (is_string($path) && is_file($path)) { + @unlink($path); + } + } + } + } + + /** + * @return array{status:bool,message?:string,content?:string,filename?:string} + */ + public function generate(string $html, string $policyNo): array + { + $safePolicy = preg_replace('/[^A-Za-z0-9_\-]+/', '_', $policyNo) ?: 'policy'; + $filename = 'ABH_MIS_' . $safePolicy . '_' . date('Ymd') . '.pdf'; + + try { + $options = new Options(); + $options->set('isHtml5ParserEnabled', true); + $options->set('isRemoteEnabled', true); + $options->set('isFontSubsettingEnabled', true); + $options->set('defaultFont', 'DejaVu Sans'); + $options->setChroot([ + rtrim(ROOTPATH, '/\\'), + rtrim(FCPATH, '/\\'), + rtrim(WRITEPATH, '/\\'), + sys_get_temp_dir(), + ]); + + $dompdf = new Dompdf($options); + $dompdf->loadHtml($this->prepareHtml($html)); + $dompdf->setPaper('A4', 'landscape'); + $dompdf->render(); + + $content = $dompdf->output(); + if ($content === '' || $content === null) { + return ['status' => false, 'message' => 'PDF generation failed: empty output.']; + } + + return [ + 'status' => true, + 'content' => $content, + 'filename' => $filename, + ]; + } catch (\Throwable $e) { + log_message('error', 'AbhiMisPdfService::generate failed | ' . $e->getMessage()); + + return ['status' => false, 'message' => 'PDF generation failed: ' . $e->getMessage()]; + } + } + + private function prepareHtml(string $html): string + { + $html = preg_replace('#]*>.*?#is', '', $html) ?? $html; + $html = preg_replace('/[\x{1F300}-\x{1FAFF}]/u', '', $html) ?? $html; + + // Replace CSS custom properties DomPDF cannot resolve. + $vars = [ + 'var(--red-dark)' => '#9c0c22', + 'var(--red)' => '#C8102E', + 'var(--navy)' => '#152A54', + 'var(--blue-dark)' => '#1B3F8C', + 'var(--blue)' => '#2E86DE', + 'var(--orange)' => '#E8862C', + 'var(--purple)' => '#6A3D9A', + 'var(--gold)' => '#D9A441', + 'var(--bg)' => '#EFEFF2', + 'var(--panel)' => '#FFFFFF', + 'var(--line)' => '#E2E2E6', + 'var(--text)' => '#26262B', + 'var(--muted)' => '#6B6B75', + ]; + $html = str_replace(array_keys($vars), array_values($vars), $html); + $html = preg_replace('#:root\s*\{[^}]*\}#is', '', $html) ?? $html; + + // Embed local images as data URIs. + $html = preg_replace_callback( + '#(]*\bsrc=["\'])([^"\']+)(["\'][^>]*>)#i', + function (array $m): string { + $src = html_entity_decode($m[2], ENT_QUOTES); + $dataUri = $this->toDataUri($src); + + return $m[1] . ($dataUri ?: $src) . $m[3]; + }, + $html + ) ?? $html; + + return $html; + } + + private function toDataUri(string $path): ?string + { + $path = trim($path); + if ($path === '' || str_starts_with($path, 'data:')) { + return null; + } + + if (preg_match('#^file://#i', $path)) { + $path = preg_replace('#^file://#i', '', $path) ?? $path; + } + + if (!is_file($path) || !is_readable($path)) { + return null; + } + + $ext = strtolower(pathinfo($path, PATHINFO_EXTENSION)); + $mime = match ($ext) { + 'png' => 'image/png', + 'jpg', 'jpeg' => 'image/jpeg', + 'gif' => 'image/gif', + 'webp' => 'image/webp', + default => 'application/octet-stream', + }; + + $bytes = @file_get_contents($path); + if ($bytes === false || $bytes === '') { + return null; + } + + return 'data:' . $mime . ';base64,' . base64_encode($bytes); + } +} diff --git a/app/Libraries/AbhiMisReportService.php b/app/Libraries/AbhiMisReportService.php new file mode 100644 index 00000000..bddac2c2 --- /dev/null +++ b/app/Libraries/AbhiMisReportService.php @@ -0,0 +1,1238 @@ +kpiModel = $kpiModel ?? new ClaimReportDashboardModel(); + $this->dumpFileModel = $dumpFileModel ?? new ClaimDumpFileModel(); + } + + /** + * @return array{status:bool,message?:string,data?:array} + */ + public function build(int $policyId): array + { + if ($policyId <= 0) { + return ['status' => false, 'message' => 'client_policy_id is required.']; + } + + $db = db_connect(); + + if (!$db->tableExists('claim_report') || !$db->tableExists(self::DUMP_TABLE)) { + return ['status' => false, 'message' => 'Required tables claim_report or claims_dump_abhi do not exist.']; + } + + $dumpRows = $this->getLinkedDumpRows($policyId); + if ($dumpRows === []) { + return [ + 'status' => false, + 'message' => 'No ABHI dump rows linked via claim_report. Run sync: /util/claims-collection-report/sync', + ]; + } + + $policy = $db->table('client_policy cp') + ->select('cp.*, c.client_name, i.name AS insurer_name, t.name AS tpa_name') + ->join('clients c', 'c.id = cp.client_id', 'left') + ->join('insurers i', 'i.id = cp.insurer_id', 'left') + ->join('tpa t', 't.id = cp.tpa_id', 'left') + ->where('cp.id', $policyId) + ->get() + ->getRowArray(); + + if (!$policy) { + return ['status' => false, 'message' => 'Policy not found.']; + } + + $exposure = $this->firstRow($this->kpiModel->policy_exposure_summary($policyId)); + $premiumRow = $this->firstRow($this->kpiModel->premium_as_on_date($policyId)); + $livesRow = $this->firstRow($this->kpiModel->current_emp_lives($policyId)); + $experience = $this->firstRow($this->kpiModel->claims_experience_summary($policyId)); + + $premiumRaw = $this->parseFormattedNumber($premiumRow['premium_as_on_date'] ?? null); + $earnedRaw = $this->parseFormattedNumber($experience['earned_premium'] ?? null); + + $statusSummary = $this->aggregateByStatus($dumpRows); + $claimTypeSummary = $this->aggregateByClaimType($dumpRows); + $incurredTotal = $statusSummary['incurred_amount']; + $icrPct = $earnedRaw > 0 ? round(($incurredTotal / $earnedRaw) * 100, 2) : 0.0; + + $settledCount = $statusSummary['buckets']['Settled']['count'] ?? 0; + $acsIpd = $settledCount > 0 + ? round(($statusSummary['buckets']['Settled']['paid_amount'] ?? 0) / $settledCount, 0) + : 0; + + $lives = (int) ($livesRow['current_lives'] ?? 0); + + $data = [ + 'meta' => [ + 'policy_id' => $policyId, + 'last_refresh' => $this->dumpFileModel->getGeneratedAtForPolicy($policyId), + 'generated_at' => date('d-M-Y'), + 'quote_type' => 'IPD + OPD', + 'client_name' => trim((string) ($policy['client_name'] ?? '')), + 'tpa_name' => trim((string) ($policy['tpa_name'] ?? 'Aditya Birla Health Insurance Co. Limited')), + ], + 'header' => [ + 'insurer_name' => trim((string) ($policy['client_name'] ?? '')), + 'claim_processor' => trim((string) ($policy['tpa_name'] ?? 'Aditya Birla Health Insurance Co. Limited')), + 'policy_number' => trim((string) ($policy['policy_no'] ?? '')), + 'policy_start_date' => $this->formatDate($policy['policy_start_date'] ?? $exposure['policy_start_date'] ?? null), + 'policy_end_date' => $this->formatDate($policy['policy_end_date'] ?? $exposure['policy_end_date'] ?? null), + 'lives' => $lives, + 'premium_paid' => $premiumRaw, + 'earned_premium' => $earnedRaw, + 'insurer_legal_name' => trim((string) ($exposure['insurer_name'] ?? $policy['insurer_name'] ?? '')), + ], + 'summary' => [ + 'claim_paid_outstanding' => $incurredTotal, + 'claims_paid_amount' => $statusSummary['buckets']['Settled']['paid_amount'] ?? 0, + 'claim_outstanding_amount' => $statusSummary['buckets']['Outstanding']['incurred_amount'] ?? 0, + 'acs_ipd_claim' => $acsIpd, + 'claims_paid_count' => $settledCount, + 'claims_outstanding_count' => $statusSummary['buckets']['Outstanding']['count'] ?? 0, + 'icr_pct' => $icrPct, + ], + 'status_breakdown' => $statusSummary, + 'claim_type' => $claimTypeSummary, + 'gender' => $this->aggregateByGender($dumpRows), + 'relation' => $this->aggregateByRelation($dumpRows), + 'member_type' => $this->aggregateByMemberType($dumpRows), + 'age_band' => $this->aggregateByAgeBand($dumpRows), + 'diagnosis' => $this->aggregateByDiagnosis($dumpRows, 10), + 'hospital' => $this->aggregateByHospital($dumpRows), + 'city' => $this->aggregateByCity($dumpRows), + 'monthly' => $this->aggregateByMonth($dumpRows), + 'utilization' => [ + 'employees' => $this->aggregateUtilization($dumpRows, 'Self'), + 'dependents' => $this->aggregateUtilization($dumpRows, 'Dependent'), + ], + 'dump_row_count' => count($dumpRows), + ]; + + $data['view_model'] = $this->buildViewModel($data, $dumpRows); + + return [ + 'status' => true, + 'data' => $data, + ]; + } + + /** + * Shape report data exactly like ABH_MIS_Report.html JS constants. + * + * @param array $data + * @param list> $dumpRows + * @return array + */ + public function buildViewModel(array $data, array $dumpRows): array + { + $header = $data['header'] ?? []; + $summary = $data['summary'] ?? []; + $buckets = $data['status_breakdown']['buckets'] ?? []; + + $claimStatus = []; + foreach (['Reported', 'Settled', 'Outstanding', 'Rejected'] as $status) { + $b = $buckets[$status] ?? []; + $incurred = (float) ($b['incurred_amount'] ?? 0); + if ($status === 'Reported') { + $incurred = (float) ($buckets['Settled']['incurred_amount'] ?? 0) + + (float) ($buckets['Outstanding']['incurred_amount'] ?? 0) + + (float) ($buckets['Rejected']['reported_amount'] ?? 0); + } + if ($status === 'Rejected') { + $incurred = (float) ($b['reported_amount'] ?? 0); + } + $claimStatus[] = [ + 'status' => $status, + 'number' => (int) ($b['count'] ?? 0), + 'reported' => (float) ($b['reported_amount'] ?? 0), + 'incurred' => $incurred, + ]; + } + + $premiumPaid = (float) ($header['premium_paid'] ?? 0); + $policyPremium = [ + ['sr' => 1, 'label' => 'At Inception', 'amount' => $premiumPaid], + ['sr' => 2, 'label' => 'Addition', 'amount' => 0], + ['sr' => 3, 'label' => 'Deletion', 'amount' => 0], + ]; + + $reimbTAT = $this->aggregateReimbursementTat($dumpRows); + $claimTypeRows = $this->buildClaimTypeRows($dumpRows); + $claimTypeTotal = $claimTypeRows['_total'] ?? ['count' => 0, 'amount' => 0, 'incurred' => 0]; + + $gender = $data['gender'] ?? []; + $genderRows = []; + foreach ($gender as $label => $row) { + if ($label === '_total') { + continue; + } + $genderRows[] = [ + 'label' => $label, + 'count' => (int) ($row['count'] ?? 0), + 'amount' => (float) ($row['incurred_amount'] ?? 0), + ]; + } + $genderTotal = $gender['_total'] ?? ['count' => 0, 'incurred_amount' => 0]; + + $relationRows = $this->dimensionRows($data['relation'] ?? []); + $memberRows = $this->dimensionRows($data['member_type'] ?? []); + + $ageRows = []; + $ageBands = ['0-10', '11-20', '21-30', '31-40', '41-50', '51-60', '61-70', '>70']; + $ageData = $data['age_band'] ?? []; + foreach ($ageBands as $band) { + $row = $ageData[$band] ?? ['count' => 0, 'incurred_amount' => 0, 'count_pct' => '0.00', 'amount_pct' => '0.00']; + $ageRows[] = [ + 'band' => $band, + 'count' => (int) ($row['count'] ?? 0), + 'cpct' => (float) ($row['count_pct'] ?? 0), + 'amt' => (float) ($row['incurred_amount'] ?? 0), + 'apct' => (float) ($row['amount_pct'] ?? 0), + ]; + } + $ageTotal = $ageData['_total'] ?? ['count' => 0, 'incurred_amount' => 0]; + + $diagnosisRows = []; + $diagData = $data['diagnosis'] ?? []; + $diagTotalAmount = (float) ($diagData['_total']['incurred_amount'] ?? 0); + foreach ($diagData as $label => $row) { + if ($label === '_total') { + continue; + } + $count = (int) ($row['count'] ?? 0); + $amt = (float) ($row['incurred_amount'] ?? 0); + $diagnosisRows[] = [ + 'name' => $label, + 'count' => $count, + 'cpct' => (float) ($row['count_pct'] ?? 0), + 'amt' => $amt, + 'apct' => (float) ($row['amount_pct'] ?? 0), + 'acs' => $count > 0 ? round($amt / $count, 0) : null, + 'lr' => $diagTotalAmount > 0 ? round(($amt / $diagTotalAmount) * 100, 2) : 0, + ]; + } + $diagAcsTotal = ($diagTotalAmount > 0 && ($diagData['_total']['count'] ?? 0) > 0) + ? round($diagTotalAmount / (int) $diagData['_total']['count'], 0) + : 0; + + $hospitalRows = []; + foreach (($data['hospital'] ?? []) as $label => $row) { + if ($label === '_total') { + continue; + } + $hospitalRows[] = [ + 'name' => $label, + 'count' => (int) ($row['count'] ?? 0), + 'cpct' => (float) ($row['count_pct'] ?? 0), + 'amt' => (float) ($row['incurred_amount'] ?? 0), + 'apct' => (float) ($row['amount_pct'] ?? 0), + ]; + } + $hospitalTotal = ($data['hospital']['_total'] ?? ['count' => 0, 'incurred_amount' => 0]); + + $cityRows = []; + $cityTotals = [ + 'count' => 0, 'amt' => 0.0, 'paidCount' => 0, 'paidAmt' => 0.0, + 'outCount' => 0.0, 'outAmt' => 0.0, 'acs' => 0, + ]; + foreach (($data['city'] ?? []) as $city => $row) { + $paidCount = (int) ($row['paid_count'] ?? 0); + $paidAmt = (float) ($row['paid_amount'] ?? 0); + $acs = $paidCount > 0 ? round($paidAmt / $paidCount, 0) : ''; + $cityRows[] = [ + 'city' => $city, + 'count' => (int) ($row['claim_count'] ?? 0), + 'amt' => (float) ($row['claim_amount'] ?? 0), + 'paidCount' => $paidCount ?: '', + 'paidAmt' => $paidAmt ?: '', + 'outCount' => ($row['outstanding_count'] ?? 0) ?: '', + 'outAmt' => ($row['outstanding_amount'] ?? 0) ?: '', + 'acs' => $acs, + ]; + $cityTotals['count'] += (int) ($row['claim_count'] ?? 0); + $cityTotals['amt'] += (float) ($row['claim_amount'] ?? 0); + $cityTotals['paidCount'] += $paidCount; + $cityTotals['paidAmt'] += $paidAmt; + $cityTotals['outCount'] += (float) ($row['outstanding_count'] ?? 0); + $cityTotals['outAmt'] += (float) ($row['outstanding_amount'] ?? 0); + } + $cityTotals['acs'] = $cityTotals['paidCount'] > 0 + ? round($cityTotals['paidAmt'] / $cityTotals['paidCount'], 0) + : 0; + + $monthly = $data['monthly'] ?? []; + $monthKeys = array_keys($monthly); + usort($monthKeys, static fn ($a, $b) => self::monthKeyToSort($b) <=> self::monthKeyToSort($a)); + $paidCountByMonth = []; + $outCountByMonth = []; + $paidAmtByMonth = []; + $outAmtByMonth = []; + foreach ($monthKeys as $mk) { + $paidCountByMonth[] = (int) ($monthly[$mk]['paid_count'] ?? 0); + $outCountByMonth[] = (int) ($monthly[$mk]['outstanding_count'] ?? 0); + $paidAmtByMonth[] = (float) ($monthly[$mk]['paid_amount'] ?? 0); + $outAmtByMonth[] = (float) ($monthly[$mk]['outstanding_amount'] ?? 0); + } + + $paidCharts = $this->buildPaidChartData($dumpRows); + + return [ + 'claimStatus' => $claimStatus, + 'policyPremium' => $policyPremium, + 'policyPremiumTotal' => $premiumPaid, + 'reimbTAT' => $reimbTAT['rows'], + 'reimbTATTotal' => $reimbTAT['total'], + 'preAuthTAT' => ['within' => 100, 'above' => 0], + 'premiumBars' => [ + (float) ($header['premium_paid'] ?? 0), + (float) ($header['earned_premium'] ?? 0), + (float) ($summary['claim_paid_outstanding'] ?? 0), + ], + 'lives' => (int) ($header['lives'] ?? 0), + 'icr' => (float) ($summary['icr_pct'] ?? 0), + 'gender' => $genderRows, + 'genderTotal' => $genderTotal, + 'claimType' => $claimTypeRows['rows'], + 'claimTypeTotal' => $claimTypeTotal, + 'relation' => $relationRows['rows'], + 'relationTotal' => $relationRows['total'], + 'memberType' => $memberRows['rows'], + 'memberTypeTotal' => $memberRows['total'], + 'age' => $ageRows, + 'ageTotal' => $ageTotal, + 'diagnosis' => $diagnosisRows, + 'diagnosisTotal' => [ + 'count' => (int) ($diagData['_total']['count'] ?? 0), + 'amt' => $diagTotalAmount, + 'acs' => $diagAcsTotal, + 'lr' => (float) ($summary['icr_pct'] ?? 0), + ], + 'utilizationEmployees' => $this->utilizationRows($data['utilization']['employees'] ?? []), + 'utilizationDependents' => $this->utilizationRows($data['utilization']['dependents'] ?? []), + 'hospitals' => $hospitalRows, + 'hospitalTotal' => $hospitalTotal, + 'paidCharts' => $paidCharts, + 'cities' => $cityRows, + 'cityTotals' => $cityTotals, + 'months' => $monthKeys, + 'paidCountByMonth' => $paidCountByMonth, + 'outCountByMonth' => $outCountByMonth, + 'paidAmtByMonth' => $paidAmtByMonth, + 'outAmtByMonth' => $outAmtByMonth, + ]; + } + + /** + * @param list> $dumpRows + * @return array{rows:list>,total:array} + */ + private function aggregateReimbursementTat(array $dumpRows): array + { + $buckets = [ + 'A) 0-7 Days' => ['count' => 0, 'pct' => 0], + 'B) 7-15 Days' => ['count' => 0, 'pct' => 0], + ]; + $total = 0; + + foreach ($dumpRows as $row) { + if ($this->normalizeClaimType((string) ($row['claim_type'] ?? '')) !== 'Reimbursement') { + continue; + } + if ($this->normalizeStatus((string) ($row['claim_status'] ?? '')) !== 'Settled') { + continue; + } + + $from = strtotime((string) ($row['intimation_date'] ?? '')); + $to = strtotime((string) ($row['settled_date'] ?? '')); + if ($from === false || $to === false || $to < $from) { + continue; + } + + $days = (int) floor(($to - $from) / 86400); + $key = $days <= 7 ? 'A) 0-7 Days' : 'B) 7-15 Days'; + $buckets[$key]['count']++; + $total++; + } + + foreach ($buckets as &$b) { + $b['pct'] = $total > 0 ? round(($b['count'] / $total) * 100, 2) : 0; + } + unset($b); + + $rows = []; + foreach ($buckets as $range => $data) { + $rows[] = ['range' => $range, 'count' => $data['count'], 'pct' => $data['pct']]; + } + + return [ + 'rows' => $rows, + 'total' => ['count' => $total, 'pct' => $total > 0 ? 100.0 : 0], + ]; + } + + /** + * @param list> $dumpRows + * @return array{rows:list>,_total:array} + */ + private function buildClaimTypeRows(array $dumpRows): array + { + $types = ['Cashless', 'Reimbursement']; + $statusMap = ['Settled' => 'Paid', 'Outstanding' => 'In Process', 'Rejected' => 'Denied']; + $rows = []; + $grandCount = 0; + $grandAmount = 0.0; + $grandIncurred = 0.0; + + foreach ($types as $type) { + $typeCount = 0; + $typeAmount = 0.0; + $typeIncurred = 0.0; + $subRows = []; + + foreach ($statusMap as $internal => $display) { + $count = 0; + $amount = 0.0; + $incurred = 0.0; + + foreach ($dumpRows as $row) { + if ($this->normalizeClaimType((string) ($row['claim_type'] ?? '')) !== $type) { + continue; + } + if ($this->normalizeStatus((string) ($row['claim_status'] ?? '')) !== $internal) { + continue; + } + $claimed = $this->toFloat($row['claimed_amount'] ?? 0); + $count++; + $amount += $claimed; + $incurred += $this->claimTypeIncurred($row, $internal); + } + + $subRows[] = compact('display', 'count', 'amount', 'incurred'); + $typeCount += $count; + $typeAmount += $amount; + $typeIncurred += $incurred; + } + + $rows[] = [ + 'type' => $type, + 'header' => true, + 'count' => $typeCount, + 'countPct' => 0, + 'amount' => $typeAmount, + 'amtPct' => 0, + 'incurred' => $typeIncurred, + 'incPct' => 0, + ]; + + foreach ($subRows as $sub) { + $rows[] = [ + 'type' => $sub['display'], + 'header' => false, + 'count' => $sub['count'], + 'countPct' => 0, + 'amount' => $sub['amount'], + 'amtPct' => 0, + 'incurred' => $sub['incurred'], + 'incPct' => 0, + ]; + } + + $grandCount += $typeCount; + $grandAmount += $typeAmount; + $grandIncurred += $typeIncurred; + } + + foreach ($rows as &$row) { + $row['countPct'] = $grandCount > 0 ? round(($row['count'] / $grandCount) * 100, 2) : 0; + $row['amtPct'] = $grandAmount > 0 ? round(($row['amount'] / $grandAmount) * 100, 2) : 0; + $row['incPct'] = $grandIncurred > 0 ? round(($row['incurred'] / $grandIncurred) * 100, 2) : 0; + } + unset($row); + + return [ + 'rows' => $rows, + '_total' => ['count' => $grandCount, 'amount' => $grandAmount, 'incurred' => $grandIncurred], + ]; + } + + /** + * @param list> $dumpRows + */ + private function buildPaidChartData(array $dumpRows): array + { + $types = ['Cashless', 'Reimbursement']; + $paidCount = []; + $paidAmt = []; + $acs = []; + $byStatus = [ + 'Settled' => ['Cashless' => 0, 'Reimbursement' => 0], + 'Outstanding' => ['Cashless' => 0, 'Reimbursement' => 0], + 'Rejected' => ['Cashless' => 0, 'Reimbursement' => 0], + ]; + + foreach ($types as $type) { + $settled = 0; + $paid = 0.0; + foreach ($dumpRows as $row) { + if ($this->normalizeClaimType((string) ($row['claim_type'] ?? '')) !== $type) { + continue; + } + $status = $this->normalizeStatus((string) ($row['claim_status'] ?? '')); + $byStatus[$status][$type]++; + if ($status === 'Settled') { + $settled++; + $approved = $this->toFloat($row['abhi_amount_less_coins_current_month'] ?? 0); + $claimed = $this->toFloat($row['claimed_amount'] ?? 0); + $paid += $approved > 0 ? $approved : $claimed; + } + } + $paidCount[] = $settled; + $paidAmt[] = $paid; + $acs[] = $settled > 0 ? round($paid / $settled, 0) : 0; + } + + $statusSummary = $this->aggregateByStatus($dumpRows); + $buckets = $statusSummary['buckets'] ?? []; + + return [ + 'paidCount' => $paidCount, + 'paidAmt' => $paidAmt, + 'acs' => $acs, + 'countByType' => $byStatus, + 'amtByStatus' => [ + (float) ($buckets['Settled']['reported_amount'] ?? 0), + (float) ($buckets['Outstanding']['reported_amount'] ?? 0), + (float) ($buckets['Rejected']['reported_amount'] ?? 0), + ], + ]; + } + + /** + * @param array $dim + * @return array{rows:list>,total:array} + */ + private function dimensionRows(array $dim): array + { + $rows = []; + foreach ($dim as $label => $row) { + if ($label === '_total') { + continue; + } + $rows[] = [ + 'label' => $label, + 'count' => (int) ($row['count'] ?? 0), + 'cpct' => (float) ($row['count_pct'] ?? 0), + 'amt' => (float) ($row['incurred_amount'] ?? 0), + 'apct' => (float) ($row['amount_pct'] ?? 0), + ]; + } + + return [ + 'rows' => $rows, + 'total' => $dim['_total'] ?? ['count' => 0, 'incurred_amount' => 0], + ]; + } + + /** + * @param array $util + * @return array{rows:list>,total:array} + */ + private function utilizationRows(array $util): array + { + $order = ['1', '2', '3', '4', 'Above 5']; + $rows = []; + foreach ($order as $key) { + $row = $util[$key] ?? ['beneficiaries' => 0, 'incurred_count' => 0, 'incurred_amount' => 0, 'count_pct' => '0.00', 'amount_pct' => '0.00']; + $rows[] = [ + 'claims' => $key, + 'beneficiaries' => (int) ($row['beneficiaries'] ?? 0), + 'incurredCount' => (int) ($row['incurred_count'] ?? 0), + 'countPct' => (float) ($row['count_pct'] ?? 0), + 'amount' => (float) ($row['incurred_amount'] ?? 0), + 'amountPct' => (float) ($row['amount_pct'] ?? 0), + ]; + } + + $totalBenef = array_sum(array_column($rows, 'beneficiaries')); + $totalCount = array_sum(array_column($rows, 'incurredCount')); + $totalAmt = array_sum(array_column($rows, 'amount')); + + return [ + 'rows' => $rows, + 'total' => [ + 'beneficiaries' => $totalBenef, + 'incurredCount' => $totalCount, + 'amount' => $totalAmt, + ], + ]; + } + + /** + * @param array $row + */ + private function claimTypeIncurred(array $row, string $status): float + { + $claimed = $this->toFloat($row['claimed_amount'] ?? 0); + $approved = $this->toFloat($row['abhi_amount_less_coins_current_month'] ?? 0); + + if ($status === 'Settled') { + return $approved > 0 ? $approved : $claimed; + } + + return $claimed; + } + + /** + * @return list> + */ + public function getLinkedDumpRows(int $policyId): array + { + $db = db_connect(); + + $reportRows = $db->table('claim_report') + ->select('source_row_id') + ->where('client_policy_id', $policyId) + ->where('is_active', 1) + ->where('source_table', self::DUMP_TABLE) + ->where('source_row_id IS NOT NULL', null, false) + ->get() + ->getResultArray(); + + if ($reportRows === []) { + return []; + } + + $dumpIds = array_values(array_unique(array_filter(array_map( + static fn ($r) => (int) ($r['source_row_id'] ?? 0), + $reportRows + )))); + + if ($dumpIds === []) { + return []; + } + + return $db->table(self::DUMP_TABLE) + ->whereIn('id', $dumpIds) + ->where('is_active', 1) + ->orderBy('id', 'ASC') + ->get() + ->getResultArray(); + } + + /** + * @param list> $rows + * @return array + */ + public function aggregateByStatus(array $rows): array + { + $buckets = [ + 'Reported' => ['count' => 0, 'reported_amount' => 0.0, 'incurred_amount' => 0.0, 'paid_amount' => 0.0], + 'Settled' => ['count' => 0, 'reported_amount' => 0.0, 'incurred_amount' => 0.0, 'paid_amount' => 0.0], + 'Outstanding' => ['count' => 0, 'reported_amount' => 0.0, 'incurred_amount' => 0.0, 'paid_amount' => 0.0], + 'Rejected' => ['count' => 0, 'reported_amount' => 0.0, 'incurred_amount' => 0.0, 'paid_amount' => 0.0], + ]; + + foreach ($rows as $row) { + $claimed = $this->toFloat($row['claimed_amount'] ?? 0); + $approved = $this->toFloat($row['abhi_amount_less_coins_current_month'] ?? 0); + $bucket = $this->normalizeStatus((string) ($row['claim_status'] ?? '')); + + $buckets['Reported']['count']++; + $buckets['Reported']['reported_amount'] += $claimed; + $buckets['Reported']['incurred_amount'] += $this->incurredForRow($row); + + if (!isset($buckets[$bucket])) { + continue; + } + + $buckets[$bucket]['count']++; + $buckets[$bucket]['reported_amount'] += $claimed; + if ($bucket === 'Settled') { + $paid = $approved > 0 ? $approved : $claimed; + $buckets[$bucket]['incurred_amount'] += $paid; + $buckets[$bucket]['paid_amount'] += $paid; + } elseif ($bucket === 'Rejected') { + $buckets[$bucket]['incurred_amount'] += $claimed; + } else { + $buckets[$bucket]['incurred_amount'] += $this->incurredForRow($row); + } + } + + $incurredTotal = $buckets['Reported']['incurred_amount']; + + return [ + 'buckets' => $buckets, + 'incurred_amount' => $incurredTotal, + 'reported_count' => count($rows), + ]; + } + + /** + * @param list> $rows + */ + public function aggregateByClaimType(array $rows): array + { + $types = ['Cashless' => [], 'Reimbursement' => []]; + $totals = ['count' => 0, 'claim_amount' => 0.0, 'incurred_amount' => 0.0]; + + foreach ($rows as $row) { + $typeKey = $this->normalizeClaimType((string) ($row['claim_type'] ?? '')); + $status = $this->normalizeStatus((string) ($row['claim_status'] ?? '')); + $claimed = $this->toFloat($row['claimed_amount'] ?? 0); + $incurred = $this->incurredForRow($row); + + if (!isset($types[$typeKey][$status])) { + $types[$typeKey][$status] = ['count' => 0, 'claim_amount' => 0.0, 'incurred_amount' => 0.0]; + } + + $types[$typeKey][$status]['count']++; + $types[$typeKey][$status]['claim_amount'] += $claimed; + $types[$typeKey][$status]['incurred_amount'] += $incurred; + + if (!isset($types[$typeKey]['_subtotal'])) { + $types[$typeKey]['_subtotal'] = ['count' => 0, 'claim_amount' => 0.0, 'incurred_amount' => 0.0]; + } + $types[$typeKey]['_subtotal']['count']++; + $types[$typeKey]['_subtotal']['claim_amount'] += $claimed; + $types[$typeKey]['_subtotal']['incurred_amount'] += $incurred; + + $totals['count']++; + $totals['claim_amount'] += $claimed; + $totals['incurred_amount'] += $incurred; + } + + return ['types' => $types, 'total' => $totals]; + } + + /** + * @param list> $rows + */ + public function aggregateByGender(array $rows): array + { + return $this->aggregateDimension($rows, 'gender', static function ($row) { + $g = strtolower(trim((string) ($row['gender'] ?? ''))); + if ($g === 'f' || $g === 'female') { + return 'Female'; + } + if ($g === 'm' || $g === 'male') { + return 'Male'; + } + return $g !== '' ? ucfirst($g) : 'Unknown'; + }); + } + + /** + * @param list> $rows + */ + public function aggregateByRelation(array $rows): array + { + return $this->aggregateDimension($rows, 'relation', static function ($row) { + $rel = trim((string) ($row['relation'] ?? '')); + if ($rel === '') { + return 'Unknown'; + } + $lower = strtolower($rel); + if ($lower === 'self' || $lower === 'employee') { + return 'Self'; + } + if (str_contains($lower, 'spouse') || $lower === 'wife' || $lower === 'husband') { + return 'Spouse'; + } + if (str_contains($lower, 'parent') || str_contains($lower, 'father') || str_contains($lower, 'mother')) { + return 'Parent'; + } + if (str_contains($lower, 'child') || str_contains($lower, 'son') || str_contains($lower, 'daughter')) { + return 'Child'; + } + return ucfirst($rel); + }); + } + + /** + * @param list> $rows + */ + public function aggregateByMemberType(array $rows): array + { + return $this->aggregateDimension($rows, 'member_type', static function ($row) { + $rel = strtolower(trim((string) ($row['relation'] ?? ''))); + return ($rel === 'self' || $rel === 'employee') ? 'Self' : 'Dependent'; + }); + } + + /** + * @param list> $rows + */ + public function aggregateByAgeBand(array $rows): array + { + $bands = [ + '0-10' => ['count' => 0, 'incurred_amount' => 0.0], + '11-20' => ['count' => 0, 'incurred_amount' => 0.0], + '21-30' => ['count' => 0, 'incurred_amount' => 0.0], + '31-40' => ['count' => 0, 'incurred_amount' => 0.0], + '41-50' => ['count' => 0, 'incurred_amount' => 0.0], + '51-60' => ['count' => 0, 'incurred_amount' => 0.0], + '61-70' => ['count' => 0, 'incurred_amount' => 0.0], + '>70' => ['count' => 0, 'incurred_amount' => 0.0], + ]; + + foreach ($rows as $row) { + $status = $this->normalizeStatus((string) ($row['claim_status'] ?? '')); + if (!in_array($status, ['Settled', 'Outstanding'], true)) { + continue; + } + + $age = (int) preg_replace('/\D/', '', (string) ($row['patient_age'] ?? '0')); + $band = $this->ageToBand($age); + $bands[$band]['count']++; + $bands[$band]['incurred_amount'] += $this->incurredForRow($row); + } + + return $this->withPercentages($bands); + } + + /** + * @param list> $rows + */ + public function aggregateByDiagnosis(array $rows, int $limit = 10): array + { + $groups = []; + + foreach ($rows as $row) { + $status = $this->normalizeStatus((string) ($row['claim_status'] ?? '')); + if (!in_array($status, ['Settled', 'Outstanding'], true)) { + continue; + } + + $label = trim((string) ($row['diagnosis'] ?? '')); + if ($label === '') { + $label = 'OTHERS'; + } + + if (!isset($groups[$label])) { + $groups[$label] = ['count' => 0, 'incurred_amount' => 0.0]; + } + $groups[$label]['count']++; + $groups[$label]['incurred_amount'] += $this->incurredForRow($row); + } + + uasort($groups, static fn ($a, $b) => $b['incurred_amount'] <=> $a['incurred_amount']); + + return $this->withPercentages(array_slice($groups, 0, $limit, true)); + } + + /** + * @param list> $rows + */ + public function aggregateByHospital(array $rows): array + { + $groups = []; + + foreach ($rows as $row) { + $status = $this->normalizeStatus((string) ($row['claim_status'] ?? '')); + if (!in_array($status, ['Settled', 'Outstanding'], true)) { + continue; + } + + $name = trim((string) ($row['hospital_name'] ?? '')); + if ($name === '') { + $name = trim((string) ($row['abhi_network_non_network'] ?? 'ABH non-network')); + if ($name === '') { + $name = 'ABH non-network'; + } + } + + if (!isset($groups[$name])) { + $groups[$name] = ['count' => 0, 'incurred_amount' => 0.0]; + } + $groups[$name]['count']++; + $groups[$name]['incurred_amount'] += $this->incurredForRow($row); + } + + uasort($groups, static fn ($a, $b) => $b['incurred_amount'] <=> $a['incurred_amount']); + + return $this->withPercentages($groups); + } + + /** + * @param list> $rows + */ + public function aggregateByCity(array $rows): array + { + $groups = []; + + foreach ($rows as $row) { + $city = trim((string) ($row['hospital_city'] ?? '')); + if ($city === '') { + $city = 'Unknown'; + } + + $claimed = $this->toFloat($row['claimed_amount'] ?? 0); + $approved = $this->toFloat($row['abhi_amount_less_coins_current_month'] ?? 0); + $status = $this->normalizeStatus((string) ($row['claim_status'] ?? '')); + + if (!isset($groups[$city])) { + $groups[$city] = [ + 'claim_count' => 0, + 'claim_amount' => 0.0, + 'paid_count' => 0, + 'paid_amount' => 0.0, + 'outstanding_count' => 0, + 'outstanding_amount' => 0.0, + ]; + } + + $groups[$city]['claim_count']++; + $groups[$city]['claim_amount'] += $claimed; + + if ($status === 'Settled') { + $groups[$city]['paid_count']++; + $groups[$city]['paid_amount'] += $approved > 0 ? $approved : $claimed; + } elseif ($status === 'Outstanding') { + $groups[$city]['outstanding_count']++; + $groups[$city]['outstanding_amount'] += $claimed; + } + } + + uasort($groups, static fn ($a, $b) => $b['claim_amount'] <=> $a['claim_amount']); + + return $groups; + } + + /** + * @param list> $rows + */ + public function aggregateByMonth(array $rows): array + { + $groups = []; + + foreach ($rows as $row) { + $monthKey = $this->resolveMonthKey($row); + if ($monthKey === null) { + continue; + } + + $status = $this->normalizeStatus((string) ($row['claim_status'] ?? '')); + $claimed = $this->toFloat($row['claimed_amount'] ?? 0); + $approved = $this->toFloat($row['abhi_amount_less_coins_current_month'] ?? 0); + + if (!isset($groups[$monthKey])) { + $groups[$monthKey] = [ + 'paid_count' => 0, + 'outstanding_count' => 0, + 'paid_amount' => 0.0, + 'outstanding_amount' => 0.0, + ]; + } + + if ($status === 'Settled') { + $groups[$monthKey]['paid_count']++; + $groups[$monthKey]['paid_amount'] += $approved > 0 ? $approved : $claimed; + } elseif ($status === 'Outstanding') { + $groups[$monthKey]['outstanding_count']++; + $groups[$monthKey]['outstanding_amount'] += $claimed; + } + } + + uksort($groups, static function ($a, $b) { + return self::monthKeyToSort($b) <=> self::monthKeyToSort($a); + }); + + return $groups; + } + + /** + * @param list> $rows + */ + public function aggregateUtilization(array $rows, string $memberType): array + { + $filtered = array_filter($rows, function ($row) use ($memberType) { + $rel = strtolower(trim((string) ($row['relation'] ?? ''))); + $isSelf = ($rel === 'self' || $rel === 'employee'); + return $memberType === 'Self' ? $isSelf : !$isSelf; + }); + + $beneficiaryClaims = []; + + foreach ($filtered as $row) { + $status = $this->normalizeStatus((string) ($row['claim_status'] ?? '')); + if (!in_array($status, ['Settled', 'Outstanding'], true)) { + continue; + } + + $memberCode = trim((string) ($row['member_code'] ?? $row['corporate_employee_code'] ?? '')); + if ($memberCode === '') { + $memberCode = 'unknown_' . ($row['id'] ?? uniqid()); + } + + if (!isset($beneficiaryClaims[$memberCode])) { + $beneficiaryClaims[$memberCode] = ['count' => 0, 'incurred_amount' => 0.0]; + } + $beneficiaryClaims[$memberCode]['count']++; + $beneficiaryClaims[$memberCode]['incurred_amount'] += $this->incurredForRow($row); + } + + $claimCountDistribution = []; + foreach ($beneficiaryClaims as $data) { + $n = min($data['count'], 5); + $bucket = $n >= 5 ? 'Above 5' : (string) $n; + if (!isset($claimCountDistribution[$bucket])) { + $claimCountDistribution[$bucket] = [ + 'beneficiaries' => 0, + 'incurred_count' => 0, + 'incurred_amount' => 0.0, + ]; + } + $claimCountDistribution[$bucket]['beneficiaries']++; + $claimCountDistribution[$bucket]['incurred_count'] += $data['count']; + $claimCountDistribution[$bucket]['incurred_amount'] += $data['incurred_amount']; + } + + $order = ['1', '2', '3', '4', 'Above 5']; + $ordered = []; + foreach ($order as $key) { + if (isset($claimCountDistribution[$key])) { + $ordered[$key] = $claimCountDistribution[$key]; + } + } + + return $this->withPercentages($ordered, 'incurred_amount'); + } + + public function normalizeStatus(string $status): string + { + $s = strtolower(trim($status)); + + if (in_array($s, ['settled', 'paid', 'approved', 'closed'], true)) { + return 'Settled'; + } + if (in_array($s, ['rejected', 'denied', 'repudiated', 'cancelled', 'canceled'], true)) { + return 'Rejected'; + } + if ( + str_contains($s, 'progress') + || str_contains($s, 'query') + || str_contains($s, 'await') + || str_contains($s, 'open') + || str_contains($s, 'process') + || str_contains($s, 'pending') + ) { + return 'Outstanding'; + } + + if ($s !== '' && !in_array($s, ['settled', 'paid'], true)) { + return 'Outstanding'; + } + + return 'Outstanding'; + } + + public static function formatMoney(float $amount, int $decimals = 0): string + { + return number_format($amount, $decimals); + } + + public static function formatPct(float $part, float $whole, int $decimals = 2): string + { + if ($whole <= 0) { + return number_format(0, $decimals); + } + + return number_format(($part / $whole) * 100, $decimals); + } + + /** + * @param array $row + */ + private function incurredForRow(array $row): float + { + $status = $this->normalizeStatus((string) ($row['claim_status'] ?? '')); + $claimed = $this->toFloat($row['claimed_amount'] ?? 0); + $approved = $this->toFloat($row['abhi_amount_less_coins_current_month'] ?? 0); + + if ($status === 'Settled') { + return $approved > 0 ? $approved : $claimed; + } + if ($status === 'Outstanding') { + return $claimed; + } + + return 0.0; + } + + /** + * @param list> $rows + * @param callable(array):string $labelFn + */ + private function aggregateDimension(array $rows, string $dimension, callable $labelFn): array + { + $groups = []; + + foreach ($rows as $row) { + $status = $this->normalizeStatus((string) ($row['claim_status'] ?? '')); + if (!in_array($status, ['Settled', 'Outstanding'], true)) { + continue; + } + + $label = $labelFn($row); + if (!isset($groups[$label])) { + $groups[$label] = ['count' => 0, 'incurred_amount' => 0.0]; + } + $groups[$label]['count']++; + $groups[$label]['incurred_amount'] += $this->incurredForRow($row); + } + + uasort($groups, static fn ($a, $b) => $b['incurred_amount'] <=> $a['incurred_amount']); + + return $this->withPercentages($groups); + } + + /** + * @param array $groups + */ + private function withPercentages(array $groups, string $amountKey = 'incurred_amount'): array + { + $totalCount = array_sum(array_column($groups, 'count')); + $totalAmount = array_sum(array_map(static fn ($g) => (float) ($g[$amountKey] ?? 0), $groups)); + + $out = []; + foreach ($groups as $label => $data) { + $count = (int) ($data['count'] ?? $data['beneficiaries'] ?? 0); + $amount = (float) ($data[$amountKey] ?? $data['incurred_amount'] ?? 0); + + $out[$label] = array_merge($data, [ + 'count_pct' => self::formatPct($count, (float) $totalCount), + 'amount_pct' => self::formatPct($amount, $totalAmount), + ]); + } + + $out['_total'] = [ + 'count' => $totalCount, + 'incurred_amount' => $totalAmount, + ]; + + return $out; + } + + private function normalizeClaimType(string $type): string + { + $t = strtolower(trim($type)); + if (str_contains($t, 'cashless') || str_contains($t, 'network')) { + return 'Cashless'; + } + + return 'Reimbursement'; + } + + private function ageToBand(int $age): string + { + if ($age <= 10) { + return '0-10'; + } + if ($age <= 20) { + return '11-20'; + } + if ($age <= 30) { + return '21-30'; + } + if ($age <= 40) { + return '31-40'; + } + if ($age <= 50) { + return '41-50'; + } + if ($age <= 60) { + return '51-60'; + } + if ($age <= 70) { + return '61-70'; + } + + return '>70'; + } + + /** + * @param array $row + */ + private function resolveMonthKey(array $row): ?string + { + $raw = trim((string) ($row['intimation_final_month'] ?? '')); + if ($raw !== '') { + $ts = strtotime($raw); + if ($ts !== false) { + return date('M-y', $ts); + } + } + + $dateRaw = trim((string) ($row['intimation_date'] ?? '')); + if ($dateRaw !== '') { + $ts = strtotime($dateRaw); + if ($ts !== false) { + return date('M-y', $ts); + } + } + + return null; + } + + private static function monthKeyToSort(string $key): string + { + $ts = strtotime('01-' . str_replace('-', '-20', $key)); + return $ts !== false ? date('Y-m', $ts) : '0000-00'; + } + + private function toFloat(mixed $value): float + { + if ($value === null || $value === '') { + return 0.0; + } + + $clean = preg_replace('/[^\d.\-]/', '', (string) $value); + + return (float) ($clean !== '' ? $clean : 0); + } + + private function parseFormattedNumber(mixed $value): float + { + if ($value === null || $value === '') { + return 0.0; + } + + return $this->toFloat($value); + } + + /** + * @param list> $rows + */ + private function firstRow(array $rows): array + { + return $rows[0] ?? []; + } + + private function formatDate(mixed $value): string + { + if ($value === null || $value === '') { + return ''; + } + + $ts = strtotime((string) $value); + + return $ts !== false ? date('Y-m-d', $ts) : (string) $value; + } +} diff --git a/app/Libraries/IciciMisPdfService.php b/app/Libraries/IciciMisPdfService.php new file mode 100644 index 00000000..eff907f2 --- /dev/null +++ b/app/Libraries/IciciMisPdfService.php @@ -0,0 +1,137 @@ + $report + * @return array{status:bool,message?:string,content?:string,filename?:string} + */ + public function generateFromReport(array $report, int $policyId): array + { + $vm = $report['view_model'] ?? []; + $policyNo = trim((string) ($report['header']['policy_number'] ?? (string) $policyId)); + + $html = view('claims_mis_icici', [ + 'report' => $report, + 'view_model' => $vm, + 'policy_id' => $policyId, + 'pdf_url' => '', + 'embed' => true, + ]); + + return $this->generate($html, $policyNo); + } + + /** + * @return array{status:bool,message?:string,content?:string,filename?:string} + */ + public function generate(string $html, string $policyNo): array + { + $safePolicy = preg_replace('/[^A-Za-z0-9_\-]+/', '_', $policyNo) ?: 'policy'; + $filename = 'ICICI_MIS_' . $safePolicy . '_' . date('Ymd') . '.pdf'; + + try { + $options = new Options(); + $options->set('isHtml5ParserEnabled', true); + $options->set('isRemoteEnabled', true); + $options->set('isFontSubsettingEnabled', true); + $options->set('defaultFont', 'DejaVu Sans'); + $options->setChroot([ + rtrim(ROOTPATH, '/\\'), + rtrim(FCPATH, '/\\'), + rtrim(WRITEPATH, '/\\'), + sys_get_temp_dir(), + ]); + + $dompdf = new Dompdf($options); + $dompdf->loadHtml($this->prepareHtml($html)); + $dompdf->setPaper('A4', 'portrait'); + $dompdf->render(); + + $content = $dompdf->output(); + if ($content === '' || $content === null) { + return ['status' => false, 'message' => 'PDF generation failed: empty output.']; + } + + return [ + 'status' => true, + 'content' => $content, + 'filename' => $filename, + ]; + } catch (\Throwable $e) { + log_message('error', 'IciciMisPdfService::generate failed | ' . $e->getMessage()); + + return ['status' => false, 'message' => 'PDF generation failed: ' . $e->getMessage()]; + } + } + + private function prepareHtml(string $html): string + { + $html = preg_replace('#]*>.*?#is', '', $html) ?? $html; + $html = preg_replace('/[\x{1F300}-\x{1FAFF}]/u', '', $html) ?? $html; + + $vars = [ + 'var(--navy)' => '#1b3a6b', + 'var(--navy-dark)' => '#16305a', + 'var(--red)' => '#a63a3a', + 'var(--red-header)' => '#a13a3a', + 'var(--border)' => '#7f7f7f', + 'var(--page-bg)' => '#ffffff', + ]; + $html = str_replace(array_keys($vars), array_values($vars), $html); + $html = preg_replace('#:root\s*\{[^}]*\}#is', '', $html) ?? $html; + + $html = preg_replace_callback( + '#(]*\bsrc=["\'])([^"\']+)(["\'][^>]*>)#i', + function (array $m): string { + $src = html_entity_decode($m[2], ENT_QUOTES); + $dataUri = $this->toDataUri($src); + + return $m[1] . ($dataUri ?: $src) . $m[3]; + }, + $html + ) ?? $html; + + return $html; + } + + private function toDataUri(string $path): ?string + { + $path = trim($path); + if ($path === '' || str_starts_with($path, 'data:')) { + return null; + } + + if (preg_match('#^file://#i', $path)) { + $path = preg_replace('#^file://#i', '', $path) ?? $path; + } + + if (!is_file($path) || !is_readable($path)) { + return null; + } + + $ext = strtolower(pathinfo($path, PATHINFO_EXTENSION)); + $mime = match ($ext) { + 'png' => 'image/png', + 'jpg', 'jpeg' => 'image/jpeg', + 'gif' => 'image/gif', + 'webp' => 'image/webp', + default => 'application/octet-stream', + }; + + $bytes = @file_get_contents($path); + if ($bytes === false || $bytes === '') { + return null; + } + + return 'data:' . $mime . ';base64,' . base64_encode($bytes); + } +} diff --git a/app/Libraries/IciciMisReportService.php b/app/Libraries/IciciMisReportService.php new file mode 100644 index 00000000..5cbf11ac --- /dev/null +++ b/app/Libraries/IciciMisReportService.php @@ -0,0 +1,1164 @@ +kpiModel = $kpiModel ?? new ClaimReportDashboardModel(); + $this->dumpFileModel = $dumpFileModel ?? new ClaimDumpFileModel(); + } + + /** + * @return array{status:bool,message?:string,data?:array} + */ + public function build(int $policyId): array + { + if ($policyId <= 0) { + return ['status' => false, 'message' => 'client_policy_id is required.']; + } + + $db = db_connect(); + if (!$db->tableExists('claim_report') || !$db->tableExists(self::DUMP_TABLE)) { + return ['status' => false, 'message' => 'Required tables claim_report or claims_dump_icici do not exist.']; + } + + $dumpRows = $this->getLinkedDumpRows($policyId); + if ($dumpRows === []) { + return [ + 'status' => false, + 'message' => 'No ICICI dump rows linked via claim_report. Run sync: /util/claims-collection-report/sync', + ]; + } + + $policy = $db->table('client_policy cp') + ->select('cp.*, c.client_name, i.name AS insurer_name, t.name AS tpa_name') + ->join('clients c', 'c.id = cp.client_id', 'left') + ->join('insurers i', 'i.id = cp.insurer_id', 'left') + ->join('tpa t', 't.id = cp.tpa_id', 'left') + ->where('cp.id', $policyId) + ->get() + ->getRowArray(); + + if (!$policy) { + return ['status' => false, 'message' => 'Policy not found.']; + } + + $exposure = $this->firstRow($this->kpiModel->policy_exposure_summary($policyId)); + $premiumRow = $this->firstRow($this->kpiModel->premium_as_on_date($policyId)); + $livesRow = $this->firstRow($this->kpiModel->current_emp_lives($policyId)); + $experience = $this->firstRow($this->kpiModel->claims_experience_summary($policyId)); + + $premium = $this->parseFormattedNumber($premiumRow['premium_as_on_date'] ?? null); + $earned = $this->parseFormattedNumber($experience['earned_premium'] ?? null); + $lives = (int) ($livesRow['current_lives'] ?? 0); + + $paidAmt = 0.0; + $osAmt = 0.0; + foreach ($dumpRows as $row) { + $bucket = $this->statusBucket((string) ($row['updated_status'] ?? '')); + if ($bucket === 'Settled — Paid') { + $paidAmt += $this->paidAmount($row); + } elseif (str_starts_with($bucket, 'Outstanding')) { + $osAmt += $this->claimedOsAmount($row); + } + } + $hitLoss = $paidAmt + $osAmt; + $claimCost = 0.0; + $grossInc = $hitLoss + $claimCost; + $lossRatio = $earned > 0 ? (int) round(($grossInc / $earned) * 100) : 0; + + $claimsSummary = $this->buildClaimsSummary($dumpRows); + $iltcSummary = $this->buildIltcSummary($dumpRows); + $enrollment = $this->buildEnrollmentSummary($dumpRows, $lives); + $ageAnalysis = $this->buildTypeGridByKey($dumpRows, fn ($r) => $this->ageBand($r), self::AGE_BANDS); + $relationAcs = $this->buildTypeGridByKey($dumpRows, fn ($r) => $this->relationLabel($r), self::RELATIONS); + $amountBands = $this->buildAmountBands($dumpRows); + $siBands = $this->buildSiBands($dumpRows); + $utilEmp = $this->buildUtilization($dumpRows, true); + $utilDep = $this->buildUtilization($dumpRows, false); + $disease = $this->buildTypeGridByKey($dumpRows, fn ($r) => $this->diseaseLabel($r), null, true); + $hospitals = $this->buildTopHospitals($dumpRows, 10); + $cities = $this->buildTopCities($dumpRows, 10); + $tat = $this->buildTat($dumpRows); + $takeaways = $this->buildTakeaways($dumpRows, $claimsSummary, $enrollment, $disease, $utilDep); + + $startDate = $this->formatDate($policy['policy_start_date'] ?? $exposure['policy_start_date'] ?? null); + $endDate = $this->formatDate($policy['policy_end_date'] ?? $exposure['policy_end_date'] ?? null); + $uploadAt = $this->dumpFileModel->getGeneratedAtForPolicy($policyId) ?: date('d/m/Y g:i:s A'); + + $data = [ + 'meta' => [ + 'policy_id' => $policyId, + 'client_name' => trim((string) ($policy['client_name'] ?? '')), + 'report_month' => date('F-Y'), + 'data_upload' => $uploadAt, + 'generated_at' => date('d-M-Y'), + 'tpa_name' => trim((string) ($policy['tpa_name'] ?? 'ICICI Lombard')), + ], + 'header' => [ + 'policy_number' => trim((string) ($policy['policy_no'] ?? '')), + 'policy_start_date' => $startDate, + 'policy_end_date' => $endDate, + 'policy_period' => trim($startDate . ' To ' . $endDate), + 'insurer_name' => trim((string) ($policy['insurer_name'] ?? 'ICICI Lombard General Insurance Company')), + 'lives' => $lives, + ], + 'premium_lr' => [ + 'premium' => $premium, + 'earned_premium' => $earned, + 'loss_amount_paid' => $paidAmt, + 'loss_amount_os' => $osAmt, + 'hit_loss' => $hitLoss, + 'claim_cost' => $claimCost, + 'gross_incurred_cost' => $grossInc, + 'loss_ratio' => $lossRatio, + 'as_on' => date('m/d/Y'), + ], + 'claims_summary' => $claimsSummary, + 'iltc_summary' => $iltcSummary, + 'enrollment' => $enrollment, + 'age_analysis' => $ageAnalysis, + 'relation_acs' => $relationAcs, + 'amount_bands' => $amountBands, + 'si_bands' => $siBands, + 'iltc_app' => [ + 'month' => date('M-y'), + 'engagement' => ['self_lives' => '', 'active_users' => '', 'downloads' => '', 'ratio' => '0%'], + 'features' => ['ecard' => '', 'face_scan' => '0%', 'blog' => '0%', 'cross_sell' => ''], + 'services' => ['hat_req' => '', 'hat_ful' => '', 'ilhd' => '', 'expertise' => '0%', 'health_claim' => ''], + ], + 'utilization_employees' => $utilEmp, + 'utilization_dependents' => $utilDep, + 'disease' => $disease, + 'hospitals' => $hospitals, + 'cities' => $cities, + 'tat' => $tat, + 'takeaways' => $takeaways, + 'dump_row_count' => count($dumpRows), + ]; + + $data['view_model'] = $data; + + return ['status' => true, 'data' => $data]; + } + + /** + * @return list> + */ + public function getLinkedDumpRows(int $policyId): array + { + $db = db_connect(); + $reportRows = $db->table('claim_report') + ->select('source_row_id') + ->where('client_policy_id', $policyId) + ->where('is_active', 1) + ->where('source_table', self::DUMP_TABLE) + ->where('source_row_id IS NOT NULL', null, false) + ->get() + ->getResultArray(); + + if ($reportRows === []) { + return []; + } + + $dumpIds = array_values(array_unique(array_filter(array_map( + static fn ($r) => (int) ($r['source_row_id'] ?? 0), + $reportRows + )))); + + if ($dumpIds === []) { + return []; + } + + return $db->table(self::DUMP_TABLE) + ->whereIn('id', $dumpIds) + ->where('is_active', 1) + ->orderBy('id', 'ASC') + ->get() + ->getResultArray(); + } + + /** + * @param list> $rows + * @return array{rows:list>,total:array,cashless_pct:float} + */ + private function buildClaimsSummary(array $rows): array + { + $empty = ['count' => 0, 'claimed' => 0.0, 'paid' => 0.0]; + $grid = []; + foreach (self::STATUS_ROWS as $label) { + $grid[$label] = [ + 'Cashless' => $empty, + 'Reimbursement' => $empty, + ]; + } + + foreach ($rows as $row) { + $bucket = $this->statusBucket((string) ($row['updated_status'] ?? '')); + if (!isset($grid[$bucket])) { + continue; + } + $type = $this->claimType($row); + $claimed = $this->claimedOsAmount($row); + $paid = str_contains($bucket, 'Paid') + ? $this->paidAmount($row) + : (str_starts_with($bucket, 'Outstanding') ? $claimed : 0.0); + + $grid[$bucket][$type]['count']++; + $grid[$bucket][$type]['claimed'] += $claimed; + if (!str_contains($bucket, 'Reject')) { + $grid[$bucket][$type]['paid'] += $paid; + } + } + + $outRows = []; + $totals = [ + 'Cashless' => $empty, + 'Reimbursement' => $empty, + ]; + + foreach (self::STATUS_ROWS as $label) { + $c = $grid[$label]['Cashless']; + $r = $grid[$label]['Reimbursement']; + $o = [ + 'count' => $c['count'] + $r['count'], + 'claimed' => $c['claimed'] + $r['claimed'], + 'paid' => $c['paid'] + $r['paid'], + ]; + $outRows[] = [ + 'label' => $label, + 'cashless' => $c, + 'reimb' => $r, + 'overall' => $o, + ]; + foreach (['Cashless', 'Reimbursement'] as $t) { + $totals[$t]['count'] += $grid[$label][$t]['count']; + $totals[$t]['claimed'] += $grid[$label][$t]['claimed']; + $totals[$t]['paid'] += $grid[$label][$t]['paid']; + } + } + + $totalOverall = [ + 'count' => $totals['Cashless']['count'] + $totals['Reimbursement']['count'], + 'claimed' => $totals['Cashless']['claimed'] + $totals['Reimbursement']['claimed'], + 'paid' => $totals['Cashless']['paid'] + $totals['Reimbursement']['paid'], + ]; + $den = $totals['Cashless']['count'] + $totals['Reimbursement']['count']; + $cashlessPct = $den > 0 ? round(($totals['Cashless']['count'] / $den) * 100) : 0; + + return [ + 'rows' => $outRows, + 'total' => [ + 'cashless' => $totals['Cashless'], + 'reimb' => $totals['Reimbursement'], + 'overall' => $totalOverall, + ], + 'cashless_pct' => $cashlessPct, + ]; + } + + /** + * @param list> $rows + * @return array{ri:int,iltc:int,pct:int} + */ + private function buildIltcSummary(array $rows): array + { + $ri = 0; + $iltc = 0; + foreach ($rows as $row) { + if ($this->claimType($row) !== 'Reimbursement') { + continue; + } + $ri++; + $tag = strtoupper(trim((string) ($row['iltc_tag'] ?? ''))); + if ($tag !== '' && $tag !== '0' && $tag !== 'N' && $tag !== 'NO') { + $iltc++; + } + } + + return [ + 'ri' => $ri, + 'iltc' => $iltc, + 'pct' => $ri > 0 ? (int) round(($iltc / $ri) * 100) : 0, + ]; + } + + /** + * @param list> $rows + * @return array + */ + private function buildEnrollmentSummary(array $rows, int $lives): array + { + $claimCount = count($rows); + $freq = $lives > 0 ? round(($claimCount / $lives) * 100, 2) : 0.0; + + // Age × relation from dump demographics (unique UHID preferred) + $matrix = []; + foreach (self::AGE_BANDS as $band) { + foreach (self::RELATIONS as $rel) { + $matrix[$band][$rel] = 0; + } + $matrix[$band]['_total'] = 0; + } + $seen = []; + foreach ($rows as $row) { + $uhid = trim((string) ($row['uhid'] ?? '')); + $key = $uhid !== '' ? $uhid : ('id:' . ($row['id'] ?? uniqid('', true))); + if (isset($seen[$key])) { + continue; + } + $seen[$key] = true; + $band = $this->ageBand($row); + $rel = $this->relationLabel($row); + if (!isset($matrix[$band])) { + continue; + } + $matrix[$band][$rel] = ($matrix[$band][$rel] ?? 0) + 1; + $matrix[$band]['_total']++; + } + + $colTotals = array_fill_keys(self::RELATIONS, 0); + $grand = 0; + foreach (self::AGE_BANDS as $band) { + foreach (self::RELATIONS as $rel) { + $colTotals[$rel] += $matrix[$band][$rel]; + } + $grand += $matrix[$band]['_total']; + } + if ($lives > 0 && $grand === 0) { + $grand = $lives; + } + + $topBand = ''; + $topPct = 0; + foreach (self::AGE_BANDS as $band) { + $pct = $grand > 0 ? (int) round(($matrix[$band]['_total'] / $grand) * 100) : 0; + if ($pct > $topPct) { + $topPct = $pct; + $topBand = $band; + } + } + + return [ + 'lives' => $lives > 0 ? $lives : $grand, + 'claims' => $claimCount, + 'frequency' => $freq, + 'matrix' => $matrix, + 'col_totals' => $colTotals, + 'grand_total' => $grand > 0 ? $grand : $lives, + 'top_band' => $topBand, + 'top_band_pct'=> $topPct, + ]; + } + + /** + * @param list> $rows + * @param callable(array):string $keyFn + * @param list|null $order + * @return array{rows:list>,total:array} + */ + private function buildTypeGridByKey(array $rows, callable $keyFn, ?array $order = null, bool $dynamic = false): array + { + $buckets = []; + if ($order !== null) { + foreach ($order as $k) { + $buckets[$k] = $this->emptyTypeBucket(); + } + } + + foreach ($rows as $row) { + // Age/Relation ACS tables in PDF use settled+OS paid amounts (incidence with amount) + $bucketStatus = $this->statusBucket((string) ($row['updated_status'] ?? '')); + if ($bucketStatus === 'Settled — Reject') { + continue; + } + // Include Paid + Outstanding for analysis grids (match sample counts) + if (!str_contains($bucketStatus, 'Paid') && !str_starts_with($bucketStatus, 'Outstanding')) { + // still include paid only for ACS amount grids — sample includes outstanding in claims summary + // For age/relation ACS sample uses paid amounts mostly; include Paid + OS with amounts + } + + $key = $keyFn($row); + if ($key === '') { + $key = 'Others'; + } + if (!isset($buckets[$key])) { + if (!$dynamic && $order !== null) { + continue; + } + $buckets[$key] = $this->emptyTypeBucket(); + } + $type = $this->claimType($row); + $amt = str_contains($bucketStatus, 'Paid') + ? $this->paidAmount($row) + : $this->claimedOsAmount($row); + if ($bucketStatus === 'Settled — Reject') { + continue; + } + // Count Paid + Outstanding for analysis (PDF age/relation uses paid-focused rows) + if (!str_contains($bucketStatus, 'Paid') && !str_starts_with($bucketStatus, 'Outstanding')) { + continue; + } + // Prefer Paid amounts for ACS tables like sample (Outstanding also counted in summary) + if (str_starts_with($bucketStatus, 'Outstanding')) { + // Sample age analysis counts appear closer to paid-only; skip OS for ACS grids + continue; + } + + $buckets[$key][$type]['count']++; + $buckets[$key][$type]['amount'] += $amt; + } + + $keys = $order ?? array_keys($buckets); + if ($dynamic) { + // sort by total amount desc, keep Overall separate + uasort($buckets, static function ($a, $b) { + $ta = $a['Cashless']['amount'] + $a['Reimbursement']['amount']; + $tb = $b['Cashless']['amount'] + $b['Reimbursement']['amount']; + + return $tb <=> $ta; + }); + $keys = array_keys($buckets); + } + + $rowsOut = []; + $total = $this->emptyTypeBucket(); + foreach ($keys as $key) { + $b = $buckets[$key] ?? $this->emptyTypeBucket(); + $row = $this->finalizeTypeRow($key, $b); + $rowsOut[] = $row; + foreach (['Cashless', 'Reimbursement'] as $t) { + $total[$t]['count'] += $b[$t]['count']; + $total[$t]['amount'] += $b[$t]['amount']; + } + } + + return [ + 'rows' => $rowsOut, + 'total' => $this->finalizeTypeRow('Overall', $total), + ]; + } + + /** + * @param list> $rows + * @return array{rows:list,total:array} + */ + private function buildAmountBands(array $rows): array + { + $buckets = []; + foreach (self::AMOUNT_BANDS as $b) { + $buckets[$b] = $this->emptyTypeBucket(); + } + + $totalCount = 0; + $totalAmt = 0.0; + foreach ($rows as $row) { + if ($this->statusBucket((string) ($row['updated_status'] ?? '')) !== 'Settled — Paid') { + continue; + } + $amt = $this->paidAmount($row); + $band = $this->amountBand($amt); + $type = $this->claimType($row); + $buckets[$band][$type]['count']++; + $buckets[$band][$type]['amount'] += $amt; + $totalCount++; + $totalAmt += $amt; + } + + $out = []; + $tot = $this->emptyTypeBucket(); + foreach (self::AMOUNT_BANDS as $band) { + $b = $buckets[$band]; + $c = $b['Cashless']['count'] + $b['Reimbursement']['count']; + $a = $b['Cashless']['amount'] + $b['Reimbursement']['amount']; + $out[] = [ + 'label' => $band, + 'cashless' => $b['Cashless'], + 'reimb' => $b['Reimbursement'], + 'total_count' => $c, + 'total_amount' => $a, + 'pct_claims' => $totalCount > 0 ? (int) round(($c / $totalCount) * 100) : 0, + 'pct_value' => $totalAmt > 0 ? (int) round(($a / $totalAmt) * 100) : 0, + ]; + foreach (['Cashless', 'Reimbursement'] as $t) { + $tot[$t]['count'] += $b[$t]['count']; + $tot[$t]['amount'] += $b[$t]['amount']; + } + } + + return [ + 'rows' => $out, + 'total' => [ + 'cashless' => $tot['Cashless'], + 'reimb' => $tot['Reimbursement'], + 'total_count' => $tot['Cashless']['count'] + $tot['Reimbursement']['count'], + 'total_amount' => $tot['Cashless']['amount'] + $tot['Reimbursement']['amount'], + 'pct_claims' => 100, + 'pct_value' => 100, + ], + ]; + } + + /** + * @param list> $rows + * @return array{rows:list,total:array} + */ + private function buildSiBands(array $rows): array + { + $buckets = []; + foreach (self::SI_BANDS as $b) { + $buckets[$b] = $this->emptyTypeBucket(); + } + + $totalCount = 0; + $totalAmt = 0.0; + foreach ($rows as $row) { + if ($this->statusBucket((string) ($row['updated_status'] ?? '')) !== 'Settled — Paid') { + continue; + } + $si = $this->toFloat($row['sum_insured'] ?? 0); + $band = $this->siBand($si); + $type = $this->claimType($row); + $amt = $this->paidAmount($row); + $buckets[$band][$type]['count']++; + $buckets[$band][$type]['amount'] += $amt; + $totalCount++; + $totalAmt += $amt; + } + + $out = []; + $tot = $this->emptyTypeBucket(); + foreach (self::SI_BANDS as $band) { + $b = $buckets[$band]; + $row = $this->finalizeTypeRow($band, $b); + $c = $row['total']['count']; + $a = $row['total']['amount']; + $row['pct_claims'] = $totalCount > 0 ? (int) round(($c / $totalCount) * 100) : 0; + $row['pct_value'] = $totalAmt > 0 ? (int) round(($a / $totalAmt) * 100) : 0; + $out[] = $row; + foreach (['Cashless', 'Reimbursement'] as $t) { + $tot[$t]['count'] += $b[$t]['count']; + $tot[$t]['amount'] += $b[$t]['amount']; + } + } + $totalRow = $this->finalizeTypeRow('Overall', $tot); + $totalRow['pct_claims'] = 100; + $totalRow['pct_value'] = 100; + + return ['rows' => $out, 'total' => $totalRow]; + } + + /** + * @param list> $rows + * @return array{rows:list,total:array} + */ + private function buildUtilization(array $rows, bool $employees): array + { + $byMember = []; + foreach ($rows as $row) { + if ($this->statusBucket((string) ($row['updated_status'] ?? '')) !== 'Settled — Paid') { + continue; + } + $isSelf = $this->isSelf($row); + if ($employees && !$isSelf) { + continue; + } + if (!$employees && $isSelf) { + continue; + } + $key = trim((string) ($row['uhid'] ?? '')); + if ($key === '') { + $key = trim((string) ($row['employee_member_id'] ?? '')) . '|' . trim((string) ($row['insured_name'] ?? '')); + } + if ($key === '|') { + $key = 'row:' . ($row['id'] ?? uniqid('', true)); + } + if (!isset($byMember[$key])) { + $byMember[$key] = ['count' => 0, 'amount' => 0.0]; + } + $byMember[$key]['count']++; + $byMember[$key]['amount'] += $this->paidAmount($row); + } + + $bands = [ + '1' => ['members' => 0, 'amount' => 0.0, 'claims' => 0], + '2-3' => ['members' => 0, 'amount' => 0.0, 'claims' => 0], + '>3' => ['members' => 0, 'amount' => 0.0, 'claims' => 0], + ]; + foreach ($byMember as $m) { + $c = $m['count']; + $key = $c === 1 ? '1' : ($c <= 3 ? '2-3' : '>3'); + $bands[$key]['members']++; + $bands[$key]['amount'] += $m['amount']; + $bands[$key]['claims'] += $c; + } + + $totMembers = array_sum(array_column($bands, 'members')); + $totAmount = array_sum(array_column($bands, 'amount')); + $totClaims = array_sum(array_column($bands, 'claims')); + + $out = []; + foreach ($bands as $label => $b) { + $out[] = [ + 'label' => $label, + 'members' => $b['members'], + 'amount' => $b['amount'], + 'pct_claims' => $totClaims > 0 ? (int) round(($b['claims'] / $totClaims) * 100) : 0, + 'pct_value' => $totAmount > 0 ? (int) round(($b['amount'] / $totAmount) * 100) : 0, + ]; + } + + return [ + 'rows' => $out, + 'total' => [ + 'members' => $totMembers, + 'amount' => $totAmount, + 'pct_claims' => 100, + 'pct_value' => 100, + ], + ]; + } + + /** + * @param list> $rows + * @return array{rows:list,total:array} + */ + private function buildTopHospitals(array $rows, int $limit): array + { + $map = []; + foreach ($rows as $row) { + if ($this->statusBucket((string) ($row['updated_status'] ?? '')) !== 'Settled — Paid') { + continue; + } + $name = trim((string) ($row['hospital_name'] ?? '')); + if ($name === '') { + $name = 'Unknown'; + } + $city = trim((string) ($row['hospital_city'] ?? '')) ?: '--'; + $key = strtoupper($name); + if (!isset($map[$key])) { + $map[$key] = [ + 'name' => $name, + 'city' => $city, + 'Cashless' => ['count' => 0, 'amount' => 0.0], + 'Reimbursement' => ['count' => 0, 'amount' => 0.0], + ]; + } + $type = $this->claimType($row); + $map[$key][$type]['count']++; + $map[$key][$type]['amount'] += $this->paidAmount($row); + } + + uasort($map, static function ($a, $b) { + $ta = $a['Cashless']['amount'] + $a['Reimbursement']['amount']; + $tb = $b['Cashless']['amount'] + $b['Reimbursement']['amount']; + + return $tb <=> $ta; + }); + + $top = array_slice(array_values($map), 0, $limit); + $out = []; + $tot = $this->emptyTypeBucket(); + foreach ($top as $h) { + $bucket = [ + 'Cashless' => $h['Cashless'], + 'Reimbursement' => $h['Reimbursement'], + ]; + $row = $this->finalizeTypeRow($h['name'], $bucket); + $row['city'] = $h['city']; + $out[] = $row; + foreach (['Cashless', 'Reimbursement'] as $t) { + $tot[$t]['count'] += $h[$t]['count']; + $tot[$t]['amount'] += $h[$t]['amount']; + } + } + + return ['rows' => $out, 'total' => $this->finalizeTypeRow('Overall', $tot)]; + } + + /** + * @param list> $rows + * @return array{rows:list,total:array} + */ + private function buildTopCities(array $rows, int $limit): array + { + $map = []; + foreach ($rows as $row) { + if ($this->statusBucket((string) ($row['updated_status'] ?? '')) !== 'Settled — Paid') { + continue; + } + $city = trim((string) ($row['hospital_city'] ?? '')); + if ($city === '') { + $city = 'Unknown'; + } + $key = strtoupper($city); + if (!isset($map[$key])) { + $map[$key] = $this->emptyTypeBucket(); + $map[$key]['_label'] = $city; + } + $type = $this->claimType($row); + $map[$key][$type]['count']++; + $map[$key][$type]['amount'] += $this->paidAmount($row); + } + + uasort($map, static function ($a, $b) { + $ta = $a['Cashless']['amount'] + $a['Reimbursement']['amount']; + $tb = $b['Cashless']['amount'] + $b['Reimbursement']['amount']; + + return $tb <=> $ta; + }); + + $top = array_slice($map, 0, $limit, true); + $out = []; + $tot = $this->emptyTypeBucket(); + foreach ($top as $item) { + $label = $item['_label']; + unset($item['_label']); + $out[] = $this->finalizeTypeRow($label, $item); + foreach (['Cashless', 'Reimbursement'] as $t) { + $tot[$t]['count'] += $item[$t]['count']; + $tot[$t]['amount'] += $item[$t]['amount']; + } + } + + return ['rows' => $out, 'total' => $this->finalizeTypeRow('Overall', $tot)]; + } + + /** + * @param list> $rows + * @return list + */ + private function buildTat(array $rows): array + { + $byMonth = []; + foreach ($rows as $row) { + $bucket = $this->statusBucket((string) ($row['updated_status'] ?? '')); + $type = $this->claimType($row); + $inward = strtotime((string) ($row['inward_date'] ?? '')); + $paid = strtotime((string) ($row['payment_date'] ?? '')); + $doa = strtotime((string) ($row['doa'] ?? '')); + + $monthKey = ''; + if ($paid !== false) { + $monthKey = date('M-y', $paid); + } elseif ($inward !== false) { + $monthKey = date('M-y', $inward); + } elseif ($doa !== false) { + $monthKey = date('M-y', $doa); + } + if ($monthKey === '') { + continue; + } + if (!isset($byMonth[$monthKey])) { + $byMonth[$monthKey] = [ + 'reimb_days' => [], + 'fresh_secs' => [], + 'sort' => $paid ?: ($inward ?: ($doa ?: 0)), + ]; + } + + if ($type === 'Reimbursement' && $bucket === 'Settled — Paid' && $inward !== false && $paid !== false && $paid >= $inward) { + $byMonth[$monthKey]['reimb_days'][] = (int) floor(($paid - $inward) / 86400); + } + if ($type === 'Cashless' && $doa !== false && $inward !== false && $inward >= $doa) { + $byMonth[$monthKey]['fresh_secs'][] = $inward - $doa; + } + } + + uasort($byMonth, static fn ($a, $b) => $a['sort'] <=> $b['sort']); + + $out = []; + foreach ($byMonth as $month => $data) { + $reimb = $data['reimb_days'] !== [] + ? (string) (int) round(array_sum($data['reimb_days']) / count($data['reimb_days'])) + : ''; + $fresh = ''; + if ($data['fresh_secs'] !== []) { + $avg = (int) round(array_sum($data['fresh_secs']) / count($data['fresh_secs'])); + $h = intdiv($avg, 3600); + $m = intdiv($avg % 3600, 60); + $s = $avg % 60; + $fresh = $h . ':' . $m . ':' . $s; + } + $out[] = [ + 'month' => $month, + 'reimb_days' => $reimb, + 'fresh_al' => $fresh, + 'enhancement' => '', + ]; + } + + return $out; + } + + /** + * @param list> $rows + * @param array $claimsSummary + * @param array $enrollment + * @param array $disease + * @param array $utilDep + * @return array> + */ + private function buildTakeaways(array $rows, array $claimsSummary, array $enrollment, array $disease, array $utilDep): array + { + $portfolio = []; + $portfolio[] = 'Cashless % = ' . ($claimsSummary['cashless_pct'] ?? 0) . '% (Cashless/Cashless+Reimbursement)'; + $iltc = $this->buildIltcSummary($rows); + $portfolio[] = 'ILTC % = ' . $iltc['pct'] . '% (ILTC(Incidence)/Overall RI(Incidence))'; + + $enrollmentNotes = []; + if (($enrollment['top_band'] ?? '') !== '') { + $enrollmentNotes[] = 'Highest enrolment is done in age band of "' . $enrollment['top_band'] . '" which is ' . $enrollment['top_band_pct'] . '%'; + } + + $diseaseNotes = []; + $dRows = $disease['rows'] ?? []; + if ($dRows !== []) { + $top = $dRows[0]; + $totCount = (int) ($disease['total']['total']['count'] ?? 0); + $totAmt = (float) ($disease['total']['total']['amount'] ?? 0); + $cPct = $totCount > 0 ? (int) round(($top['total']['count'] / $totCount) * 100) : 0; + $aPct = $totAmt > 0 ? (int) round(($top['total']['amount'] / $totAmt) * 100) : 0; + $diseaseNotes[] = ($top['label'] ?? '') . ' is a disease category which is causing maximum number of claims which is ' . $cPct . '%'; + $diseaseNotes[] = 'Also ' . ($top['label'] ?? '') . ' is a disease category where the claim amount is maximum which is ' . $aPct . '%'; + } + + $utilNotes = []; + foreach ($utilDep['rows'] ?? [] as $r) { + if (($r['label'] ?? '') === '1' && (int) ($r['members'] ?? 0) > 0) { + $utilNotes[] = 'Most dependents raise an average of 1 claims with a value ' . number_format((float) $r['amount']); + break; + } + } + + $tatNotes = []; + $tat = $this->buildTat($rows); + $reimbVals = array_values(array_filter(array_map(static fn ($r) => $r['reimb_days'] !== '' ? (int) $r['reimb_days'] : null, $tat))); + if ($reimbVals !== []) { + $tatNotes[] = 'Reimbursement TAT is ' . (int) round(array_sum($reimbVals) / count($reimbVals)); + } + + return [ + 'portfolio' => $portfolio, + 'enrollment' => $enrollmentNotes, + 'disease' => $diseaseNotes, + 'utilization'=> $utilNotes, + 'tat' => $tatNotes, + ]; + } + + // ----------------- helpers ----------------- + + /** @return array{Cashless:array{count:int,amount:float},Reimbursement:array{count:int,amount:float}} */ + private function emptyTypeBucket(): array + { + return [ + 'Cashless' => ['count' => 0, 'amount' => 0.0], + 'Reimbursement' => ['count' => 0, 'amount' => 0.0], + ]; + } + + /** + * @param array{Cashless:array{count:int,amount:float},Reimbursement:array{count:int,amount:float}} $b + * @return array + */ + private function finalizeTypeRow(string $label, array $b): array + { + $c = $b['Cashless']; + $r = $b['Reimbursement']; + $tCount = $c['count'] + $r['count']; + $tAmt = $c['amount'] + $r['amount']; + + return [ + 'label' => $label, + 'cashless' => [ + 'count' => $c['count'], + 'amount' => $c['amount'], + 'acs' => $c['count'] > 0 ? round($c['amount'] / $c['count']) : 0, + ], + 'reimb' => [ + 'count' => $r['count'], + 'amount' => $r['amount'], + 'acs' => $r['count'] > 0 ? round($r['amount'] / $r['count']) : 0, + ], + 'total' => [ + 'count' => $tCount, + 'amount' => $tAmt, + 'acs' => $tCount > 0 ? round($tAmt / $tCount) : 0, + ], + ]; + } + + private function statusBucket(string $status): string + { + $s = strtoupper(trim(str_replace(['_', '-'], ' ', $status))); + $s = preg_replace('/\s+/', ' ', $s) ?? $s; + + if (str_contains($s, 'REJECT')) { + return 'Settled — Reject'; + } + if (str_contains($s, 'PAID') || $s === 'SETTLED' || $s === 'CLOSED') { + return 'Settled — Paid'; + } + if (str_contains($s, 'AL APPROVED') || $s === 'APPROVED' || str_contains($s, 'AUTH')) { + return 'Outstanding — AL Approved'; + } + if (str_contains($s, 'QUERY') || str_contains($s, 'DEFICIEN')) { + return 'Outstanding — Query'; + } + if (str_contains($s, 'SENT FOR PAYMENT') || str_contains($s, 'PAYMENT PENDING') || str_contains($s, 'FOR PAYMENT')) { + return 'Outstanding — Sent for Payment'; + } + if (str_contains($s, 'WIP') || str_contains($s, 'IN PROCESS') || str_contains($s, 'UNDER PROCESS') || str_contains($s, 'OUTSTANDING') || $s === '') { + return 'Outstanding — Claim WIP'; + } + + return 'Outstanding — Claim WIP'; + } + + /** @param array $row */ + private function claimType(array $row): string + { + $t = strtoupper(trim((string) ($row['type_of_claim'] ?? ''))); + if (str_contains($t, 'CASH')) { + return 'Cashless'; + } + + return 'Reimbursement'; + } + + /** @param array $row */ + private function paidAmount(array $row): float + { + $net = $this->toFloat($row['net_sanct_amt'] ?? 0); + if ($net > 0) { + return $net; + } + + return $this->toFloat($row['payment_amount'] ?? 0); + } + + /** @param array $row */ + private function claimedOsAmount(array $row): float + { + $os = $this->toFloat($row['claim_r_os_amt'] ?? 0); + if ($os > 0) { + return $os; + } + + return $this->toFloat($row['claimed_amount'] ?? 0); + } + + /** @param array $row */ + private function ageBand(array $row): string + { + $band = trim((string) ($row['age_band'] ?? '')); + if ($band !== '') { + $band = str_replace(['–', '—'], '-', $band); + foreach (self::AGE_BANDS as $known) { + if (strcasecmp($band, $known) === 0) { + return $known; + } + } + // normalize "Above 75" variants + if (preg_match('/above\s*75|>\s*75/i', $band)) { + return 'Above 75'; + } + + return $band; + } + + $age = (int) $this->toFloat($row['age'] ?? 0); + if ($age <= 5) { + return '00-05'; + } + if ($age <= 18) { + return '06-18'; + } + if ($age <= 25) { + return '19-25'; + } + if ($age <= 35) { + return '26-35'; + } + if ($age <= 45) { + return '36-45'; + } + if ($age <= 55) { + return '46-55'; + } + if ($age <= 65) { + return '56-65'; + } + if ($age <= 75) { + return '66-75'; + } + + return 'Above 75'; + } + + /** @param array $row */ + private function relationLabel(array $row): string + { + $g = strtoupper(trim((string) ($row['relation_group'] ?? ''))); + $r = strtoupper(trim((string) ($row['relation'] ?? ''))); + $src = $g !== '' ? $g : $r; + + if ($src === '' || str_contains($src, 'SELF') || str_contains($src, 'EMPLOYEE') || $src === 'PRIMARY') { + if ($src === '' && $r === '') { + return 'Others'; + } + if (str_contains($src, 'SELF') || str_contains($src, 'EMPLOYEE') || $src === 'PRIMARY') { + return 'Self'; + } + } + if (str_contains($src, 'IN LAW') || str_contains($src, 'INLAW') || str_contains($src, 'FATHER IN') || str_contains($src, 'MOTHER IN')) { + return 'In Laws'; + } + if (str_contains($src, 'PARENT') || str_contains($src, 'FATHER') || str_contains($src, 'MOTHER')) { + return 'Parents'; + } + if (str_contains($src, 'SPOUSE') || str_contains($src, 'WIFE') || str_contains($src, 'HUSBAND')) { + return 'Spouse'; + } + if (str_contains($src, 'CHILD') || str_contains($src, 'SON') || str_contains($src, 'DAUGHTER')) { + return 'Children'; + } + if (str_contains($src, 'SIBLING') || str_contains($src, 'BROTHER') || str_contains($src, 'SISTER')) { + return 'Siblings'; + } + + return 'Others'; + } + + /** @param array $row */ + private function isSelf(array $row): bool + { + return $this->relationLabel($row) === 'Self'; + } + + /** @param array $row */ + private function diseaseLabel(array $row): string + { + $d = trim((string) ($row['disease_category'] ?? '')); + if ($d === '') { + $d = trim((string) ($row['diagnosis'] ?? '')); + } + + return $d !== '' ? strtoupper($d) : 'OTHERS'; + } + + private function amountBand(float $amt): string + { + if ($amt <= 25000) { + return '0-25000'; + } + if ($amt <= 50000) { + return '25001-50000'; + } + if ($amt <= 100000) { + return '50001-100000'; + } + if ($amt <= 150000) { + return '100001-150000'; + } + if ($amt <= 200000) { + return '150001-200000'; + } + if ($amt <= 300000) { + return '200001-300000'; + } + if ($amt <= 500000) { + return '300001-500000'; + } + + return 'Above 500000'; + } + + private function siBand(float $si): string + { + if ($si <= 200000) { + return '0-200000'; + } + if ($si <= 400000) { + return '200000-400000'; + } + if ($si <= 600000) { + return '400000-600000'; + } + + return 'Above 600000'; + } + + private function toFloat(mixed $value): float + { + if (is_numeric($value)) { + return (float) $value; + } + $s = preg_replace('/[^0-9.\-]/', '', (string) $value) ?? ''; + + return $s === '' || $s === '-' || $s === '.' ? 0.0 : (float) $s; + } + + private function parseFormattedNumber(mixed $value): float + { + return $this->toFloat($value); + } + + /** @param list> $rows */ + private function firstRow(array $rows): array + { + return $rows[0] ?? []; + } + + private function formatDate(mixed $value): string + { + if ($value === null || $value === '' || $value === '0000-00-00') { + return ''; + } + $ts = strtotime((string) $value); + + return $ts ? date('d-M-Y', $ts) : (string) $value; + } +} diff --git a/app/Libraries/MediAssistMisPdfService.php b/app/Libraries/MediAssistMisPdfService.php new file mode 100644 index 00000000..3a4ac20e --- /dev/null +++ b/app/Libraries/MediAssistMisPdfService.php @@ -0,0 +1,139 @@ + $report + * @return array{status:bool,message?:string,content?:string,filename?:string} + */ + public function generateFromReport(array $report, int $policyId): array + { + $vm = $report['view_model'] ?? $report; + $policyNo = trim((string) ($report['header']['policy_number'] ?? (string) $policyId)); + + $html = view('claims_mis_medi_assist', [ + 'report' => $report, + 'view_model' => $vm, + 'policy_id' => $policyId, + 'pdf_url' => '', + 'embed' => true, + ]); + + return $this->generate($html, $policyNo); + } + + /** + * @return array{status:bool,message?:string,content?:string,filename?:string} + */ + public function generate(string $html, string $policyNo): array + { + $safePolicy = preg_replace('/[^A-Za-z0-9_\-]+/', '_', $policyNo) ?: 'policy'; + $filename = 'MA_MIS_' . $safePolicy . '_' . date('Ymd') . '.pdf'; + + try { + $options = new Options(); + $options->set('isHtml5ParserEnabled', true); + $options->set('isRemoteEnabled', true); + $options->set('isFontSubsettingEnabled', true); + $options->set('defaultFont', 'DejaVu Sans'); + $options->setChroot([ + rtrim(ROOTPATH, '/\\'), + rtrim(FCPATH, '/\\'), + rtrim(WRITEPATH, '/\\'), + sys_get_temp_dir(), + ]); + + $dompdf = new Dompdf($options); + $dompdf->loadHtml($this->prepareHtml($html)); + $dompdf->setPaper('A4', 'landscape'); + $dompdf->render(); + + $content = $dompdf->output(); + if ($content === '' || $content === null) { + return ['status' => false, 'message' => 'PDF generation failed: empty output.']; + } + + return [ + 'status' => true, + 'content' => $content, + 'filename' => $filename, + ]; + } catch (\Throwable $e) { + log_message('error', 'MediAssistMisPdfService::generate failed | ' . $e->getMessage()); + + return ['status' => false, 'message' => 'PDF generation failed: ' . $e->getMessage()]; + } + } + + private function prepareHtml(string $html): string + { + $html = preg_replace('#]*>.*?#is', '', $html) ?? $html; + $html = preg_replace('/[\x{1F300}-\x{1FAFF}]/u', '', $html) ?? $html; + + $vars = [ + 'var(--blue)' => '#1f4e9c', + 'var(--lightblue)' => '#eaf1fb', + 'var(--header-blue)'=> '#dbe7f8', + 'var(--border)' => '#9fb8dd', + 'var(--row-alt)' => '#f4f7fc', + 'var(--red)' => '#e94b5c', + 'var(--text)' => '#222', + 'var(--muted)' => '#555', + ]; + $html = str_replace(array_keys($vars), array_values($vars), $html); + $html = preg_replace('#:root\s*\{[^}]*\}#is', '', $html) ?? $html; + + $html = preg_replace_callback( + '#(]*\bsrc=["\'])([^"\']+)(["\'][^>]*>)#i', + function (array $m): string { + $src = html_entity_decode($m[2], ENT_QUOTES); + $dataUri = $this->toDataUri($src); + + return $m[1] . ($dataUri ?: $src) . $m[3]; + }, + $html + ) ?? $html; + + return $html; + } + + private function toDataUri(string $path): ?string + { + $path = trim($path); + if ($path === '' || str_starts_with($path, 'data:')) { + return null; + } + + if (preg_match('#^file://#i', $path)) { + $path = preg_replace('#^file://#i', '', $path) ?? $path; + } + + if (!is_file($path) || !is_readable($path)) { + return null; + } + + $ext = strtolower(pathinfo($path, PATHINFO_EXTENSION)); + $mime = match ($ext) { + 'png' => 'image/png', + 'jpg', 'jpeg' => 'image/jpeg', + 'gif' => 'image/gif', + 'webp' => 'image/webp', + default => 'application/octet-stream', + }; + + $bytes = @file_get_contents($path); + if ($bytes === false || $bytes === '') { + return null; + } + + return 'data:' . $mime . ';base64,' . base64_encode($bytes); + } +} diff --git a/app/Libraries/MediAssistMisReportService.php b/app/Libraries/MediAssistMisReportService.php new file mode 100644 index 00000000..72466b71 --- /dev/null +++ b/app/Libraries/MediAssistMisReportService.php @@ -0,0 +1,1488 @@ + 'Paid', + 'doc_shortfall' => 'Denied due to document shortfall', + 'policy_exclusion' => 'Denied due to Policy Exclusion', + 'processed' => 'Processed', + 'in_process' => 'In Process', + ]; + + private const LANES = [ + 'ip_cashless', + 'ip_reimb', + 'op_cashless', + 'op_reimb', + ]; + + private const RELATIONS = [ + 'Self', 'Spouse', 'Child', 'Parent', 'Others', + ]; + + private const AGE_BANDS = [ + '0-5', '6-10', '11-15', '16-20', '21-25', '26-30', '31-35', '36-40', + '41-45', '46-50', '51-55', '56-60', '61-65', '66-70', '71-more', 'Not classified', + ]; + + private const UTIL_BUCKETS = [ + '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', 'Above 10', + ]; + + private const AMOUNT_BANDS = [ + 'Upto 10000', + '10001 - 25000', + '25001 – 50000', + '50001 – 75000', + '75001 – 100000', + '100001 – 200000', + '200001 – 300000', + '300001 – 400000', + '400001 - 500000', + '500001 - 750000', + '750001 - 1000000', + 'Above 1000000', + ]; + + private ClaimReportDashboardModel $kpiModel; + private ClaimDumpFileModel $dumpFileModel; + + public function __construct( + ?ClaimReportDashboardModel $kpiModel = null, + ?ClaimDumpFileModel $dumpFileModel = null + ) { + $this->kpiModel = $kpiModel ?? new ClaimReportDashboardModel(); + $this->dumpFileModel = $dumpFileModel ?? new ClaimDumpFileModel(); + } + + /** + * @return array{status:bool,message?:string,data?:array} + */ + public function build(int $policyId): array + { + if ($policyId <= 0) { + return ['status' => false, 'message' => 'client_policy_id is required.']; + } + + $db = db_connect(); + if (!$db->tableExists('claim_report') || !$db->tableExists(self::DUMP_TABLE)) { + return [ + 'status' => false, + 'message' => 'Required tables claim_report or claims_dump_medi_assist do not exist.', + ]; + } + + $dumpRows = $this->getLinkedDumpRows($policyId); + if ($dumpRows === []) { + return [ + 'status' => false, + 'message' => 'No Medi Assist dump rows linked via claim_report. Run sync: /util/claims-collection-report/sync', + ]; + } + + $policy = $db->table('client_policy cp') + ->select('cp.*, c.client_name, i.name AS insurer_name, t.name AS tpa_name') + ->join('clients c', 'c.id = cp.client_id', 'left') + ->join('insurers i', 'i.id = cp.insurer_id', 'left') + ->join('tpa t', 't.id = cp.tpa_id', 'left') + ->where('cp.id', $policyId) + ->get() + ->getRowArray(); + + if (!$policy) { + return ['status' => false, 'message' => 'Policy not found.']; + } + + $exposure = $this->firstRow($this->kpiModel->policy_exposure_summary($policyId)); + $premiumRow = $this->firstRow($this->kpiModel->premium_as_on_date($policyId)); + $livesRow = $this->firstRow($this->kpiModel->current_emp_lives($policyId)); + $experience = $this->firstRow($this->kpiModel->claims_experience_summary($policyId)); + + $premium = $this->parseFormattedNumber($premiumRow['premium_as_on_date'] ?? null); + $earned = $this->parseFormattedNumber($experience['earned_premium'] ?? null); + $lives = (int) ($livesRow['current_lives'] ?? 0); + + $policyStartRaw = $policy['policy_start_date'] ?? $exposure['policy_start_date'] ?? null; + $policyEndRaw = $policy['policy_end_date'] ?? $exposure['policy_end_date'] ?? null; + $startDate = $this->formatDateLong($policyStartRaw); + $endDate = $this->formatDateLong($policyEndRaw); + $reportAsOn = $this->formatDateShort($this->dumpFileModel->getGeneratedAtForPolicy($policyId) ?: date('Y-m-d')); + $uploadAt = $this->dumpFileModel->getGeneratedAtForPolicy($policyId) ?: date('d/m/Y g:i:s A'); + $runDays = $this->policyRunDays($policyStartRaw, $policyEndRaw); + + $statusAgg = $this->aggregateStatus($dumpRows); + $claimTypeAgg = $this->aggregateClaimTypes($dumpRows); + $pendingAgg = $this->aggregatePendingWith($dumpRows); + $ipFrequency = $this->buildIpClaimFrequency($dumpRows, $lives); + $errorsCount = $this->countClaimsInError($dumpRows); + $pendingSummary = $this->buildPendingSummary($dumpRows); + $savings = $this->buildSavings($dumpRows); + $topProviders = $this->buildTopProviders($dumpRows, 10); + $topAilments = $this->buildTopAilments($dumpRows, 10); + $beneficiary = $this->buildBeneficiary($dumpRows); + $ageBands = $this->buildAgeBands($dumpRows); + $utilEmp = $this->buildUtilization($dumpRows, true); + $utilDep = $this->buildUtilization($dumpRows, false); + $amountCashless = $this->buildAmountBands($dumpRows, 'ip_cashless'); + $amountReimb = $this->buildAmountBands($dumpRows, 'ip_reimb'); + $pendingDetail = $this->buildPendingDetail($dumpRows); + + $totalClaims = count($dumpRows); + $totalIncurred = $statusAgg['total']['incurred']; + $icrPremium = $premium > 0 ? round(($totalIncurred / $premium) * 100, 2) : 0.0; + $icrEarned = $earned > 0 ? round(($totalIncurred / $earned) * 100, 2) : 0.0; + $ipClaimCount = ($claimTypeAgg['ip']['total']['count'] ?? 0); + $frequency = $lives > 0 ? round(($ipClaimCount / $lives) * 100, 2) : 0.0; + + $data = [ + 'meta' => [ + 'policy_id' => $policyId, + 'report_as_on' => $reportAsOn, + 'units' => 'Actuals', + 'version' => self::VERSION, + 'generated_at' => date('d-M-Y'), + 'generated_by' => '', + 'upload_at' => $uploadAt, + ], + 'header' => [ + 'insurer_name' => trim((string) ($policy['insurer_name'] ?? $exposure['insurer_name'] ?? '')), + 'corporate_name' => trim((string) ($policy['client_name'] ?? '')), + 'policy_number' => trim((string) ($policy['policy_no'] ?? '')), + 'policy_holder' => trim((string) ($dumpRows[0]['policy_holder_name'] ?? $policy['client_name'] ?? '')), + 'policy_start' => $startDate, + 'policy_end' => $endDate, + 'policy_period' => trim($startDate . ' To ' . $endDate), + 'lives' => $lives, + 'total_premium' => $premium, + 'earned_premium' => $earned, + 'policy_run_days' => $runDays, + ], + 'index_policies' => [[ + 'policy_number' => trim((string) ($policy['policy_no'] ?? '')), + 'policy_holder' => trim((string) ($dumpRows[0]['policy_holder_name'] ?? $policy['client_name'] ?? '')), + 'policy_start' => $startDate, + 'policy_end' => $endDate, + 'lives' => $lives, + 'total_premium' => $premium, + 'earned_premium' => $earned, + 'policy_run_days' => $runDays, + ]], + 'portfolio_summary' => [ + 'lives' => $lives, + 'premium' => $premium, + 'premium_lakh' => $premium / 100000, + 'claims_count' => $totalClaims, + 'incurred' => $totalIncurred, + 'incurred_lakh' => $totalIncurred / 100000, + 'icr_premium' => $icrPremium, + 'icr_earned' => $icrEarned, + 'frequency' => $frequency, + 'report_date' => $reportAsOn, + ], + 'policy_lives' => [ + 'inception' => max(0, $lives), + 'addition' => 0, + 'deletion' => 0, + 'current' => $lives, + ], + 'policy_premium' => [ + 'first_time' => $premium, + 'addition' => 0.0, + 'deletion' => 0.0, + 'total' => $premium, + 'earned' => $earned, + ], + 'claim_status_rows' => $statusAgg['rows'], + 'claim_type_sections' => $claimTypeAgg, + 'ip_claim_frequency' => $ipFrequency, + 'claims_in_error' => ['count' => $errorsCount], + 'pending_intro' => $pendingSummary['intro'], + 'claims_pending_with' => $pendingAgg['rows'], + 'savings' => $savings, + 'top_providers' => $topProviders, + 'top_ailments' => $topAilments, + 'beneficiary' => $beneficiary, + 'age_bands' => $ageBands, + 'utilization_employees' => $utilEmp, + 'utilization_dependents' => $utilDep, + 'amount_bands_cashless' => $amountCashless, + 'amount_bands_reimbursement' => $amountReimb, + 'pending_detail' => $pendingDetail, + 'lives_movement_summary' => $this->buildLivesMovementSummary($lives), + 'premium_movement_summary' => $this->buildPremiumMovementSummary($premium), + 'lives_movement_monthly' => $this->buildEmptyMonthlyLives(), + 'premium_movement_monthly' => $this->buildEmptyMonthlyPremium($premium), + 'glossary' => $this->buildGlossary(), + 'dump_row_count' => count($dumpRows), + 'fmtNum' => static fn ($n, int $d = 0): string => self::fmtNum($n, $d), + 'fmtRs' => static fn ($n): string => self::fmtRs($n), + 'fmtPct' => static fn ($n, int $d = 2): string => self::fmtPct($n, $d), + ]; + + $data['view_model'] = $data; + + return ['status' => true, 'data' => $data]; + } + + /** + * @return list> + */ + public function getLinkedDumpRows(int $policyId): array + { + $db = db_connect(); + $reportRows = $db->table('claim_report') + ->select('source_row_id') + ->where('client_policy_id', $policyId) + ->where('is_active', 1) + ->where('source_table', self::DUMP_TABLE) + ->where('source_row_id IS NOT NULL', null, false) + ->get() + ->getResultArray(); + + if ($reportRows === []) { + return []; + } + + $dumpIds = array_values(array_unique(array_filter(array_map( + static fn ($r) => (int) ($r['source_row_id'] ?? 0), + $reportRows + )))); + + if ($dumpIds === []) { + return []; + } + + return $db->table(self::DUMP_TABLE) + ->whereIn('id', $dumpIds) + ->where('is_active', 1) + ->orderBy('id', 'ASC') + ->get() + ->getResultArray(); + } + + public static function fmtNum(mixed $value, int $decimals = 0): string + { + $n = is_numeric($value) ? (float) $value : 0.0; + if (class_exists(\NumberFormatter::class)) { + $fmt = new \NumberFormatter('en_IN', \NumberFormatter::DECIMAL); + $fmt->setAttribute(\NumberFormatter::MIN_FRACTION_DIGITS, $decimals); + $fmt->setAttribute(\NumberFormatter::MAX_FRACTION_DIGITS, $decimals); + + return $fmt->format($n) ?: number_format($n, $decimals); + } + + return number_format($n, $decimals); + } + + public static function fmtRs(mixed $value): string + { + return '₹' . self::fmtNum($value, 0); + } + + public static function fmtPct(mixed $value, int $decimals = 2): string + { + $n = is_numeric($value) ? (float) $value : 0.0; + + return number_format($n, $decimals) . '%'; + } + + // ----------------- aggregations ----------------- + + /** + * @param list> $rows + * @return array{rows:array>,total:array} + */ + private function aggregateStatus(array $rows): array + { + $buckets = []; + foreach (self::STATUS_KEYS as $key) { + $buckets[$key] = $this->emptyMetric(); + } + + foreach ($rows as $row) { + $key = $this->statusBucket((string) ($row['claim_status'] ?? ''), $row); + if (!isset($buckets[$key])) { + $key = 'in_process'; + } + $buckets[$key]['count']++; + $buckets[$key]['claim_amount'] += $this->claimAmount($row); + $buckets[$key]['incurred'] += $this->incurredAmount($row, $key); + } + + $total = $this->emptyMetric(); + foreach ($buckets as $b) { + $total['count'] += $b['count']; + $total['claim_amount'] += $b['claim_amount']; + $total['incurred'] += $b['incurred']; + } + + $out = []; + foreach (self::STATUS_KEYS as $key) { + $b = $buckets[$key]; + $out[$key] = $this->finalizeMetric($key, $b, $total, self::STATUS_LABELS[$key] ?? $key); + } + $out['total'] = $this->finalizeMetric('total', $total, $total, 'Total'); + + return ['rows' => $out, 'total' => $out['total']]; + } + + /** + * @param list> $rows + * @return array + */ + private function aggregateClaimTypes(array $rows): array + { + $grid = []; + foreach (['ip', 'op'] as $ipOp) { + $grid[$ipOp] = [ + 'cashless' => ['rows' => [], 'subtotal' => $this->emptyMetric()], + 'reimb' => ['rows' => [], 'subtotal' => $this->emptyMetric()], + 'total' => $this->emptyMetric(), + ]; + foreach (['cashless', 'reimb'] as $mode) { + foreach (self::STATUS_KEYS as $status) { + $grid[$ipOp][$mode]['rows'][$status] = $this->emptyMetric(); + } + } + } + $grand = $this->emptyMetric(); + + foreach ($rows as $row) { + $lane = $this->claimLane($row); + $ipOp = str_starts_with($lane, 'op_') ? 'op' : 'ip'; + $mode = str_contains($lane, 'cashless') ? 'cashless' : 'reimb'; + $status = $this->statusBucket((string) ($row['claim_status'] ?? ''), $row); + if (!in_array($status, self::STATUS_KEYS, true)) { + $status = 'in_process'; + } + + $claimAmt = $this->claimAmount($row); + $incurred = $this->incurredAmount($row, $status); + + $grid[$ipOp][$mode]['rows'][$status]['count']++; + $grid[$ipOp][$mode]['rows'][$status]['claim_amount'] += $claimAmt; + $grid[$ipOp][$mode]['rows'][$status]['incurred'] += $incurred; + + $grid[$ipOp][$mode]['subtotal']['count']++; + $grid[$ipOp][$mode]['subtotal']['claim_amount'] += $claimAmt; + $grid[$ipOp][$mode]['subtotal']['incurred'] += $incurred; + + $grid[$ipOp]['total']['count']++; + $grid[$ipOp]['total']['claim_amount'] += $claimAmt; + $grid[$ipOp]['total']['incurred'] += $incurred; + + $grand['count']++; + $grand['claim_amount'] += $claimAmt; + $grand['incurred'] += $incurred; + } + + $result = ['ip' => [], 'op' => [], 'grand_total' => $this->finalizeMetric('grand_total', $grand, $grand, 'Grand Total')]; + + foreach (['ip', 'op'] as $ipOp) { + foreach (['cashless', 'reimb'] as $mode) { + $sub = $grid[$ipOp][$mode]['subtotal']; + $statusRows = []; + foreach (self::STATUS_KEYS as $status) { + $statusRows[$status] = $this->finalizeMetric( + $status, + $grid[$ipOp][$mode]['rows'][$status], + $sub, + self::STATUS_LABELS[$status] ?? $status + ); + } + $result[$ipOp][$mode] = [ + 'status_rows' => $statusRows, + 'subtotal' => $this->finalizeMetric('subtotal', $sub, $sub, 'Subtotal'), + ]; + } + $result[$ipOp]['total'] = $this->finalizeMetric( + 'total', + $grid[$ipOp]['total'], + $grid[$ipOp]['total'], + 'Total (' . strtoupper($ipOp) . ')' + ); + } + + return $result; + } + + /** + * @param list> $rows + * @return array{rows:list>} + */ + private function aggregatePendingWith(array $rows): array + { + $keys = [ + '9.1 IP' => ['lanes' => ['ip_cashless', 'ip_reimb']], + '9.1.1 Cashless' => ['lanes' => ['ip_cashless']], + '9.1.2 Reimbursement' => ['lanes' => ['ip_reimb']], + '9.2 OP' => ['lanes' => ['op_cashless', 'op_reimb']], + '9.2.1 Cashless' => ['lanes' => ['op_cashless']], + '9.2.2 Reimbursement' => ['lanes' => ['op_reimb']], + ]; + + $emptyParty = static fn () => ['count' => 0, 'amount' => 0.0]; + $grid = []; + foreach ($keys as $label => $_) { + $grid[$label] = [ + 'label' => $label, + 'medi_assist' => $emptyParty(), + 'insurer' => $emptyParty(), + 'member' => $emptyParty(), + 'provider' => $emptyParty(), + 'total' => $emptyParty(), + ]; + } + + foreach ($rows as $row) { + $status = $this->statusBucket((string) ($row['claim_status'] ?? ''), $row); + if ($status !== 'in_process') { + continue; + } + $lane = $this->claimLane($row); + $amount = $this->incurredAmount($row, $status); + $matched = []; + foreach ($keys as $label => $cfg) { + if (in_array($lane, $cfg['lanes'], true)) { + $matched[] = $label; + } + } + foreach ($matched as $label) { + $grid[$label]['medi_assist']['count']++; + $grid[$label]['medi_assist']['amount'] += $amount; + $grid[$label]['total']['count']++; + $grid[$label]['total']['amount'] += $amount; + } + } + + $out = array_values($grid); + $out[] = $this->sumPendingRows('Total', $out); + + return ['rows' => $out]; + } + + /** + * @param list> $rows + * @return array + */ + private function buildIpClaimFrequency(array $rows, int $lives): array + { + $cashless = 0; + $reimb = 0; + foreach ($rows as $row) { + $lane = $this->claimLane($row); + if (!str_starts_with($lane, 'ip_')) { + continue; + } + if ($lane === 'ip_cashless') { + $cashless++; + } else { + $reimb++; + } + } + $total = $cashless + $reimb; + $rate = static fn (int $c): float => $lives > 0 ? round(($c / $lives) * 100, 2) : 0.0; + + return [ + 'cashless_count' => $cashless, + 'reimb_count' => $reimb, + 'total' => $total, + 'cashless_rate' => $rate($cashless), + 'reimb_rate' => $rate($reimb), + 'total_rate' => $rate($total), + ]; + } + + /** + * @param list> $rows + */ + private function countClaimsInError(array $rows): int + { + $count = 0; + foreach ($rows as $row) { + if (trim((string) ($row['error_group'] ?? '')) !== '') { + $count++; + } + } + + return $count; + } + + /** + * @param list> $rows + * @return array{intro:string,pending_count:int,pending_amount:float,error_count:int} + */ + private function buildPendingSummary(array $rows): array + { + $pendingCount = 0; + $pendingAmount = 0.0; + $errorCount = 0; + foreach ($rows as $row) { + $status = $this->statusBucket((string) ($row['claim_status'] ?? ''), $row); + if ($status === 'in_process') { + $pendingCount++; + $pendingAmount += $this->incurredAmount($row, $status); + } + if (trim((string) ($row['error_group'] ?? '')) !== '') { + $errorCount++; + } + } + + $intro = sprintf( + 'As of %s, %d Claims with an Incurred amount of %s are pending. Out of them %d claims are under error log category', + date('d M Y'), + $pendingCount, + self::fmtRs($pendingAmount), + $errorCount + ); + + return [ + 'intro' => $intro, + 'pending_count' => $pendingCount, + 'pending_amount' => $pendingAmount, + 'error_count' => $errorCount, + ]; + } + + /** + * @param list> $rows + * @return list> + */ + private function buildSavings(array $rows): array + { + $map = [ + ['group' => 'Policy Driven', 'label' => 'Proportionate Deduction', 'field' => 'deduction_amount_prorata'], + ['group' => 'Policy Driven', 'label' => 'Defined Benefit', 'field' => 'deduction_amount_excess_ailment'], + ['group' => 'Policy Driven', 'label' => 'Copay', 'field' => 'deduction_amount_copay'], + ['group' => 'Others', 'label' => 'Hospital Discount', 'field' => 'deduction_amount_hospital_discount'], + ['group' => 'Others', 'label' => 'Case Management', 'field' => null], + ['group' => 'Others', 'label' => '*Fraud Waste and Abuse', 'field' => 'deduction_amount_intimation_penalty'], + ]; + + $out = []; + foreach ($map as $item) { + $count = 0; + $amount = 0.0; + if ($item['field'] !== null) { + foreach ($rows as $row) { + $val = $this->toFloat($row[$item['field']] ?? 0); + if ($val > 0) { + $count++; + $amount += $val; + } + } + } + $out[] = [ + 'group' => $item['group'], + 'label' => $item['label'], + 'count' => $count, + 'amount' => $amount, + ]; + } + + return $out; + } + + /** + * @param list> $rows + * @return array{rows:list>,total:array} + */ + private function buildTopProviders(array $rows, int $limit): array + { + $map = []; + foreach ($rows as $row) { + if (!$this->isIpAnalyticsRow($row)) { + continue; + } + $name = trim((string) ($row['hospital_name'] ?? '')); + if ($name === '') { + $name = 'Unknown'; + } + $key = strtoupper($name); + if (!isset($map[$key])) { + $map[$key] = ['name' => $name, 'count' => 0, 'amount' => 0.0]; + } + $map[$key]['count']++; + $map[$key]['amount'] += $this->approvedAmount($row); + } + + uasort($map, static fn ($a, $b) => $b['amount'] <=> $a['amount']); + $top = array_slice(array_values($map), 0, $limit); + + $totalCount = array_sum(array_column($top, 'count')); + $totalAmt = array_sum(array_column($top, 'amount')); + $out = []; + foreach ($top as $item) { + $out[] = [ + 'name' => $item['name'], + 'count' => $item['count'], + 'count_pct' => $totalCount > 0 ? round(($item['count'] / $totalCount) * 100, 2) : 0.0, + 'approved_amount' => $item['amount'], + 'amount_pct' => $totalAmt > 0 ? round(($item['amount'] / $totalAmt) * 100, 2) : 0.0, + ]; + } + + return [ + 'rows' => $out, + 'total' => [ + 'count' => $totalCount, + 'count_pct' => 100.0, + 'approved_amount' => $totalAmt, + 'amount_pct' => 100.0, + ], + ]; + } + + /** + * @param list> $rows + * @return array{rows:list>,total:array} + */ + private function buildTopAilments(array $rows, int $limit): array + { + $map = []; + foreach ($rows as $row) { + if (!$this->isIpAnalyticsRow($row)) { + continue; + } + $name = trim((string) ($row['primary_icd_group'] ?? '')); + if ($name === '') { + $name = trim((string) ($row['primary_ailment_name'] ?? 'Others')); + } + if ($name === '') { + $name = 'Others'; + } + $key = strtoupper($name); + if (!isset($map[$key])) { + $map[$key] = ['name' => $name, 'count' => 0, 'amount' => 0.0]; + } + $map[$key]['count']++; + $map[$key]['amount'] += $this->approvedAmount($row); + } + + uasort($map, static fn ($a, $b) => $b['amount'] <=> $a['amount']); + $top = array_slice(array_values($map), 0, $limit); + + $totalCount = array_sum(array_column($top, 'count')); + $totalAmt = array_sum(array_column($top, 'amount')); + $out = []; + foreach ($top as $item) { + $out[] = [ + 'name' => $item['name'], + 'count' => $item['count'], + 'count_pct' => $totalCount > 0 ? round(($item['count'] / $totalCount) * 100, 2) : 0.0, + 'approved_amount' => $item['amount'], + 'amount_pct' => $totalAmt > 0 ? round(($item['amount'] / $totalAmt) * 100, 2) : 0.0, + ]; + } + + return [ + 'rows' => $out, + 'total' => [ + 'count' => $totalCount, + 'count_pct' => 100.0, + 'approved_amount' => $totalAmt, + 'amount_pct' => 100.0, + ], + ]; + } + + /** + * @param list> $rows + * @return array{rows:list>,total:array} + */ + private function buildBeneficiary(array $rows): array + { + $buckets = array_fill_keys(self::RELATIONS, ['count' => 0, 'amount' => 0.0]); + foreach ($rows as $row) { + if (!$this->isIpAnalyticsRow($row)) { + continue; + } + $rel = $this->relationLabel($row); + $buckets[$rel]['count']++; + $buckets[$rel]['amount'] += $this->approvedAmount($row); + } + + $totalCount = array_sum(array_column($buckets, 'count')); + $totalAmt = array_sum(array_column($buckets, 'amount')); + $out = []; + foreach (self::RELATIONS as $rel) { + $b = $buckets[$rel]; + $out[] = [ + 'relation' => $rel, + 'count' => $b['count'], + 'count_pct' => $totalCount > 0 ? round(($b['count'] / $totalCount) * 100, 2) : 0.0, + 'approved_amount' => $b['amount'], + 'amount_pct' => $totalAmt > 0 ? round(($b['amount'] / $totalAmt) * 100, 2) : 0.0, + ]; + } + + return [ + 'rows' => $out, + 'total' => [ + 'count' => $totalCount, + 'count_pct' => 100.0, + 'approved_amount' => $totalAmt, + 'amount_pct' => 100.0, + ], + ]; + } + + /** + * @param list> $rows + * @return array{rows:list>,total:array} + */ + private function buildAgeBands(array $rows): array + { + $buckets = []; + foreach (self::AGE_BANDS as $band) { + $buckets[$band] = ['lives' => 0, 'count' => 0, 'amount' => 0.0]; + } + + $seenLives = []; + foreach ($rows as $row) { + if (!$this->isIpAnalyticsRow($row)) { + continue; + } + $band = $this->ageBand($row); + if (!isset($buckets[$band])) { + $band = 'Not classified'; + } + $buckets[$band]['count']++; + $buckets[$band]['amount'] += $this->approvedAmount($row); + + $memberKey = trim((string) ($row['benef_maid'] ?? '')); + if ($memberKey === '') { + $memberKey = trim((string) ($row['benef_insurer_id'] ?? '')) . '|' . trim((string) ($row['benef_name'] ?? '')); + } + if ($memberKey !== '' && !isset($seenLives[$band][$memberKey])) { + $seenLives[$band][$memberKey] = true; + $buckets[$band]['lives']++; + } + } + + $totalCount = 0; + $totalLives = 0; + $totalAmt = 0.0; + $out = []; + foreach (self::AGE_BANDS as $band) { + $b = $buckets[$band]; + $totalCount += $b['count']; + $totalLives += $b['lives']; + $totalAmt += $b['amount']; + $out[] = [ + 'band' => $band, + 'lives' => $b['lives'], + 'count' => $b['count'], + 'count_pct' => 0.0, + 'approved_amount' => $b['amount'], + 'amount_pct' => 0.0, + ]; + } + foreach ($out as &$row) { + $row['count_pct'] = $totalCount > 0 ? round(($row['count'] / $totalCount) * 100, 2) : 0.0; + $row['amount_pct'] = $totalAmt > 0 ? round(($row['approved_amount'] / $totalAmt) * 100, 2) : 0.0; + } + unset($row); + + return [ + 'rows' => $out, + 'total' => [ + 'lives' => $totalLives, + 'count' => $totalCount, + 'count_pct' => 100.0, + 'approved_amount' => $totalAmt, + 'amount_pct' => 100.0, + ], + ]; + } + + /** + * @param list> $rows + * @return array{rows:list>,total:array} + */ + private function buildUtilization(array $rows, bool $employees): array + { + $byMember = []; + foreach ($rows as $row) { + if (!$this->isIpAnalyticsRow($row)) { + continue; + } + $isSelf = $this->relationLabel($row) === 'Self'; + if ($employees && !$isSelf) { + continue; + } + if (!$employees && $isSelf) { + continue; + } + $key = trim((string) ($row['pribenef_employee_code'] ?? '')); + if ($key === '') { + $key = trim((string) ($row['benef_maid'] ?? '')); + } + if ($key === '') { + $key = 'row:' . ($row['id'] ?? uniqid('', true)); + } + if (!isset($byMember[$key])) { + $byMember[$key] = ['count' => 0, 'amount' => 0.0]; + } + $byMember[$key]['count']++; + $byMember[$key]['amount'] += $this->approvedAmount($row); + } + + $bands = []; + foreach (self::UTIL_BUCKETS as $label) { + $bands[$label] = ['count' => 0, 'amount' => 0.0]; + } + foreach ($byMember as $member) { + $c = $member['count']; + $label = $c >= 11 ? 'Above 10' : (string) $c; + if (!isset($bands[$label])) { + $label = 'Above 10'; + } + $bands[$label]['count']++; + $bands[$label]['amount'] += $member['amount']; + } + + $totalMembers = array_sum(array_column($bands, 'count')); + $totalAmt = array_sum(array_column($bands, 'amount')); + $out = []; + foreach (self::UTIL_BUCKETS as $label) { + $b = $bands[$label]; + $out[] = [ + 'label' => $label, + 'member_count' => $b['count'], + 'count_pct' => $totalMembers > 0 ? round(($b['count'] / $totalMembers) * 100, 2) : 0.0, + 'approved_amount' => $b['amount'], + 'amount_pct' => $totalAmt > 0 ? round(($b['amount'] / $totalAmt) * 100, 2) : 0.0, + ]; + } + + return [ + 'rows' => $out, + 'total' => [ + 'member_count' => $totalMembers, + 'count_pct' => 100.0, + 'approved_amount' => $totalAmt, + 'amount_pct' => 100.0, + ], + ]; + } + + /** + * @param list> $rows + * @return array{rows:list>,total:array} + */ + private function buildAmountBands(array $rows, string $lane): array + { + $rels = self::RELATIONS; + $grid = []; + foreach (self::AMOUNT_BANDS as $band) { + $grid[$band] = [ + 'relations' => array_fill_keys($rels, ['count' => 0, 'amount' => 0.0]), + 'total' => ['count' => 0, 'amount' => 0.0], + ]; + } + + foreach ($rows as $row) { + if ($this->claimLane($row) !== $lane) { + continue; + } + if (!$this->isIpAnalyticsRow($row)) { + continue; + } + $amt = $this->approvedAmount($row); + $band = $this->amountBand($amt); + $rel = $this->relationLabel($row); + if (!isset($grid[$band])) { + continue; + } + $grid[$band]['relations'][$rel]['count']++; + $grid[$band]['relations'][$rel]['amount'] += $amt; + $grid[$band]['total']['count']++; + $grid[$band]['total']['amount'] += $amt; + } + + $grandCount = 0; + $grandAmt = 0.0; + $relTotals = array_fill_keys($rels, ['count' => 0, 'amount' => 0.0]); + $out = []; + + foreach (self::AMOUNT_BANDS as $band) { + $g = $grid[$band]; + $grandCount += $g['total']['count']; + $grandAmt += $g['total']['amount']; + foreach ($rels as $rel) { + $relTotals[$rel]['count'] += $g['relations'][$rel]['count']; + $relTotals[$rel]['amount'] += $g['relations'][$rel]['amount']; + } + $out[] = [ + 'band' => $band, + 'relations' => $g['relations'], + 'total' => $g['total'] + ['pct' => 0.0], + ]; + } + + foreach ($out as &$row) { + $row['total']['pct'] = $grandCount > 0 + ? round(($row['total']['count'] / $grandCount) * 100, 2) + : 0.0; + } + unset($row); + + return [ + 'rows' => $out, + 'total' => [ + 'relations' => $relTotals, + 'count' => $grandCount, + 'amount' => $grandAmt, + 'pct' => 100.0, + ], + ]; + } + + /** + * @param list> $rows + * @return array{rows:list>,totals:array} + */ + private function buildPendingDetail(array $rows): array + { + $labels = [ + 'IP' => [ + 'Cashless' => [ + 'A.1.1 Documents awaited — Intimated to Insurer', + 'A.1.2 In process - Decision pending — Intimated to Insurer', + 'A.1.3 In process - Denial pending', + 'A.1.4 In process - Payment pending — Intimated to Insurer', + 'A.1.4 In process - Payment pending — Member Addition', + ], + 'Reimbursement' => [ + 'A.1.1 Documents awaited — Intimated to Insurer', + 'A.1.2 In process - Decision pending — Intimated to Insurer', + 'A.1.3 In process - Denial pending — Intimated to Insurer', + 'A.1.4 In process - Payment pending — Intimated to Insurer', + ], + ], + ]; + + $emptyCounts = static fn (): array => [ + 'medi_assist' => 0, + 'insurer' => 0, + 'member' => 0, + 'provider' => 0, + 'total' => 0, + ]; + + $rowsOut = []; + $grand = $emptyCounts(); + + foreach ($labels['IP'] as $mode => $items) { + $rowsOut[] = ['label' => $mode, 'is_group' => true, 'counts' => $emptyCounts()]; + $subtotal = $emptyCounts(); + foreach ($items as $itemLabel) { + $counts = $emptyCounts(); + $rowsOut[] = ['label' => $itemLabel, 'is_group' => false, 'counts' => $counts]; + } + $rowsOut[] = ['label' => 'Subtotal', 'is_group' => true, 'counts' => $subtotal]; + } + + $pendingCount = 0; + foreach ($rows as $row) { + if ($this->statusBucket((string) ($row['claim_status'] ?? ''), $row) === 'in_process') { + $pendingCount++; + } + } + if ($pendingCount > 0 && isset($rowsOut[1])) { + $rowsOut[1]['counts']['medi_assist'] = $pendingCount; + $rowsOut[1]['counts']['total'] = $pendingCount; + $grand['medi_assist'] = $pendingCount; + $grand['total'] = $pendingCount; + } + + return ['rows' => $rowsOut, 'totals' => $grand]; + } + + /** + * @return array + */ + private function buildLivesMovementSummary(int $lives): array + { + return [ + 'rows' => [ + ['particular' => 'Inception Lives', 'inception_addition' => 0, 'deletion' => null, 'current' => 0], + ['particular' => 'Addition - Inception Lives', 'inception_addition' => $lives, 'deletion' => null, 'current' => $lives], + ['particular' => 'Addition - New', 'inception_addition' => 0, 'deletion' => null, 'current' => 0], + ['particular' => 'Deletion', 'inception_addition' => null, 'deletion' => 0, 'current' => 0], + ], + 'total' => [ + 'inception_addition' => $lives, + 'deletion' => 0, + 'current' => $lives, + ], + ]; + } + + /** + * @return array + */ + private function buildPremiumMovementSummary(float $premium): array + { + return [ + 'rows' => [ + ['particular' => 'Opening Premium - Inception', 'premium' => $premium, 'refund' => null, 'total' => $premium], + ['particular' => 'Addition', 'premium' => 0.0, 'refund' => null, 'total' => 0.0], + ['particular' => 'Deletion', 'premium' => null, 'refund' => 0.0, 'total' => 0.0], + ], + 'total' => [ + 'premium' => $premium, + 'refund' => 0.0, + 'total' => $premium, + ], + ]; + } + + /** + * @return array + */ + private function buildEmptyMonthlyLives(): array + { + $particulars = [ + 'Inception Lives', + 'Addition - Inception Lives', + 'Addition - New', + 'Deletion', + ]; + $relations = [ + 'employee', 'spouse', 'children', + 'father', 'mother', 'siblings', 'others', + ]; + $rows = []; + for ($m = 1; $m <= 12; $m++) { + foreach ($particulars as $particular) { + $row = ['month' => 'M' . $m, 'particular' => $particular]; + foreach ($relations as $rel) { + $row[$rel . '_add'] = 0; + $row[$rel . '_del'] = $particular === 'Deletion' ? 0 : null; + } + $rows[] = $row; + } + } + + $total = ['month' => '', 'particular' => 'Total']; + foreach ($relations as $rel) { + $total[$rel . '_add'] = 0; + $total[$rel . '_del'] = 0; + } + + return ['rows' => $rows, 'total' => $total]; + } + + /** + * @return array + */ + private function buildEmptyMonthlyPremium(float $closingPremium): array + { + $rows = []; + for ($m = 1; $m <= 12; $m++) { + if ($m === 1) { + $rows[] = ['month' => 'Month-1', 'particular' => 'Opening Premium - Inception', 'premium' => $closingPremium, 'refund' => null, 'total' => $closingPremium]; + } + $rows[] = ['month' => 'Month-' . $m, 'particular' => 'Addition', 'premium' => 0.0, 'refund' => null, 'total' => 0.0]; + $rows[] = ['month' => 'Month-' . $m, 'particular' => 'Deletion', 'premium' => null, 'refund' => 0.0, 'total' => 0.0]; + } + + return [ + 'rows' => $rows, + 'total' => [ + 'month' => '', + 'particular' => 'Closing Premium', + 'premium' => $closingPremium, + 'refund' => 0.0, + 'total' => $closingPremium, + ], + ]; + } + + /** + * @return list + */ + private function buildGlossary(): array + { + return [ + ['label' => '1.0 Policy Lives', 'description' => 'Details of insured members.'], + ['label' => '1.1 At Inception & Addition', 'description' => 'Total lives at start and added during policy.'], + ['label' => '1.1.1 At Inception', 'description' => 'Lives covered from policy inception date.'], + ['label' => '1.1.2 Addition', 'description' => 'Lives added via endorsement.'], + ['label' => '1.2 Deletion', 'description' => 'Lives removed via endorsement.'], + ['label' => '1.3 Current Lives', 'description' => 'At inception + additions - deletions.'], + ['label' => '2.0 Policy Premium', 'description' => 'Breakdown of premium values.'], + ['label' => '2.1 First Time', 'description' => 'Initial premium.'], + ['label' => '2.2 Addition', 'description' => 'Premium added via endorsement.'], + ['label' => '2.3 Deletion', 'description' => 'Premium reduced via endorsement.'], + ['label' => '2.4 Total Premium', 'description' => 'First + Additions - Deletions.'], + ['label' => '2.5 Earned Premium', 'description' => 'Premium applicable to elapsed policy period.'], + ['label' => '3.0 Claim Status', 'description' => 'Indicates processing stage of claims.'], + ['label' => '4 IPD Cashless', 'description' => 'In-patient claims where treatment cost is directly settled with the provider as per policy terms.'], + ['label' => '4.1 Paid', 'description' => 'Payment completed and details available.'], + ['label' => '4.2 Denied – Document Shortfall', 'description' => 'Denied due to missing documents.'], + ['label' => '4.3 Denied – Inadmissibility', 'description' => 'Denied as per policy exclusions or inadmissible conditions.'], + ['label' => '4.4 Processed', 'description' => 'Claims where processing is complete and ready for payment upload.'], + ['label' => '4.5 In Process', 'description' => 'Under review, investigation, or awaiting inputs.'], + ['label' => '5 IPD Reimbursement', 'description' => 'In-patient claims where the insured pays first and is reimbursed later as per policy terms.'], + ['label' => '6 OPD Cashless', 'description' => 'Out-patient claims where the provider is paid directly.'], + ['label' => '7 OPD Reimbursement', 'description' => 'Out-patient claims where the insured pays and is reimbursed.'], + ['label' => '9 Pending With', 'description' => 'Claims pending with Medi Assist, Insurer, Member, or Provider.'], + ['label' => '8.1 IPD Claim Count', 'description' => 'Total number of IPD claims.'], + ['label' => '8.2 Claims per 100 Lives (%)', 'description' => 'Claim frequency per 100 insured lives.'], + ['label' => '10 Claims that are in Error', 'description' => 'Claims that are in Error'], + ]; + } + + // ----------------- helpers ----------------- + + /** @return array{count:int,claim_amount:float,incurred:float} */ + private function emptyMetric(): array + { + return ['count' => 0, 'claim_amount' => 0.0, 'incurred' => 0.0]; + } + + /** + * @param array{count:int,claim_amount:float,incurred:float} $metric + * @param array{count:int,claim_amount:float,incurred:float} $total + * @return array + */ + private function finalizeMetric(string $key, array $metric, array $total, string $label): array + { + return [ + 'key' => $key, + 'label' => $label, + 'count' => $metric['count'], + 'count_pct' => $total['count'] > 0 ? round(($metric['count'] / $total['count']) * 100, 2) : 0.0, + 'claim_amount' => $metric['claim_amount'], + 'claim_amount_pct' => $total['claim_amount'] > 0 + ? round(($metric['claim_amount'] / $total['claim_amount']) * 100, 2) + : 0.0, + 'incurred' => $metric['incurred'], + 'incurred_pct' => $total['incurred'] > 0 + ? round(($metric['incurred'] / $total['incurred']) * 100, 2) + : 0.0, + ]; + } + + /** + * @param list> $rows + * @return array + */ + private function sumPendingRows(string $label, array $rows): array + { + $emptyParty = static fn () => ['count' => 0, 'amount' => 0.0]; + $sum = [ + 'label' => $label, + 'medi_assist' => $emptyParty(), + 'insurer' => $emptyParty(), + 'member' => $emptyParty(), + 'provider' => $emptyParty(), + 'total' => $emptyParty(), + ]; + foreach ($rows as $row) { + if (($row['label'] ?? '') === $label) { + continue; + } + foreach (['medi_assist', 'insurer', 'member', 'provider', 'total'] as $party) { + $sum[$party]['count'] += (int) ($row[$party]['count'] ?? 0); + $sum[$party]['amount'] += (float) ($row[$party]['amount'] ?? 0); + } + } + + return $sum; + } + + /** @param array $row */ + private function statusBucket(string $status, array $row): string + { + $s = strtoupper(trim(str_replace(['_', '-'], ' ', $status))); + $s = preg_replace('/\s+/', ' ', $s) ?? $s; + $denial = strtoupper(trim( + (string) ($row['denial_short_description'] ?? '') . ' ' + . (string) ($row['denial_description'] ?? '') + )); + + if ( + str_contains($s, 'DENIED') + || str_contains($s, 'REJECT') + || str_contains($s, 'DENIAL') + || str_contains($s, 'CANCEL') + ) { + if ( + str_contains($denial, 'DOCUMENT') + || str_contains($denial, 'SHORTFALL') + || str_contains($s, 'DOCUMENT') + || str_contains($s, 'SHORTFALL') + || str_contains($s, 'INFORMATION AWAITED') + || str_contains($s, 'DEFICIEN') + ) { + return 'doc_shortfall'; + } + + return 'policy_exclusion'; + } + + if (str_contains($s, 'PAID') || str_contains($s, 'SETTLED') || $s === 'CLOSED') { + return 'paid'; + } + + if (str_contains($s, 'PROCESSED') || str_contains($s, 'DEBIT NOTE')) { + return 'processed'; + } + + return 'in_process'; + } + + /** @param array $row */ + private function claimLane(array $row): string + { + $type = strtolower(trim((string) ($row['claim_type'] ?? ''))); + $sub = strtolower(trim((string) ($row['claim_sub_type'] ?? ''))); + $src = trim($type . ' ' . $sub); + if ($src === '' && trim((string) ($row['claim_mode_of_rcpt'] ?? '')) !== '') { + $src = strtolower((string) $row['claim_mode_of_rcpt']); + } + + $isOp = (bool) preg_match('/\b(opd|op)\b/i', $src); + $isCashless = str_contains($src, 'cashless') + || str_contains($src, 'cash') + || strtoupper(trim((string) ($row['is_cashlessanywhere'] ?? ''))) === 'Y'; + + if ($isOp) { + return $isCashless ? 'op_cashless' : 'op_reimb'; + } + + return $isCashless ? 'ip_cashless' : 'ip_reimb'; + } + + /** @param array $row */ + private function claimAmount(array $row): float + { + return $this->toFloat($row['claim_amount'] ?? 0); + } + + /** @param array $row */ + private function incurredAmount(array $row, string $statusBucket): float + { + if (in_array($statusBucket, ['doc_shortfall', 'policy_exclusion'], true)) { + return 0.0; + } + + $incurred = $this->toFloat($row['incurred_amount'] ?? null); + if ($incurred > 0) { + return $incurred; + } + + return $this->toFloat($row['claim_approved_amount'] ?? 0); + } + + /** @param array $row */ + private function approvedAmount(array $row): float + { + $approved = $this->toFloat($row['claim_approved_amount'] ?? 0); + if ($approved > 0) { + return $approved; + } + + return $this->incurredAmount($row, $this->statusBucket((string) ($row['claim_status'] ?? ''), $row)); + } + + /** @param array $row */ + private function isIpAnalyticsRow(array $row): bool + { + if (!str_starts_with($this->claimLane($row), 'ip_')) { + return false; + } + $status = $this->statusBucket((string) ($row['claim_status'] ?? ''), $row); + + return in_array($status, ['paid', 'processed'], true); + } + + /** @param array $row */ + private function relationLabel(array $row): string + { + $r = strtoupper(trim((string) ($row['benef_relation'] ?? ''))); + if ($r === '' || str_contains($r, 'SELF') || str_contains($r, 'EMPLOYEE')) { + return 'Self'; + } + if (str_contains($r, 'SPOUSE') || str_contains($r, 'WIFE') || str_contains($r, 'HUSBAND')) { + return 'Spouse'; + } + if (str_contains($r, 'CHILD') || str_contains($r, 'SON') || str_contains($r, 'DAUGHTER')) { + return 'Child'; + } + if (str_contains($r, 'PARENT') || str_contains($r, 'FATHER') || str_contains($r, 'MOTHER') || str_contains($r, 'IN LAW') || str_contains($r, 'IN-LAW')) { + return 'Parent'; + } + + return 'Others'; + } + + /** @param array $row */ + private function ageBand(array $row): string + { + $age = (int) $this->toFloat($row['benef_age'] ?? 0); + if ($age <= 0) { + return 'Not classified'; + } + if ($age <= 5) { + return '0-5'; + } + if ($age <= 10) { + return '6-10'; + } + if ($age <= 15) { + return '11-15'; + } + if ($age <= 20) { + return '16-20'; + } + if ($age <= 25) { + return '21-25'; + } + if ($age <= 30) { + return '26-30'; + } + if ($age <= 35) { + return '31-35'; + } + if ($age <= 40) { + return '36-40'; + } + if ($age <= 45) { + return '41-45'; + } + if ($age <= 50) { + return '46-50'; + } + if ($age <= 55) { + return '51-55'; + } + if ($age <= 60) { + return '56-60'; + } + if ($age <= 65) { + return '61-65'; + } + if ($age <= 70) { + return '66-70'; + } + + return '71-more'; + } + + private function amountBand(float $amt): string + { + if ($amt <= 10000) { + return 'Upto 10000'; + } + if ($amt <= 25000) { + return '10001 - 25000'; + } + if ($amt <= 50000) { + return '25001 – 50000'; + } + if ($amt <= 75000) { + return '50001 – 75000'; + } + if ($amt <= 100000) { + return '75001 – 100000'; + } + if ($amt <= 200000) { + return '100001 – 200000'; + } + if ($amt <= 300000) { + return '200001 – 300000'; + } + if ($amt <= 400000) { + return '300001 – 400000'; + } + if ($amt <= 500000) { + return '400001 - 500000'; + } + if ($amt <= 750000) { + return '500001 - 750000'; + } + if ($amt <= 1000000) { + return '750001 - 1000000'; + } + + return 'Above 1000000'; + } + + private function policyRunDays(mixed $start, mixed $end): int + { + $startTs = strtotime((string) $start); + $endTs = strtotime((string) $end); + if ($startTs === false || $endTs === false || $endTs < $startTs) { + return 0; + } + + return (int) floor(($endTs - $startTs) / 86400) + 1; + } + + private function toFloat(mixed $value): float + { + if (is_numeric($value)) { + return (float) $value; + } + $s = preg_replace('/[^0-9.\-]/', '', (string) $value) ?? ''; + + return $s === '' || $s === '-' || $s === '.' ? 0.0 : (float) $s; + } + + private function parseFormattedNumber(mixed $value): float + { + return $this->toFloat($value); + } + + /** @param list> $rows */ + private function firstRow(array $rows): array + { + return $rows[0] ?? []; + } + + private function formatDateLong(mixed $value): string + { + if ($value === null || $value === '' || $value === '0000-00-00') { + return ''; + } + $ts = strtotime((string) $value); + + return $ts ? date('F j, Y', $ts) : (string) $value; + } + + private function formatDateShort(mixed $value): string + { + if ($value === null || $value === '' || $value === '0000-00-00') { + return date('d M Y'); + } + $ts = strtotime((string) $value); + + return $ts ? date('d M Y', $ts) : (string) $value; + } +} diff --git a/app/Libraries/VidalMisPdfService.php b/app/Libraries/VidalMisPdfService.php new file mode 100644 index 00000000..a527b233 --- /dev/null +++ b/app/Libraries/VidalMisPdfService.php @@ -0,0 +1,139 @@ + $report + * @return array{status:bool,message?:string,content?:string,filename?:string} + */ + public function generateFromReport(array $report, int $policyId): array + { + $vm = $report['view_model'] ?? $report; + $policyNo = trim((string) ($report['header']['policy_number'] ?? (string) $policyId)); + + $html = view('claims_mis_vidal', [ + 'report' => $report, + 'view_model' => $vm, + 'policy_id' => $policyId, + 'pdf_url' => '', + 'embed' => true, + ]); + + return $this->generate($html, $policyNo); + } + + /** + * @return array{status:bool,message?:string,content?:string,filename?:string} + */ + public function generate(string $html, string $policyNo): array + { + $safePolicy = preg_replace('/[^A-Za-z0-9_\-]+/', '_', $policyNo) ?: 'policy'; + $filename = 'VIDAL_MIS_' . $safePolicy . '_' . date('Ymd') . '.pdf'; + + try { + $options = new Options(); + $options->set('isHtml5ParserEnabled', true); + $options->set('isRemoteEnabled', true); + $options->set('isFontSubsettingEnabled', true); + $options->set('defaultFont', 'DejaVu Sans'); + $options->setChroot([ + rtrim(ROOTPATH, '/\\'), + rtrim(FCPATH, '/\\'), + rtrim(WRITEPATH, '/\\'), + sys_get_temp_dir(), + ]); + + $dompdf = new Dompdf($options); + $dompdf->loadHtml($this->prepareHtml($html)); + $dompdf->setPaper('A4', 'portrait'); + $dompdf->render(); + + $content = $dompdf->output(); + if ($content === '' || $content === null) { + return ['status' => false, 'message' => 'PDF generation failed: empty output.']; + } + + return [ + 'status' => true, + 'content' => $content, + 'filename' => $filename, + ]; + } catch (\Throwable $e) { + log_message('error', 'VidalMisPdfService::generate failed | ' . $e->getMessage()); + + return ['status' => false, 'message' => 'PDF generation failed: ' . $e->getMessage()]; + } + } + + private function prepareHtml(string $html): string + { + $html = preg_replace('#]*>.*?#is', '', $html) ?? $html; + $html = preg_replace('/[\x{1F300}-\x{1FAFF}]/u', '', $html) ?? $html; + + $vars = [ + 'var(--blue)' => '#0072bc', + 'var(--header-blue)' => '#dbe9f5', + 'var(--group-header)' => '#b9d6ec', + 'var(--border)' => '#888', + 'var(--text)' => '#111', + 'var(--muted)' => '#444', + 'var(--male)' => '#4472c4', + 'var(--female)' => '#ed7d31', + ]; + $html = str_replace(array_keys($vars), array_values($vars), $html); + $html = preg_replace('#:root\s*\{[^}]*\}#is', '', $html) ?? $html; + + $html = preg_replace_callback( + '#(]*\bsrc=["\'])([^"\']+)(["\'][^>]*>)#i', + function (array $m): string { + $src = html_entity_decode($m[2], ENT_QUOTES); + $dataUri = $this->toDataUri($src); + + return $m[1] . ($dataUri ?: $src) . $m[3]; + }, + $html + ) ?? $html; + + return $html; + } + + private function toDataUri(string $path): ?string + { + $path = trim($path); + if ($path === '' || str_starts_with($path, 'data:')) { + return null; + } + + if (preg_match('#^file://#i', $path)) { + $path = preg_replace('#^file://#i', '', $path) ?? $path; + } + + if (!is_file($path) || !is_readable($path)) { + return null; + } + + $ext = strtolower(pathinfo($path, PATHINFO_EXTENSION)); + $mime = match ($ext) { + 'png' => 'image/png', + 'jpg', 'jpeg' => 'image/jpeg', + 'gif' => 'image/gif', + 'webp' => 'image/webp', + default => 'application/octet-stream', + }; + + $bytes = @file_get_contents($path); + if ($bytes === false || $bytes === '') { + return null; + } + + return 'data:' . $mime . ';base64,' . base64_encode($bytes); + } +} diff --git a/app/Libraries/VidalMisReportService.php b/app/Libraries/VidalMisReportService.php new file mode 100644 index 00000000..50a96b89 --- /dev/null +++ b/app/Libraries/VidalMisReportService.php @@ -0,0 +1,1616 @@ +70', + ]; + + private const AMOUNT_BANDS = [ + '00K-10K', '10K-20K', '20K-30K', '30K-40K', '40K-50K', + '50K-60K', '60K-70K', '70K-80K', '80K-90K', '90K-100K', '>100K', + ]; + + private const TAT_BANDS = [ + '0-7', '8-15', '16-30', '31-45', '46-60', '61-90', '>90', + ]; + + private const TOC = [ + 'Incurred Claims Ratio (ICR)', + 'Hospitalisation Type Details', + 'Member Details - Relationship & Gender wise', + 'Member Details - Age Band & Relationship wise', + 'Claims Approved - Age Band & Relationship wise', + 'Claims Approved - Amount Band & Relationship wise', + 'Claims Approved - Ailment wise', + 'Top 15 Hospital wise utilization', + 'Claims Approved - Cashless & Member Summary', + 'Turn Around Time (TAT)', + 'Month On Month', + 'Payout Ratio', + 'Policy Details', + ]; + + private ClaimReportDashboardModel $kpiModel; + private ClaimDumpFileModel $dumpFileModel; + + public function __construct( + ?ClaimReportDashboardModel $kpiModel = null, + ?ClaimDumpFileModel $dumpFileModel = null + ) { + $this->kpiModel = $kpiModel ?? new ClaimReportDashboardModel(); + $this->dumpFileModel = $dumpFileModel ?? new ClaimDumpFileModel(); + } + + /** + * @return array{status:bool,message?:string,data?:array} + */ + public function build(int $policyId): array + { + if ($policyId <= 0) { + return ['status' => false, 'message' => 'client_policy_id is required.']; + } + + $db = db_connect(); + if (!$db->tableExists('claim_report') || !$db->tableExists(self::DUMP_TABLE)) { + return [ + 'status' => false, + 'message' => 'Required tables claim_report or claims_dump_vidal do not exist.', + ]; + } + + $dumpRows = $this->getLinkedDumpRows($policyId); + if ($dumpRows === []) { + return [ + 'status' => false, + 'message' => 'No Vidal dump rows linked via claim_report. Run sync: /util/claims-collection-report/sync', + ]; + } + + $policy = $db->table('client_policy cp') + ->select('cp.*, c.client_name, i.name AS insurer_name, t.name AS tpa_name') + ->join('clients c', 'c.id = cp.client_id', 'left') + ->join('insurers i', 'i.id = cp.insurer_id', 'left') + ->join('tpa t', 't.id = cp.tpa_id', 'left') + ->where('cp.id', $policyId) + ->get() + ->getRowArray(); + + if (!$policy) { + return ['status' => false, 'message' => 'Policy not found.']; + } + + $exposure = $this->firstRow($this->kpiModel->policy_exposure_summary($policyId)); + $premiumRow = $this->firstRow($this->kpiModel->premium_as_on_date($policyId)); + $livesRow = $this->firstRow($this->kpiModel->current_emp_lives($policyId)); + $experience = $this->firstRow($this->kpiModel->claims_experience_summary($policyId)); + + $premium = $this->parseFormattedNumber($premiumRow['premium_as_on_date'] ?? null); + $earned = $this->parseFormattedNumber($experience['earned_premium'] ?? null); + $lives = (int) ($livesRow['current_lives'] ?? 0); + + $firstDump = $dumpRows[0]; + $startRaw = $policy['policy_start_date'] + ?? $exposure['policy_start_date'] + ?? ($firstDump['policy_start_date'] ?? null); + $endRaw = $policy['policy_end_date'] + ?? $exposure['policy_end_date'] + ?? ($firstDump['policy_end_date'] ?? null); + + $generatedAt = $this->dumpFileModel->getGeneratedAtForPolicy($policyId); + $generatedAtDisplay = $generatedAt + ? $this->formatDateTimeDisplay($generatedAt) + : date('d-M-Y H:i'); + + $corporateName = trim((string) ( + $firstDump['corporate_name'] + ?? $policy['client_name'] + ?? '' + )); + $policyNumber = trim((string) ( + $firstDump['insurer_policy_number'] + ?? $policy['policy_no'] + ?? '' + )); + + $icr = $this->buildIcr($dumpRows, $earned, $lives); + $hospitalization = $this->buildHospitalization($dumpRows); + $enrollment = $this->loadEnrollmentMembers($policyId, $dumpRows, $lives); + $memberGender = $this->buildMemberGender($enrollment); + $memberAge = $this->buildMemberAge($enrollment); + $claimsAge = $this->buildClaimsByAgeRelation($dumpRows); + $claimsAmount = $this->buildClaimsByAmountRelation($dumpRows); + $ailments = $this->buildTopAilments($dumpRows, 15); + $hospitals = $this->buildTopHospitals($dumpRows, 15); + $cmSummary = $this->buildCashlessMemberSummary($dumpRows); + $tat = $this->buildTat($dumpRows); + $mom = $this->buildMonthOnMonth($dumpRows); + $payout = $this->buildPayout($dumpRows); + + $data = [ + 'meta' => [ + 'policy_id' => $policyId, + 'version' => self::VERSION, + 'tpa_name' => trim((string) ($policy['tpa_name'] ?? 'Vidal Health')), + 'generated_at' => $generatedAtDisplay, + 'client_name' => trim((string) ($policy['client_name'] ?? '')), + ], + 'header' => [ + 'corporate_name' => $corporateName, + 'policy_number' => $policyNumber, + 'start' => $this->formatDate($startRaw), + 'end' => $this->formatDate($endRaw), + 'premium' => $premium, + 'earned' => $earned, + 'lives' => $lives > 0 ? $lives : (int) ($memberGender['total']['total'] ?? 0), + 'generated_by' => '', + 'generated_at' => $generatedAtDisplay, + 'insurer_name' => trim((string) ( + $firstDump['insurance_company_name'] + ?? $policy['insurer_name'] + ?? $exposure['insurer_name'] + ?? '' + )), + ], + 'toc' => self::TOC, + 'icr' => $icr, + 'hospitalization' => $hospitalization, + 'member_gender' => $memberGender, + 'member_age' => $memberAge, + 'claims_age' => $claimsAge, + 'claims_amount' => $claimsAmount, + 'ailments' => $ailments, + 'hospitals' => $hospitals, + 'cashless_member_summary' => $cmSummary, + 'tat' => $tat, + 'month_on_month' => $mom, + 'payout' => $payout, + 'chart_gender' => $this->buildChartGender($memberGender), + 'chart_age' => $this->buildChartAge($memberAge), + 'dump_row_count' => count($dumpRows), + ]; + + $data['view_model'] = $data; + + return ['status' => true, 'data' => $data]; + } + + /** + * @return list> + */ + public function getLinkedDumpRows(int $policyId): array + { + $db = db_connect(); + $reportRows = $db->table('claim_report') + ->select('source_row_id') + ->where('client_policy_id', $policyId) + ->where('is_active', 1) + ->where('source_table', self::DUMP_TABLE) + ->where('source_row_id IS NOT NULL', null, false) + ->get() + ->getResultArray(); + + if ($reportRows === []) { + return []; + } + + $dumpIds = array_values(array_unique(array_filter(array_map( + static fn ($r) => (int) ($r['source_row_id'] ?? 0), + $reportRows + )))); + + if ($dumpIds === []) { + return []; + } + + return $db->table(self::DUMP_TABLE) + ->whereIn('id', $dumpIds) + ->where('is_active', 1) + ->orderBy('id', 'ASC') + ->get() + ->getResultArray(); + } + + // ------------------------------------------------------------------------- + // ICR + // ------------------------------------------------------------------------- + + /** + * @param list> $rows + * @return array{rows:list>,summary:array} + */ + private function buildIcr(array $rows, float $earned, int $lives): array + { + $empty = ['count' => 0, 'amount' => 0.0]; + $grid = []; + foreach (self::STATUS_ROWS as $label) { + $grid[$label] = [ + 'Cashless' => $empty, + 'Member' => $empty, + ]; + } + + foreach ($rows as $row) { + $status = $this->statusLabel($row); + $lane = $this->claimLane($row); + if ($status === '' || !isset($grid[$status])) { + // Still count toward Reported even if status unknown + $statusKey = null; + } else { + $statusKey = $status; + } + + $claimed = $this->claimedAmount($row); + $approved = $this->approvedAmount($row); + $osAmt = $this->osAmount($row); + + // Reported = all + $grid['Reported'][$lane]['count']++; + $grid['Reported'][$lane]['amount'] += $claimed; + + if ($statusKey === null) { + continue; + } + + // Settled / Awaiting Utr / Approved → approved_amount; Rejected/Cancelled → claimed; other OS → claim/incurred + $amt = match ($statusKey) { + 'Settled', 'Awaiting Utr', 'Approved' => $approved > 0 ? $approved : $claimed, + 'Rejected', 'Cancelled' => $claimed, + default => $osAmt, + }; + + $grid[$statusKey][$lane]['count']++; + $grid[$statusKey][$lane]['amount'] += $amt; + } + + // Outstanding = sum of OS statuses + foreach (self::LANES as $lane) { + $c = 0; + $a = 0.0; + foreach (self::OS_STATUSES as $os) { + $c += $grid[$os][$lane]['count']; + $a += $grid[$os][$lane]['amount']; + } + $grid['Outstanding Claims'][$lane] = ['count' => $c, 'amount' => $a]; + } + + // Incurred = OS + Settled + foreach (self::LANES as $lane) { + $grid['Incurred(Os+Settled)'][$lane] = [ + 'count' => $grid['Outstanding Claims'][$lane]['count'] + $grid['Settled'][$lane]['count'], + 'amount' => $grid['Outstanding Claims'][$lane]['amount'] + $grid['Settled'][$lane]['amount'], + ]; + } + + $outRows = []; + foreach (self::STATUS_ROWS as $label) { + $c = $grid[$label]['Cashless']; + $m = $grid[$label]['Member']; + $outRows[] = [ + 'label' => $label, + 'cashless' => $c, + 'member' => $m, + 'total' => [ + 'count' => $c['count'] + $m['count'], + 'amount' => $c['amount'] + $m['amount'], + ], + ]; + } + + $reportedC = $grid['Reported']['Cashless']['count']; + $reportedM = $grid['Reported']['Member']['count']; + $reportedT = $reportedC + $reportedM; + + $disposalNum = static function (array $g, string $lane): int { + $n = 0; + foreach (self::DISPOSAL_STATUSES as $s) { + $n += $g[$s][$lane]['count']; + } + + return $n; + }; + + $disposalC = $reportedC > 0 + ? round(($disposalNum($grid, 'Cashless') / $reportedC) * 100) + : 0; + $disposalM = $reportedM > 0 + ? round(($disposalNum($grid, 'Member') / $reportedM) * 100) + : 0; + $disposalT = $reportedT > 0 + ? round((($disposalNum($grid, 'Cashless') + $disposalNum($grid, 'Member')) / $reportedT) * 100) + : 0; + + $incurredTotal = $grid['Incurred(Os+Settled)']['Cashless']['amount'] + + $grid['Incurred(Os+Settled)']['Member']['amount']; + $icrOnEp = $earned > 0 ? round(($incurredTotal / $earned) * 100, 1) : 0.0; + $incidence = $lives > 0 ? round(($reportedT / $lives) * 100, 1) : 0.0; + + // CPC = approved amt / events for settled + awaiting utr + $cpc = $this->computeCpc($rows); + + return [ + 'rows' => $outRows, + 'summary' => [ + 'icr_on_ep' => $icrOnEp, + 'incidence_rate' => $incidence, + 'disposal_rate' => [ + 'cashless' => $disposalC, + 'member' => $disposalM, + 'total' => $disposalT, + ], + 'cpc' => $cpc, + ], + ]; + } + + /** + * @param list> $rows + * @return array{cashless:float,member:float,total:float} + */ + private function computeCpc(array $rows): array + { + $amt = ['Cashless' => 0.0, 'Member' => 0.0]; + $cnt = ['Cashless' => 0, 'Member' => 0]; + + foreach ($rows as $row) { + $status = $this->statusLabel($row); + if (!in_array($status, self::APPROVED_STATUSES, true)) { + continue; + } + if (!$this->isMainClaim($row)) { + continue; + } + $lane = $this->claimLane($row); + $amt[$lane] += $this->approvedAmount($row); + $cnt[$lane]++; + } + + $cpcC = $cnt['Cashless'] > 0 ? round($amt['Cashless'] / $cnt['Cashless']) : 0.0; + $cpcM = $cnt['Member'] > 0 ? round($amt['Member'] / $cnt['Member']) : 0.0; + $totN = $cnt['Cashless'] + $cnt['Member']; + $totA = $amt['Cashless'] + $amt['Member']; + $cpcT = $totN > 0 ? round($totA / $totN) : 0.0; + + return [ + 'cashless' => $cpcC, + 'member' => $cpcM, + 'total' => $cpcT, + ]; + } + + // ------------------------------------------------------------------------- + // Hospitalisation + // ------------------------------------------------------------------------- + + /** + * @param list> $rows + * @return array{rows:list>,total:array} + */ + private function buildHospitalization(array $rows): array + { + $empty = ['count' => 0, 'amount' => 0.0]; + $grid = []; + foreach (self::HOSP_SUBTYPES as $sub) { + $grid[$sub] = ['Cashless' => $empty, 'Member' => $empty]; + } + + foreach ($rows as $row) { + $status = $this->statusLabel($row); + if (!in_array($status, self::HOSP_STATUSES, true)) { + continue; + } + $sub = $this->hospSubtype($row); + $lane = $this->claimLane($row); + if (!isset($grid[$sub])) { + continue; + } + $grid[$sub][$lane]['count']++; + $grid[$sub][$lane]['amount'] += $this->approvedAmount($row) > 0 + ? $this->approvedAmount($row) + : $this->claimedAmount($row); + } + + $outRows = []; + $totals = ['Cashless' => $empty, 'Member' => $empty]; + foreach (self::HOSP_SUBTYPES as $sub) { + $c = $grid[$sub]['Cashless']; + $m = $grid[$sub]['Member']; + $outRows[] = [ + 'label' => $sub, + 'cashless' => $c, + 'member' => $m, + ]; + $totals['Cashless']['count'] += $c['count']; + $totals['Cashless']['amount'] += $c['amount']; + $totals['Member']['count'] += $m['count']; + $totals['Member']['amount'] += $m['amount']; + } + + return [ + 'rows' => $outRows, + 'total' => [ + 'cashless' => $totals['Cashless'], + 'member' => $totals['Member'], + ], + ]; + } + + // ------------------------------------------------------------------------- + // Enrollment / member matrices + // ------------------------------------------------------------------------- + + /** + * Prefer employees × employee_polices; else unique dump members. + * + * @param list> $dumpRows + * @return list + */ + private function loadEnrollmentMembers(int $policyId, array $dumpRows, int $lives): array + { + $db = db_connect(); + $members = []; + + if ($db->tableExists('employees') && $db->tableExists('employee_polices')) { + try { + $rows = $db->table('employees e') + ->select('e.gender, e.dob, e.relationship, e.relationship_code') + ->join('employee_polices ep', 'ep.employee_id = e.id') + ->where('ep.client_policy_id', $policyId) + ->where('ep.is_active', 1) + ->whereIn('ep.status', ['active', 'expired']) + ->get() + ->getResultArray(); + + foreach ($rows as $r) { + $age = null; + $dob = trim((string) ($r['dob'] ?? '')); + if ($dob !== '' && $dob !== '0000-00-00') { + $ts = strtotime($dob); + if ($ts) { + $age = (int) floor((time() - $ts) / 31557600); + } + } + $members[] = [ + 'relation' => $this->normalizeRelation( + (string) ($r['relationship'] ?? $r['relationship_code'] ?? ''), + true + ), + 'gender' => $this->normalizeGender($r['gender'] ?? ''), + 'age' => $age, + ]; + } + } catch (\Throwable $e) { + $members = []; + } + } + + if ($members !== []) { + return $members; + } + + // Fallback: unique members from dump + $seen = []; + foreach ($dumpRows as $row) { + $uhid = trim((string) ($row['patient_health_card_id'] ?? '')); + $key = $uhid !== '' + ? $uhid + : trim((string) ($row['patient_name'] ?? '')) . '|' . ($row['age'] ?? '') . '|' . ($row['relation'] ?? ''); + if ($key === '|' || isset($seen[$key])) { + continue; + } + $seen[$key] = true; + $ageRaw = $row['age'] ?? null; + $age = is_numeric($ageRaw) ? (int) $ageRaw : null; + $members[] = [ + 'relation' => $this->normalizeRelation((string) ($row['relation'] ?? ''), true), + 'gender' => $this->normalizeGender($row['gender'] ?? ''), + 'age' => $age, + ]; + } + + // If still empty but lives known, return empty (counts only from dump elsewhere) + unset($lives); + + return $members; + } + + /** + * @param list $members + * @return array{rows:list>,total:array,pct_gender:array{male:float,female:float}} + */ + private function buildMemberGender(array $members): array + { + $grid = []; + foreach (self::GENDER_RELATIONS as $rel) { + $grid[$rel] = ['male' => 0, 'female' => 0, 'total' => 0]; + } + + foreach ($members as $m) { + $rel = $this->mapToGenderRelation($m['relation']); + $g = $m['gender']; + if (!isset($grid[$rel])) { + $rel = 'Others'; + } + if ($g === 'Male') { + $grid[$rel]['male']++; + } elseif ($g === 'Female') { + $grid[$rel]['female']++; + } else { + // Unknown gender — skip gender cells but still count? Put in Others male as 0 + continue; + } + $grid[$rel]['total'] = $grid[$rel]['male'] + $grid[$rel]['female']; + } + + $grand = ['male' => 0, 'female' => 0, 'total' => 0]; + $rows = []; + foreach (self::GENDER_RELATIONS as $rel) { + $r = $grid[$rel]; + $grand['male'] += $r['male']; + $grand['female'] += $r['female']; + $grand['total'] += $r['total']; + } + foreach (self::GENDER_RELATIONS as $rel) { + $r = $grid[$rel]; + $rows[] = [ + 'relation' => $rel, + 'male' => $r['male'], + 'female' => $r['female'], + 'total' => $r['total'], + 'pct' => $grand['total'] > 0 + ? round(($r['total'] / $grand['total']) * 100, 2) + : 0.0, + ]; + } + + return [ + 'rows' => $rows, + 'total' => $grand, + 'pct_gender' => [ + 'male' => $grand['total'] > 0 ? round(($grand['male'] / $grand['total']) * 100) : 0, + 'female' => $grand['total'] > 0 ? round(($grand['female'] / $grand['total']) * 100) : 0, + ], + ]; + } + + /** + * @param list $members + * @return array{rows:list>,total:array,col_pct:array} + */ + private function buildMemberAge(array $members): array + { + $matrix = []; + foreach (self::AGE_BANDS as $band) { + foreach (self::AGE_RELATIONS as $rel) { + $matrix[$band][$rel] = 0; + } + $matrix[$band]['_total'] = 0; + } + + foreach ($members as $m) { + if ($m['age'] === null) { + continue; + } + $band = $this->ageBandFromInt((int) $m['age']); + $rel = $this->mapToAgeRelation($m['relation']); + if (!isset($matrix[$band])) { + continue; + } + $matrix[$band][$rel]++; + $matrix[$band]['_total']++; + } + + $colTotals = array_fill_keys(self::AGE_RELATIONS, 0); + $grand = 0; + foreach (self::AGE_BANDS as $band) { + foreach (self::AGE_RELATIONS as $rel) { + $colTotals[$rel] += $matrix[$band][$rel]; + } + $grand += $matrix[$band]['_total']; + } + + $rows = []; + foreach (self::AGE_BANDS as $band) { + $row = ['band' => $band]; + foreach (self::AGE_RELATIONS as $rel) { + $row[$rel] = $matrix[$band][$rel]; + } + $row['total'] = $matrix[$band]['_total']; + $row['pct'] = $grand > 0 + ? round(($matrix[$band]['_total'] / $grand) * 100, 2) + : 0.0; + $rows[] = $row; + } + + $colPct = []; + foreach (self::AGE_RELATIONS as $rel) { + $colPct[$rel] = $grand > 0 + ? round(($colTotals[$rel] / $grand) * 100) + : 0; + } + + return [ + 'rows' => $rows, + 'total' => array_merge($colTotals, ['_total' => $grand]), + 'col_pct' => $colPct, + ]; + } + + /** + * @param array $memberGender + * @return list + */ + private function buildChartGender(array $memberGender): array + { + $out = []; + foreach ($memberGender['rows'] ?? [] as $r) { + $out[] = [ + 'relation' => (string) ($r['relation'] ?? ''), + 'male' => (int) ($r['male'] ?? 0), + 'female' => (int) ($r['female'] ?? 0), + ]; + } + + return $out; + } + + /** + * @param array $memberAge + * @return list + */ + private function buildChartAge(array $memberAge): array + { + $out = []; + foreach ($memberAge['rows'] ?? [] as $r) { + $band = (string) ($r['band'] ?? ''); + $total = (int) ($r['total'] ?? 0); + $parts = []; + foreach (self::AGE_RELATIONS as $rel) { + if ((int) ($r[$rel] ?? 0) > 0) { + $parts[] = $rel; + } + } + $dominant = match (true) { + in_array('Child', $parts, true) && count($parts) === 1 => 'Child', + in_array('Self', $parts, true) && in_array('Child', $parts, true) => 'Self+Child', + in_array('Self', $parts, true) && in_array('Spouse', $parts, true) => 'Self+Spouse', + in_array('Parents', $parts, true) && count(array_diff($parts, ['Parents', 'In Law', 'Other'])) === 0 => 'Parents', + default => implode('+', array_slice($parts, 0, 2)), + }; + $out[] = [ + 'band' => $band, + 'total' => $total, + 'dominant' => $dominant, + 'counts' => array_combine( + self::AGE_RELATIONS, + array_map(static fn ($rel) => (int) ($r[$rel] ?? 0), self::AGE_RELATIONS) + ), + ]; + } + + return $out; + } + + // ------------------------------------------------------------------------- + // Claims approved matrices + // ------------------------------------------------------------------------- + + /** + * @param list> $rows + * @return array{rows:list>,total:array,col_pct:array} + */ + private function buildClaimsByAgeRelation(array $rows): array + { + return $this->buildApprovedRelationGrid( + $rows, + self::AGE_BANDS, + function ($row) { + $age = $this->rowAge($row); + + return $age < 0 ? '' : $this->ageBandFromInt($age); + }, + 'band' + ); + } + + /** + * @param list> $rows + * @return array{rows:list>,total:array,col_pct:array} + */ + private function buildClaimsByAmountRelation(array $rows): array + { + return $this->buildApprovedRelationGrid( + $rows, + self::AMOUNT_BANDS, + fn ($row) => $this->amountBand($this->approvedAmount($row) > 0 + ? $this->approvedAmount($row) + : $this->claimedAmount($row)), + 'band' + ); + } + + /** + * @param list> $rows + * @param list $rowKeys + * @param callable(array):string $keyFn + * @return array{rows:list>,total:array,col_pct:array} + */ + private function buildApprovedRelationGrid(array $rows, array $rowKeys, callable $keyFn, string $keyName): array + { + $emptyCell = ['count' => 0, 'amount' => 0.0]; + $matrix = []; + foreach ($rowKeys as $k) { + foreach (self::AGE_RELATIONS as $rel) { + $matrix[$k][$rel] = $emptyCell; + } + $matrix[$k]['_total'] = $emptyCell; + } + + foreach ($rows as $row) { + if (!$this->isApprovedClaim($row)) { + continue; + } + $key = $keyFn($row); + if ($key === '' || !isset($matrix[$key])) { + continue; + } + $rel = $this->mapToAgeRelation($this->normalizeRelation((string) ($row['relation'] ?? ''), false)); + $amt = $this->approvedAmount($row) > 0 + ? $this->approvedAmount($row) + : $this->claimedAmount($row); + $matrix[$key][$rel]['count']++; + $matrix[$key][$rel]['amount'] += $amt; + $matrix[$key]['_total']['count']++; + $matrix[$key]['_total']['amount'] += $amt; + } + + $colTotals = []; + foreach (self::AGE_RELATIONS as $rel) { + $colTotals[$rel] = $emptyCell; + } + $grand = $emptyCell; + foreach ($rowKeys as $k) { + foreach (self::AGE_RELATIONS as $rel) { + $colTotals[$rel]['count'] += $matrix[$k][$rel]['count']; + $colTotals[$rel]['amount'] += $matrix[$k][$rel]['amount']; + } + $grand['count'] += $matrix[$k]['_total']['count']; + $grand['amount'] += $matrix[$k]['_total']['amount']; + } + + $outRows = []; + foreach ($rowKeys as $k) { + $row = [$keyName => $k]; + foreach (self::AGE_RELATIONS as $rel) { + $row[$rel] = $matrix[$k][$rel]; + } + $row['total'] = $matrix[$k]['_total']; + $row['pct'] = [ + 'count' => $grand['count'] > 0 + ? round(($matrix[$k]['_total']['count'] / $grand['count']) * 100, 2) + : 0.0, + 'amount' => $grand['amount'] > 0 + ? round(($matrix[$k]['_total']['amount'] / $grand['amount']) * 100, 2) + : 0.0, + ]; + $outRows[] = $row; + } + + $colPct = []; + foreach (self::AGE_RELATIONS as $rel) { + $colPct[$rel] = [ + 'count' => $grand['count'] > 0 + ? round(($colTotals[$rel]['count'] / $grand['count']) * 100) + : 0, + 'amount' => $grand['amount'] > 0 + ? round(($colTotals[$rel]['amount'] / $grand['amount']) * 100) + : 0, + ]; + } + + return [ + 'rows' => $outRows, + 'total' => array_merge($colTotals, ['_total' => $grand]), + 'col_pct' => $colPct, + ]; + } + + /** + * @param list> $rows + * @return array{rows:list>,total:array,col_pct:array} + */ + private function buildTopAilments(array $rows, int $limit = 15): array + { + $emptyCell = ['count' => 0, 'amount' => 0.0]; + $byAilment = []; + + foreach ($rows as $row) { + if (!$this->isApprovedClaim($row)) { + continue; + } + $name = trim((string) ($row['ailment_grouping'] ?? '')); + if ($name === '') { + $name = trim((string) ($row['diagnosis'] ?? '')); + } + if ($name === '') { + $name = 'OTHERS'; + } + $name = strtoupper($name); + $rel = $this->mapToAgeRelation($this->normalizeRelation((string) ($row['relation'] ?? ''), false)); + $amt = $this->approvedAmount($row) > 0 + ? $this->approvedAmount($row) + : $this->claimedAmount($row); + + if (!isset($byAilment[$name])) { + $byAilment[$name] = ['_total' => $emptyCell]; + foreach (self::AGE_RELATIONS as $r) { + $byAilment[$name][$r] = $emptyCell; + } + } + $byAilment[$name][$rel]['count']++; + $byAilment[$name][$rel]['amount'] += $amt; + $byAilment[$name]['_total']['count']++; + $byAilment[$name]['_total']['amount'] += $amt; + } + + uasort($byAilment, static function ($a, $b) { + $cmp = ($b['_total']['amount'] <=> $a['_total']['amount']); + if ($cmp !== 0) { + return $cmp; + } + + return $b['_total']['count'] <=> $a['_total']['count']; + }); + + $top = array_slice($byAilment, 0, $limit, true); + $grand = $emptyCell; + foreach ($byAilment as $block) { + $grand['count'] += $block['_total']['count']; + $grand['amount'] += $block['_total']['amount']; + } + + // Recalculate col totals from top only for display total row of top-N + $colTotals = []; + foreach (self::AGE_RELATIONS as $rel) { + $colTotals[$rel] = $emptyCell; + } + $topGrand = $emptyCell; + $outRows = []; + foreach ($top as $name => $block) { + $row = ['ailment' => $name]; + foreach (self::AGE_RELATIONS as $rel) { + $row[$rel] = $block[$rel]; + $colTotals[$rel]['count'] += $block[$rel]['count']; + $colTotals[$rel]['amount'] += $block[$rel]['amount']; + } + $row['total'] = $block['_total']; + $topGrand['count'] += $block['_total']['count']; + $topGrand['amount'] += $block['_total']['amount']; + // % against overall approved (not just top-N), matching HTML sample + $row['pct'] = [ + 'count' => $grand['count'] > 0 + ? round(($block['_total']['count'] / $grand['count']) * 100, 2) + : 0.0, + 'amount' => $grand['amount'] > 0 + ? round(($block['_total']['amount'] / $grand['amount']) * 100, 2) + : 0.0, + ]; + $outRows[] = $row; + } + + // Total row = all approved (HTML shows full total), not just top-N sum + $allColTotals = []; + foreach (self::AGE_RELATIONS as $rel) { + $allColTotals[$rel] = $emptyCell; + } + foreach ($byAilment as $block) { + foreach (self::AGE_RELATIONS as $rel) { + $allColTotals[$rel]['count'] += $block[$rel]['count']; + $allColTotals[$rel]['amount'] += $block[$rel]['amount']; + } + } + + $colPct = []; + foreach (self::AGE_RELATIONS as $rel) { + $colPct[$rel] = [ + 'count' => $grand['count'] > 0 + ? round(($allColTotals[$rel]['count'] / $grand['count']) * 100) + : 0, + 'amount' => $grand['amount'] > 0 + ? round(($allColTotals[$rel]['amount'] / $grand['amount']) * 100) + : 0, + ]; + } + + return [ + 'rows' => $outRows, + 'total' => array_merge($allColTotals, ['_total' => $grand]), + 'col_pct' => $colPct, + ]; + } + + /** + * Top 15 cashless hospitals by approved_amount. + * + * @param list> $rows + * @return list + */ + private function buildTopHospitals(array $rows, int $limit = 15): array + { + $map = []; + foreach ($rows as $row) { + if ($this->claimLane($row) !== 'Cashless') { + continue; + } + if (!$this->isApprovedClaim($row)) { + continue; + } + $id = trim((string) ($row['hospital_id'] ?? '')); + $name = trim((string) ($row['hospital_name'] ?? '')); + $key = $id !== '' ? $id : ('name:' . strtoupper($name)); + if ($name === '' && $id === '') { + continue; + } + if (!isset($map[$key])) { + $map[$key] = [ + 'hospital_id' => $id, + 'hospital_name' => $name !== '' ? $name : $id, + 'count' => 0, + 'amount' => 0.0, + ]; + } + $map[$key]['count']++; + $map[$key]['amount'] += $this->approvedAmount($row) > 0 + ? $this->approvedAmount($row) + : $this->claimedAmount($row); + } + + usort($map, static function ($a, $b) { + $cmp = $b['amount'] <=> $a['amount']; + if ($cmp !== 0) { + return $cmp; + } + + return $b['count'] <=> $a['count']; + }); + + return array_values(array_slice($map, 0, $limit)); + } + + /** + * @param list> $rows + * @return array{rows:list>,total:array{count:int,amount:float}} + */ + private function buildCashlessMemberSummary(array $rows): array + { + $data = [ + 'CASHLESS' => ['count' => 0, 'amount' => 0.0], + 'MEMBER' => ['count' => 0, 'amount' => 0.0], + ]; + + foreach ($rows as $row) { + if (!$this->isApprovedClaim($row)) { + continue; + } + $lane = strtoupper($this->claimLane($row)); + if (!isset($data[$lane])) { + continue; + } + $data[$lane]['count']++; + $data[$lane]['amount'] += $this->approvedAmount($row) > 0 + ? $this->approvedAmount($row) + : $this->claimedAmount($row); + } + + $totalCount = $data['CASHLESS']['count'] + $data['MEMBER']['count']; + $totalAmount = $data['CASHLESS']['amount'] + $data['MEMBER']['amount']; + + $outRows = []; + foreach (['CASHLESS', 'MEMBER'] as $label) { + $outRows[] = [ + 'label' => $label, + 'count' => $data[$label]['count'], + 'count_pct' => $totalCount > 0 + ? round(($data[$label]['count'] / $totalCount) * 100, 2) + : 0.0, + 'amount' => $data[$label]['amount'], + 'amount_pct' => $totalAmount > 0 + ? round(($data[$label]['amount'] / $totalAmount) * 100, 2) + : 0.0, + ]; + } + + return [ + 'rows' => $outRows, + 'total' => ['count' => $totalCount, 'amount' => $totalAmount], + ]; + } + + // ------------------------------------------------------------------------- + // TAT / MoM / Payout + // ------------------------------------------------------------------------- + + /** + * @param list> $rows + * @return array{rows:list,total:int} + */ + private function buildTat(array $rows): array + { + $counts = array_fill_keys(self::TAT_BANDS, 0); + $total = 0; + + foreach ($rows as $row) { + if ($this->claimLane($row) !== 'Member') { + continue; + } + $status = $this->statusLabel($row); + if (!in_array($status, self::TAT_STATUSES, true)) { + continue; + } + $days = $this->tatDays($row); + if ($days === null) { + continue; + } + $band = $this->tatBand($days); + $counts[$band]++; + $total++; + } + + $outRows = []; + foreach (self::TAT_BANDS as $band) { + $outRows[] = [ + 'band' => $band, + 'count' => $counts[$band], + 'pct' => $total > 0 ? round(($counts[$band] / $total) * 100, 2) : 0.0, + ]; + } + + return ['rows' => $outRows, 'total' => $total]; + } + + /** + * @param list> $rows + * @return array{rows:list>,total:array} + */ + private function buildMonthOnMonth(array $rows): array + { + $empty = ['count' => 0, 'amount' => 0.0]; + $byMonth = []; + + foreach ($rows as $row) { + if (!$this->isApprovedClaim($row)) { + continue; + } + $adm = $this->parseDate($row['date_of_admission'] ?? null); + if ($adm === null) { + continue; + } + $key = date('Y-m', $adm); + $label = date('M Y', $adm); + if (!isset($byMonth[$key])) { + $byMonth[$key] = [ + 'label' => $label, + 'hosp' => $empty, + 'other' => $empty, + ]; + } + $amt = $this->approvedAmount($row) > 0 + ? $this->approvedAmount($row) + : $this->claimedAmount($row); + $sub = strtolower(trim((string) ($row['type_of_hospitalization'] ?? ''))); + $isHosp = str_contains($sub, 'hospital') || str_contains($sub, 'daycare') || $sub === 'day care'; + $bucket = $isHosp ? 'hosp' : 'other'; + $byMonth[$key][$bucket]['count']++; + $byMonth[$key][$bucket]['amount'] += $amt; + } + + ksort($byMonth); + + $totals = ['hosp' => $empty, 'other' => $empty, 'total' => $empty]; + $outRows = []; + foreach ($byMonth as $block) { + $total = [ + 'count' => $block['hosp']['count'] + $block['other']['count'], + 'amount' => $block['hosp']['amount'] + $block['other']['amount'], + ]; + $outRows[] = [ + 'month' => $block['label'], + 'hosp' => $block['hosp'], + 'other' => $block['other'], + 'total' => $total, + ]; + $totals['hosp']['count'] += $block['hosp']['count']; + $totals['hosp']['amount'] += $block['hosp']['amount']; + $totals['other']['count'] += $block['other']['count']; + $totals['other']['amount'] += $block['other']['amount']; + $totals['total']['count'] += $total['count']; + $totals['total']['amount'] += $total['amount']; + } + + return ['rows' => $outRows, 'total' => $totals]; + } + + /** + * @param list> $rows + * @return array{claimed:float,settled:float,payout_pct:float} + */ + private function buildPayout(array $rows): array + { + $claimed = 0.0; + $settled = 0.0; + + foreach ($rows as $row) { + $status = $this->statusLabel($row); + if ($status === 'Settled') { + $claimed += $this->claimedAmount($row); + $settled += $this->approvedAmount($row) > 0 + ? $this->approvedAmount($row) + : $this->claimedAmount($row); + } + } + + // HTML sample claimed > settled sum — claimed across settled claims only + return [ + 'claimed' => $claimed, + 'settled' => $settled, + 'payout_pct' => $claimed > 0 ? round(($settled / $claimed) * 100) : 0.0, + ]; + } + + // ------------------------------------------------------------------------- + // Field helpers + // ------------------------------------------------------------------------- + + /** @param array $row */ + private function statusLabel(array $row): string + { + $raw = strtoupper(trim((string) ($row['claim_status'] ?? ''))); + $raw = preg_replace('/\s+/', ' ', $raw) ?? $raw; + + return match (true) { + $raw === 'SETTLED' => 'Settled', + $raw === 'REJECTED' => 'Rejected', + $raw === 'CANCELLED', $raw === 'CANCELED' => 'Cancelled', + $raw === 'AWAITING UTR', str_contains($raw, 'AWAITING UTR') => 'Awaiting Utr', + $raw === 'SHORTFALL' => 'Shortfall', + $raw === 'APPROVED' => 'Approved', + $raw === 'UNDERPROCESS', $raw === 'UNDER PROCESS', $raw === 'IN PROCESS' => 'Underprocess', + $raw === 'BILLS PENDING', str_contains($raw, 'BILLS PENDING') => 'Bills Pending', + str_contains($raw, 'RECOMMENDED FOR REPUDIATION') => 'Recommended For Repudiation', + str_contains($raw, 'RECOMMENDED FOR APPROVAL') => 'Recommended For Approval', + default => '', + }; + } + + /** @param array $row */ + private function claimLane(array $row): string + { + $t = strtoupper(trim((string) ($row['type_of_claim'] ?? ''))); + if (str_contains($t, 'CASHLESS')) { + return 'Cashless'; + } + // Member / Reimbursement / RI + return 'Member'; + } + + /** @param array $row */ + private function isApprovedClaim(array $row): bool + { + return in_array($this->statusLabel($row), self::APPROVED_STATUSES, true); + } + + /** @param array $row */ + private function isMainClaim(array $row): bool + { + $t = strtolower(trim((string) ($row['mainclaim_prepost_type'] ?? ''))); + if ($t === '') { + return true; + } + if (str_contains($t, 'pre') || str_contains($t, 'post') || str_contains($t, 'addendum')) { + return false; + } + + return true; // Normal / Main / blank + } + + /** @param array $row */ + private function claimedAmount(array $row): float + { + return $this->toFloat($row['claim_amount'] ?? 0); + } + + /** @param array $row */ + private function approvedAmount(array $row): float + { + return $this->toFloat($row['approved_amount'] ?? 0); + } + + /** @param array $row */ + private function osAmount(array $row): float + { + $incurred = $this->toFloat($row['total_incurred_amount'] ?? 0); + if ($incurred > 0) { + return $incurred; + } + + return $this->claimedAmount($row); + } + + /** @param array $row */ + private function hospSubtype(array $row): string + { + $raw = trim((string) ($row['type_of_hospitalization'] ?? '')); + $norm = strtolower(str_replace([' ', '-'], '_', $raw)); + + return match (true) { + str_contains($norm, 'claim_benefit') || $norm === 'claim_benefits' => 'Claim Benefits', + str_contains($norm, 'daycare') || $norm === 'day_care' => 'Daycare', + str_contains($norm, 'domiciliary') => 'Domiciliary', + str_contains($norm, 'health_check') || str_contains($norm, 'healthcheck') => 'Health_Check_Up', + str_contains($norm, 'hospital') => 'Hospitalization', + $norm === 'opd' || str_contains($norm, 'opd') => 'Opd', + default => 'Hospitalization', + }; + } + + /** @param array $row */ + private function rowAge(array $row): int + { + if (is_numeric($row['age'] ?? null)) { + return (int) $row['age']; + } + $dob = trim((string) ($row['date_of_birth'] ?? '')); + if ($dob !== '' && $dob !== '0000-00-00') { + $ts = strtotime($dob); + if ($ts) { + return (int) floor((time() - $ts) / 31557600); + } + } + + return -1; + } + + private function ageBandFromInt(int $age): string + { + if ($age < 0) { + return '>70'; + } + if ($age <= 5) { + return '0-5'; + } + if ($age <= 10) { + return '6-10'; + } + if ($age <= 20) { + return '11-20'; + } + if ($age <= 30) { + return '21-30'; + } + if ($age <= 40) { + return '31-40'; + } + if ($age <= 50) { + return '41-50'; + } + if ($age <= 60) { + return '51-60'; + } + if ($age <= 70) { + return '61-70'; + } + + return '>70'; + } + + private function amountBand(float $amount): string + { + if ($amount <= 10000) { + return '00K-10K'; + } + if ($amount <= 20000) { + return '10K-20K'; + } + if ($amount <= 30000) { + return '20K-30K'; + } + if ($amount <= 40000) { + return '30K-40K'; + } + if ($amount <= 50000) { + return '40K-50K'; + } + if ($amount <= 60000) { + return '50K-60K'; + } + if ($amount <= 70000) { + return '60K-70K'; + } + if ($amount <= 80000) { + return '70K-80K'; + } + if ($amount <= 90000) { + return '80K-90K'; + } + if ($amount <= 100000) { + return '90K-100K'; + } + + return '>100K'; + } + + /** @param array $row */ + private function tatDays(array $row): ?int + { + $start = $this->parseDate($row['last_document_received_date'] ?? null) + ?? $this->parseDate($row['claim_received_date'] ?? null); + $end = $this->parseDate($row['claim_decision_date'] ?? null); + if ($start === null || $end === null) { + return null; + } + $days = (int) floor(($end - $start) / 86400); + if ($days < 0) { + return null; + } + + return $days; + } + + private function tatBand(int $days): string + { + if ($days <= 7) { + return '0-7'; + } + if ($days <= 15) { + return '8-15'; + } + if ($days <= 30) { + return '16-30'; + } + if ($days <= 45) { + return '31-45'; + } + if ($days <= 60) { + return '46-60'; + } + if ($days <= 90) { + return '61-90'; + } + + return '>90'; + } + + private function normalizeGender(mixed $value): string + { + $g = strtoupper(trim((string) $value)); + if ($g === '' || $g === 'U' || $g === 'UNKNOWN') { + return ''; + } + if (str_starts_with($g, 'M')) { + return 'Male'; + } + if (str_starts_with($g, 'F')) { + return 'Female'; + } + + return ''; + } + + private function normalizeRelation(string $raw, bool $forGender): string + { + $r = strtolower(trim($raw)); + $r = str_replace(['_', '-'], ' ', $r); + $r = preg_replace('/\s+/', ' ', $r) ?? $r; + + if ($r === '' || $r === 'self' || $r === 'employee' || $r === 'primary' || $r === 'e') { + return 'Self'; + } + if (str_contains($r, 'spouse') || $r === 'wife' || $r === 'husband') { + return 'Spouse'; + } + if (str_contains($r, 'partner')) { + return 'Partner'; + } + if (str_contains($r, 'child') || str_contains($r, 'son') || str_contains($r, 'daughter')) { + return 'Child'; + } + if (str_contains($r, 'in law') || str_contains($r, 'inlaw') || str_contains($r, 'father in') || str_contains($r, 'mother in')) { + return $forGender ? 'In Laws' : 'In Law'; + } + if (str_contains($r, 'parent') || $r === 'father' || $r === 'mother' || $r === 'f' || $r === 'm') { + return 'Parents'; + } + + return $forGender ? 'Others' : 'Other'; + } + + private function mapToGenderRelation(string $rel): string + { + return match ($rel) { + 'Self', 'Spouse', 'Partner', 'Child', 'Parents', 'In Laws', 'Others' => $rel, + 'In Law' => 'In Laws', + 'Other' => 'Others', + default => 'Others', + }; + } + + private function mapToAgeRelation(string $rel): string + { + return match ($rel) { + 'Self', 'Spouse', 'Partner', 'Child', 'Parents', 'In Law', 'Other' => $rel, + 'In Laws' => 'In Law', + 'Others' => 'Other', + default => 'Other', + }; + } + + // ------------------------------------------------------------------------- + // Format helpers + // ------------------------------------------------------------------------- + + public static function fmtNum(mixed $value, int $decimals = 0): string + { + if ($value === null || $value === '') { + return '0'; + } + $n = is_numeric($value) ? (float) $value : 0.0; + + return number_format($n, $decimals, '.', ','); + } + + public static function fmtPct(mixed $value, int $decimals = 0, bool $withSymbol = true): string + { + if ($value === null || $value === '') { + return $withSymbol ? '0%' : '0'; + } + $n = is_numeric($value) ? (float) $value : 0.0; + $s = number_format($n, $decimals, '.', ''); + + return $withSymbol ? $s . '%' : $s; + } + + private function toFloat(mixed $value): float + { + if ($value === null || $value === '') { + return 0.0; + } + if (is_int($value) || is_float($value)) { + return (float) $value; + } + $s = trim((string) $value); + $s = str_replace([',', '₹', 'Rs.', 'Rs', ' '], '', $s); + + return $s === '' || $s === '-' || $s === '.' ? 0.0 : (float) $s; + } + + private function parseFormattedNumber(mixed $value): float + { + return $this->toFloat($value); + } + + /** @param list> $rows */ + private function firstRow(array $rows): array + { + return $rows[0] ?? []; + } + + private function formatDate(mixed $value): string + { + if ($value === null || $value === '' || $value === '0000-00-00') { + return ''; + } + $ts = strtotime((string) $value); + + return $ts ? date('d-M-Y', $ts) : (string) $value; + } + + private function formatDateTimeDisplay(string $raw): string + { + // ClaimDumpFileModel returns d-m-Y + $ts = strtotime(str_replace('/', '-', $raw)); + if ($ts) { + if (preg_match('/\d{1,2}:\d{2}/', $raw)) { + return date('d-M-Y H:i', $ts); + } + + return date('d-M-Y', $ts); + } + + return $raw; + } + + private function parseDate(mixed $value): ?int + { + if ($value === null || $value === '' || $value === '0000-00-00' || $value === '0000-00-00 00:00:00') { + return null; + } + $ts = strtotime((string) $value); + + return $ts !== false ? $ts : null; + } +} diff --git a/app/Views/claims_mis_abhi.php b/app/Views/claims_mis_abhi.php new file mode 100644 index 00000000..3bb799fc --- /dev/null +++ b/app/Views/claims_mis_abhi.php @@ -0,0 +1,772 @@ + number_format((float) $n, $d); +$logoSrc = !empty($embed) + ? (rtrim(ROOTPATH, '/\\') . '/public/assets/images/abhi.png') + : base_url('public/assets/images/abhi.png'); +include APPPATH . 'Views/partials/claims_mis_abhi_helpers.php'; +?> + + + + +ABH MIS Report — Policy <?= esc($header['policy_number'] ?? $policy_id) ?> + + + +
+ + +
+
+ +
+
+
+
+ +
+
+
+
Policy number
+
+
+
+
+ +
+
+
+
Client name
+
+
+
+
+ +
+
+
+
TPA name
+
+
+
+
+ +
+
+
+
Last refresh
+
+
+
+
+ + +
+
+

Premium

+
+ + + + + + + + + + + +
ParameterValue
Insurer Name
Claim processing team
Policy Number
Policy Start Date
Policy End Date
Lives as on date
Premium paid as on date
+
+
+
+

Claim

+
+ + + + + + + + + + +
ParameterValue
Claim Paid + Outstanding
Claims paid Amount
Claim Outstanding Amount
ACS IPD Claim
No. of claims paid
No. of claims Outstanding
+
+
+
+ + +
+
+

Total Claim Count/Amount

+
+
+ Reported + Settled + Outstanding + Rejected +
+
+
+
+
+

Pre-Auth TAT By Claim Count

+
+
+ With in 2 Hours % + Above 2 Hours % +
+
+
+
+
+ +
+
+

Claim Status

+
+ + + + + + + + + + + + +
Claim StatusNumberReported AmountIncurred Amount
+
+
+
+

Policy Premium

+
+ + + + + + + + + + + + +
SrNoAmountValue
Total
+
+
+
+

 

+
+
+
+
👥
+
+
Lives
+
+
+
📊
+
%
+
ICR
+
+
+
+
+
+ +
+
+

Reimbursement TAT By Claim Count

+
+ + + + + + + + + + + + + + + + +
Date DifferenceClaim CountTAT %
Total
+
+
+
+

Premium, Earn Premium and Claim Incurred Amount

+
+
+
+
+
+ + +
Gender-wise Claims
+
+
+

Total Claim Number

+
+
+
+

Total Claim Amount

+
+
+
+

Gender Incurred

+
+ + + + $gLabel, 'count' => 0, 'amount' => 0]; + ?> + + + + + + + + +
GenderClaim CountClaim Incurred Amount
Total
+
+
+
+ + +
+

Claim Type

+
+ + + + + > + + + + + + + + + + + +
Claim TypeClaim CountClaim Count %Claim AmountClaim Amount %Claim Incurred AmountClaim Incurred Amount %
Total100.00100.00100.00
+
+
+ + +
+
+

Relation

+
+ + + + + + + + + + + + + + +
RelationIncurred Claim CountClaim Count %Claim Incurred AmountClaim Incurred Amount %
Total100.00100.00
+
+
+
+

Member Type

+
+ + + + + + + + + + + + + + +
Member TypeIncurred Claim CountClaim Count %Claim Incurred AmountClaim Incurred Amount %
Total100.00100.00
+
+
+
+ + +
+
+

Age

+
+ + + + + + + + + + + + + + +
AgeIncurred Claim CountClaim Count %Claim Incurred AmountClaim Incurred Amount %
Total100.00100.00
+
+
+
+

Diagnosis

+
+ + + + + + + + + + + + + + + + +
DiagnosisCountCount %AmountAmt %ACSLR %
Total100.00100.00
+
+
+
+ + +
+
+

Utilization Report for Employees (In-Patient Claims)

+
+ + + + + + + + + + + + + + + +
No. Of ClaimBeneficiaries CountIncurred Claim CountClaim Count %Claim Incurred AmountClaim Incurred Amount %
Total100.00100.00
+
+
+
+

Utilization Report for Dependent (In-Patient Claims)

+
+ + + + + + + + + + + + + + + +
No. of ClaimsBeneficiaries CountIncurred Claim CountClaim Count %Claim Incurred AmountClaim Incurred Amount %
Total100.00100.00
+
+
+
+ + +
+

Hospital Name

+
+ + + + + + + + + + + + + + +
Hospital NameIncurred Claim CountClaim Count %Claim Incurred AmountClaim Incurred Amount %
Total100.00100.00
+
+
+ + +
+
+

Claim Paid Count By Claim Type

+
+
+
+

Claim Paid Amount and ACS

+
+
+
+

Claim Count By Claim Status

+
+
+
+

Claim Amount By Claim Status

+
+
+
+ + +
+

Hospital City

+
+ + + + + + + + + + + + + + + + + +
Hospital CityClaim CountClaim AmountClaim Paid CountClaim Paid AmountClaim Outstanding CountClaim Outstanding AmountTotal ACS
Total
+
+
+ + +
+
+

Claim Paid Count and Claim Outstanding Count by Registration Month

+
+
+
+

Claim Paid Amount, Claim Outstanding Amount by Registration Date

+
+
+
+ +
+ + + + + + + diff --git a/app/Views/claims_mis_abhi_pdf.php b/app/Views/claims_mis_abhi_pdf.php new file mode 100644 index 00000000..f2cb0dc4 --- /dev/null +++ b/app/Views/claims_mis_abhi_pdf.php @@ -0,0 +1,558 @@ + number_format((float) $n, $d); +$dash = static fn ($v) => ($v === '' || $v === null) ? '—' : $v; +$logoPath = rtrim(ROOTPATH, '/\\') . '/public/assets/images/abhi.png'; +$img = static function (string $key) use ($charts): string { + $path = $charts[$key] ?? ''; + if ($path === '' || !is_file($path)) { + return '

'; + } + + return ''; +}; +?> + + + + +ABH MIS Report — <?= esc($header['policy_number'] ?? $policy_id) ?> + + +
+ + + + + + +
+ + ABHI + + +
Policy Number
+
Client Name
+
TPA Name
+
Last Refresh
+
+ + + + + + +
+
Premium
+ + + + + + + + + + + +
ParameterValue
Insurer Name
Claim processing team
Policy Number
Policy Start Date
Policy End Date
Lives as on date
Premium paid as on date
+
+
Claim
+ + + + + + + + + + +
ParameterValue
Claim Paid + Outstanding
Claims paid Amount
Claim Outstanding Amount
ACS IPD Claim
No. of claims paid
No. of claims Outstanding
+
+ + + + + + +
+
Total Claim Count/Amount
+
+
+
Pre-Auth TAT By Claim Count
+
+
+ + + + + + + +
+
Claim Status
+ + + + + + + + + + + + +
Claim StatusNumberReported AmountIncurred Amount
+
+
Policy Premium
+ + + + + + + + + + + + +
SrNoAmountValue
Total
+
+
 
+
+
+
Lives
+
%
+
ICR
+
+
+ + + + + + +
+
Reimbursement TAT By Claim Count
+ + + + + + + + + + + + + + + + + + +
Date DifferenceClaim CountTAT %
Total
+
+
Premium, Earn Premium and Claim Incurred Amount
+
+
+ +
Gender-wise Claims
+ + + + + + +
+
Total Claim Number
+
+
+
Total Claim Amount
+
+
+
Gender Incurred
+ + + + $gLabel, 'count' => 0, 'amount' => 0]; + ?> + + + + + + + + + + + + + + +
GenderClaim CountClaim Incurred Amount
Total
+
+ +
Claim Type
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Claim TypeClaim CountClaim Count %Claim AmountClaim Amount %Claim Incurred AmountClaim Incurred Amount %
' : '  ' ?>' : '' ?>
Total100.00100.00100.00
+ + + + + + +
+
Relation
+ + + + + + + + + + + + + + + + + + + + + + +
RelationIncurred Claim CountClaim Count %Claim Incurred AmountClaim Incurred Amount %
Total100.00100.00
+
+
Member Type
+ + + + + + + + + + + + + + + + + + + + + + +
Member TypeIncurred Claim CountClaim Count %Claim Incurred AmountClaim Incurred Amount %
Total100.00100.00
+
+ + + + + + +
+
Age
+ + + + + + + + + + + + + + + + + + + + + + +
AgeIncurred Claim CountClaim Count %Claim Incurred AmountClaim Incurred Amount %
Total100.00100.00
+
+
Diagnosis
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
DiagnosisCountCount %AmountAmt %ACSLR %
Total100.00100.00
+
+ + + + + + +
+
Utilization Report for Employees (In-Patient Claims)
+ + + + + + + + + + + + + + + + + + + + + + + + + +
No. Of ClaimBeneficiariesIncurred Claim CountClaim Count %Claim Incurred AmountClaim Incurred Amount %
Total100.00100.00
+
+
Utilization Report for Dependent (In-Patient Claims)
+ + + + + + + + + + + + + + + + + + + + + + + + + +
No. of ClaimsBeneficiariesIncurred Claim CountClaim Count %Claim Incurred AmountClaim Incurred Amount %
Total100.00100.00
+
+ +
Hospital Name
+ + + + + + + + + + + + + + + + + + + + + + +
Hospital NameIncurred Claim CountClaim Count %Claim Incurred AmountClaim Incurred Amount %
Total100.00100.00
+ + + + + + +
+
Claim Paid Count By Claim Type
+
+
+
Claim Paid Amount and ACS
+
+
+ + + + + +
+
Claim Count By Claim Status
+
+
+
Claim Amount By Claim Status
+
+
+ +
Hospital City
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Hospital CityClaim CountClaim AmountClaim Paid CountClaim Paid AmountClaim Outstanding CountClaim Outstanding AmountTotal ACS
Total
+ + + + + + +
+
Claim Paid Count and Claim Outstanding Count by Registration Month
+
+
+
Claim Paid Amount, Claim Outstanding Amount by Registration Date
+
+
+ + +
Registration Month Detail
+ + + + + + + + + + + + $month): ?> + + + + + + + + + +
MonthPaid CountOutstanding CountPaid AmountOutstanding Amount
+ + +
+ + diff --git a/app/Views/claims_mis_icici.php b/app/Views/claims_mis_icici.php new file mode 100644 index 00000000..4d8bf4fd --- /dev/null +++ b/app/Views/claims_mis_icici.php @@ -0,0 +1,1211 @@ + 0 ? $fmt($count, 0) : '--'; + } + if ((int) $count <= 0 && (float) $amount <= 0) { + return '--'; + } + return $fmt($amount); +}; +$cnt = static function ($n) use ($fmt): string { + return ((int) $n) > 0 ? $fmt($n, 0) : '--'; +}; +$amt = static function ($n) use ($fmt): string { + return ((float) $n) > 0 ? $fmt($n, 0) : '--'; +}; +$acs = static function ($n) use ($fmt): string { + return ((float) $n) > 0 ? $fmt($n, 0) : '--'; +}; +$pct = static function ($n): string { + if ($n === null || $n === '') { + return '--'; + } + return ((int) $n) . '%'; +}; + +$ageBands = ['00-05', '06-18', '19-25', '26-35', '36-45', '46-55', '56-65', '66-75', 'Above 75']; +$relations = ['Self', 'Parents', 'Spouse', 'Children', 'Siblings', 'In Laws', 'Others']; +?> + + + + +ICICI Lombard - Portfolio Analysis Report + + + + + +
+
+ +
+ +
+

ICICI Lombard General Insurance Company

+

+ +

Portfolio Analysis of  

+

Policy Number :  

+

Policy Period :

+

Data upload date :

+
+ +
+ + + + + + + + + + + + + + + + + + + + + + +
S.No.ContentsPage No.
1Portfolio AnalysisPage 2
2Enrollment SummaryPage 3
3Age Wise AnalysisPage 4
4Relation ACSPage 5
5Amount Band-wise AnalysisPage 6
6SI Band-wise AnalysisPage 6
7IL Take CarePage 7
8Disease-AnalysisPage 8
9Claim Utilization reportPage 9
10Top HospitalsPage 10
11Top CitiesPage 11
12TAT AnalysisPage 12
+
+
+ + +
+
Portfolio Analysis
+ +
+ + + + + + + + + + + + + + + + + + + + + +
Premium/LR_Details
PremiumEarned PremiumLoss Amount PaidLoss Amount O/SHit (LOSS)Claim CostGross Incurred CostLoss RatioAs on
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Claims Summary
StatusCashlessReimbursementOverall
 No of ClaimsClaims/OS AmountPaid/OS AmtNo of ClaimsClaims/OS AmountPaid/OS AmtNo of ClaimsClaims/OS AmountPaid/OS Amt
Total All
+
+ +
+ + + + + + + + + + + + + +
ILTC Summary
ILTC %RI IntimationsILTC IntimationsILTC %
Intimations
+
+ +
+ + + +
+ Notes: +
    +
  • No of Claims Based on Incidence.
  • +
  • AL Approved : Cashless requests approved, Documents pending
  • +
  • Claim / OS Amount - Claimed amount against settled cases. Claimed amount to the extent of SI against outstanding cases
  • +
  • Claims WIP : Claims under process.
  • +
+
+ Key Takeaways: +
    + +
  • + +
+
+
+
+ + +
+
Enrollment Summary
+ + + + + + + + + + + + +
Enrolled LivesClaimsClaim Frequency
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 ? (int) round((($colT[$rel] ?? 0) / $grand) * 100) : 0; + ?> + + + + + +
Age wise Enrollment Summary
Age BandRelationshipOverall
  
Overall
Percentage (%) 0 ? esc($p . '%') : '--' ?>100%
+ +
+ Key Takeaways: +
    + +
  • + +
+
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Age BandCashlessReimbursementTotal
 No of ClaimsAmountACSNo of ClaimsAmountACSNo of ClaimsAmountACS
Overall
+ +
+ + + +
+ Key Takeaways: +
+
+ Notes: +
    +
  • No of Claims Based on Incidence.
  • +
  • ACS- Average Claim Size. Amount/No. of Claims
  • +
+
+
+ +
+ +
+
Relation ACS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
RelationCashlessReimbursementTotal
 No of ClaimsAmountACSNo of ClaimsAmountACSNo of ClaimsAmountACS
Overall
+
+ + + +
+ Key Takeaways: +
    + $maxAcs) { $maxAcs = $a; $maxRel = (string) ($rr['label'] ?? ''); } + } + if ($maxRel !== ''): + ?> +
  • The Average Claim size is more in which is
  • + +
+
+ Notes: +
    +
  • No of Claims Based on Incidence.
  • +
  • ACS- Average Claim Size. Amount/No. of Claims
  • +
+
+
+
+ + +
+
Amount Band-wise Analysis
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Amount BandCashlessReimbursementTotalPercentage
 No of ClaimsAmountNo of ClaimsAmountNo of ClaimsAmount% Claims% Value
0 ? esc(($r['pct_claims'] ?? 0) . '%') : '--' ?> 0 ? esc(($r['pct_value'] ?? 0) . '%') : '--' ?>
Overall100%100%
+ +
SI Band-wise Analysis
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SI BandCashlessReimbursementTotalPercentage
 No of ClaimsAmountACSNo of ClaimsAmountACSNo of ClaimsAmountACS% Claims% Value
0 ? esc(($r['pct_claims'] ?? 0) . '%') : '--' ?> 0 ? esc(($r['pct_value'] ?? 0) . '%') : '--' ?>
Overall100%100%
+
+ Notes: +
    +
  • No of Claims Based on Incidence.
  • +
  • ACS- Average Claim Size. Amount/No. of Claims
  • +
+
+
+ + +
+
IL Take Care
+ + + + + + + + + + + + + + + + + + +
ILTC App Engagement
MonthNo. of Self LivesActive UsersIL Take Care App DownloadApp Download Ratio
+ + + + + + + + + + + + + + + + + +
ILTC App Feature Usage Report
MonthE Card Download %Face Scan Utilization %ILHealth Blog Utilization %Cross Sell Utilization %
+ + + + + + + + + + + + + + + + + + +
ILTC Service Usage Report
MonthHAT RequestHAT FulfillmentILHD prescriptionExpertise utilizationHealth Claim Utilization
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Utilization report for Employee
No of claims in current policyNo. of employeesValue (Rs)% Claims% Value
0 ? esc(($r['pct_claims'] ?? 0) . '%') : '--' ?> 0 ? esc(($r['pct_value'] ?? 0) . '%') : '--' ?>
Total 0 ? esc(number_format((int) $te['members'])) : '--' ?> 0 ? esc(number_format((float) $te['amount'])) : '--' ?>100%100%
+ + + + + + + + + + + + + + + + + + + + + + + + + +
Utilization report for Dependents
No of claims in current policyNo. of employeesValue (Rs)% Claims% Value
0 ? esc(($r['pct_claims'] ?? 0) . '%') : '--' ?> 0 ? esc(($r['pct_value'] ?? 0) . '%') : '--' ?>
Total100%100%
+ +
+ Key Takeaways: +
+
+
+ + +
+
Disease-Analysis
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Disease CategoryCashlessReimbursementTotal
 No of ClaimsAmountACSNo of ClaimsAmountACSNo of ClaimsAmountACS
Overall
+
+ Key Takeaways: +
+
+
+ + +
+
Claim Utilization report
+ + + + + + + + + + + + + + + + + + + + + + + + +
Utilization report for Employee
No of claims in current policyNo. of employeesValue (Rs)% Claims% Value
0 ? esc(($r['pct_claims'] ?? 0) . '%') : '--' ?> 0 ? esc(($r['pct_value'] ?? 0) . '%') : '--' ?>
Total 0 ? esc(number_format((int) $te['members'])) : '--' ?> 0 ? esc(number_format((float) $te['amount'])) : '--' ?>100%100%
+ + + + + + + + + + + + + + + + + + + + + + + + +
Utilization report for Dependents
No of claims in current policyNo. of employeesValue (Rs)% Claims% Value
0 ? esc(($r['pct_claims'] ?? 0) . '%') : '--' ?> 0 ? esc(($r['pct_value'] ?? 0) . '%') : '--' ?>
Total100%100%
+
+ + +
+
Top Hospitals
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Hospital NameCityCashlessReimbursementTotal
  No of ClaimsAmountACSNo of ClaimsAmountACSNo of ClaimsAmountACS
Overall--
+
+ Notes: +
    +
  • No of Claims Based on Incidence.
  • +
  • ACS- Average Claim Size. Amount/No. of Claims
  • +
+
+
+ + +
+
Top Cities
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CityCashlessReimbursementTotal
 No of ClaimsAmountACSNo of ClaimsAmountACSNo of ClaimsAmountACS
Overall
+
+ Notes: +
    +
  • No of Claims Based on Incidence.
  • +
  • ACS- Average Claim Size. Amount/No. of Claims
  • +
+
+
+ + +
+
TAT Analysis
+ + + + + + + + + + + + + + + + + + + + + + + +
MonthReimbursement (in Days)Cashless (in Hrs)
  Fresh ALEnhancement
+
+ Key Takeaways: +
+ Notes: +
    +
  • The standard paid TAT is 8 Days
  • +
  • The standard cashless TAT is 1hr for Fresh and Enhancement cases.
  • +
  • Paid TAT - All reimbursement claims that have been paid. It is calculated as the period between the last communication date to the payment date which excludes verification cases.
  • +
  • Cashless TAT - All cashless claims other than reopen cases, offline cases and DNF cases.
  • +
+
+
+ + + diff --git a/app/Views/claims_mis_medi_assist.php b/app/Views/claims_mis_medi_assist.php new file mode 100644 index 00000000..e4bc38fc --- /dev/null +++ b/app/Views/claims_mis_medi_assist.php @@ -0,0 +1,1015 @@ + $v === null || $v === '' || (is_numeric($v) && (float) $v == 0.0); + +$num = static function ($n, int $d = 0, bool $allowZero = false) use ($isBlank): string { + if (!$allowZero && $isBlank($n)) { + return ''; + } + return MaFmt::fmtNum($n, $d); +}; +$rs = static function ($n, bool $allowZero = false) use ($isBlank): string { + if (!$allowZero && $isBlank($n)) { + return ''; + } + return MaFmt::fmtRs($n); +}; +$pct = static function ($n, int $d = 2, bool $allowZero = false) use ($isBlank): string { + if (!$allowZero && $isBlank($n)) { + return ''; + } + return MaFmt::fmtPct($n, $d); +}; +$lakh = static function ($amount) use ($num): string { + if ($amount === null || $amount === '' || (is_numeric($amount) && (float) $amount == 0.0)) { + return ''; + } + return '₹' . $num((float) $amount / 100000, 2) . ' Lakh'; +}; + +$statusKeys = ['paid', 'doc_shortfall', 'policy_exclusion', 'processed', 'in_process']; +$statusNums = ['paid' => 1, 'doc_shortfall' => 2, 'policy_exclusion' => 3, 'processed' => 4, 'in_process' => 5]; +$relations = ['Self', 'Spouse', 'Child', 'Parent', 'Others']; +$ageBandList = [ + '0-5', '6-10', '11-15', '16-20', '21-25', '26-30', '31-35', '36-40', + '41-45', '46-50', '51-55', '56-60', '61-65', '66-70', '71-more', 'Not classified', +]; +$utilBuckets = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', 'Above 10']; +$amountBandList = [ + 'Upto 10000', '10001 - 25000', '25001 – 50000', '50001 – 75000', '75001 – 100000', + '100001 – 200000', '200001 – 300000', '300001 – 400000', '400001 - 500000', + '500001 - 750000', '750001 - 1000000', 'Above 1000000', +]; +$livesRelCols = [ + 'employee' => 'Employee', 'spouse' => 'Spouse', 'children' => 'Children', + 'father' => 'Father/Father in Law', 'mother' => 'Mother/Mother in Law', + 'siblings' => 'Siblings', 'others' => 'Others', +]; + +$renderMaFooter = static function () use ($meta): void { + $by = trim((string) ($meta['generated_by'] ?? '')); + $at = trim((string) ($meta['upload_at'] ?? $meta['generated_at'] ?? '')); + echo ''; +}; + +$renderMaHeader = static function (array $meta, array $header, string $logoSrc): void { + ?> + + + > + + + + + + + + + + + + + . + + + + + + + + + + Subtotal + + + + + + + + '; + return; + } + echo '' . esc($num($c, 0, true)) . '' . esc($rs($a, true)) . ''; +}; + +$renderAmountBandRow = static function (array $row, array $relations) use ($num, $rs, $pct): void { + ?> + + + 0, 'amount' => 0]; + $hasData = ((int) ($r['count'] ?? 0)) > 0 || ((float) ($r['amount'] ?? 0)) > 0; + ?> + + + 0 || ((float) ($t['amount'] ?? 0)) > 0; + ?> + + + + + 0, 'total_premium' => 0.0, 'earned_premium' => 0.0, 'policy_run_days' => 0]; +foreach ($indexPolicies as $ip) { + $indexTotals['lives'] += (int) ($ip['lives'] ?? 0); + $indexTotals['total_premium'] += (float) ($ip['total_premium'] ?? 0); + $indexTotals['earned_premium'] += (float) ($ip['earned_premium'] ?? 0); + $indexTotals['policy_run_days'] = max($indexTotals['policy_run_days'], (int) ($ip['policy_run_days'] ?? 0)); +} + +$pageBreak = !empty($embed) ? ' page-break' : ''; +?> + + + + +Medi Assist - Portfolio Analysis Report + + + + + +
+ + +

This report has been generated for the following policies:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Policy NumberPolicy HolderPolicy Start DatePolicy End DateLivesTotal PremiumEarned PremiumPolicy Run Days
Total
+ + +
+ + + +
+ + +

Portfolio Report

+

+ As of , the portfolio covers + lives. Premium updated in our system is + . + A total of claims have been reported, with Incurred Amount of + . + The Incurred Claims Ratio (ICR) is on premium updated and + on Earned Premium. + The claim incidence rate is (Incurred Hospitalization claims per 100 lives). + Ratios based on premium in Insurer's System would prevail. +

+ +
+
+

1.0 Policy Lives

+ + + + + + + + + +
CategoryCount
1.1 At Inception* & Addition
1.1.1 At Inception *
1.1.2 Addition
1.2 Deletion
Current Lives
+
* Inception Lives inclusive of lives added with policy or subsequently, with coverage date from policy start date
+
+
+

2 Policy Premium

+ + + + + + + + + +
CategoryAmount (₹)
2.1 First Time
2.2 Addition
2.3 Deletion
2.4 Total Premium
2.5 Earned Premium (EP)
+
+
+ +

3 By Claim Status

+ + + + + + + +
Claim StatusClaim Count% Claim CountClaim Amount (₹)% Claim AmountIncurred Amount (₹)%Incurred Amount
+ +

Claim Type

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Claim TypeClaim Count% Claim CountClaim Amount (₹)% Claim AmountIncurred Amount (₹)%Incurred Amount
IP
Total (IP)
OP
Total (OP)
Grand Total
+ +
+
+

8 IP Claim Type

+ + + + + + + +
Type8.1 No. of IP Claims8.2 Claims made per 100 Lives Insured
Cashless
Reimbursement
Total
+
+
+

10 Claims that are in Error

+ + + + + + +
StatusClaim Count
Processed
Total
+
+
+ + +

+ + +

9 Claims Pending With

+ + + + + + + + + + + + + + + + + > + > + + + + + + + + +
CategoryMedi AssistInsurerMemberProviderTotal
Claim CountIncurred Amount (₹)Claim CountIncurred Amount (₹)Claim CountIncurred Amount (₹)Claim CountIncurred Amount (₹)Claim CountIncurred Amount (₹)
+ +
**Please see the policy details page for more information on the policies that were used to generate this report.
+ +
+ + + +
+ +

Savings Summary

+

Total Savings for the portfolio from Proportionate Deduction, Defined Benefit, Copay, Hospital Discounts, FWA, and Case Management is

+ + + + + + + + + +
ClassificationClaim CountSavings (₹)
+
* Includes Claims awaiting for insurer concurrence
+
**Please see the index page for more information on the policies that were used to generate this report.
+ +
+ + +
+ +

Top 10 Distribution Across Providers (In-Patient Claims)

+ + + + + + + + + + + + + + + + + + + + +
Ranking nameClaim Count% Claim CountApproved Amount (₹)% Approved Amount
Total
+
*Based on Settled/Processed Hospitalization Claims Incurred
+ +

Top 10 Ailment Group wise Summary (In-Patient Claims)

+ + + + + + + + + + + + + + + + + + + + +
Ailment NameClaim Count%Claim CountApproved Amount (₹)% Approved Amount
Total
+
*Based on Settled/Processed Hospitalization Claims Counts
+
**Please see the index page for more information on the policies that were used to generate this report.
+ +
+ + +
+ +

Distribution Across Beneficiary and Age Wise Summary (In-Patient Claims)

+ + + + + + + + + + + + + + + + + + + + +
Relation TypeClaim Count% Claim CountApproved Amount (₹)% Approved Amount
Total
+ +

Age Wise Summary (In-Patient Claims)

+ + + + $band, 'lives' => 0, 'count' => 0, 'count_pct' => 0, 'approved_amount' => 0, 'amount_pct' => 0]; + ?> + + + + + + + + + + + + + + + + + + +
Age Band BucketLivesClaim Count% Claim CountApproved Amount (₹)% Approved Amount
Total
+
**Please see the index page for more information on the policies that were used to generate this report.
+ +
+ + + +
+ +

Utilization Report for Employees (In-Patient Claims)

+ + + + $bucket, 'member_count' => 0, 'count_pct' => 0, 'approved_amount' => 0, 'amount_pct' => 0]; + ?> + + + + + + + + + + + + + + + + +
No. of ClaimsEmployees Claim Count% Claim CountApproved Amount (₹)% Approved Amount
Total
+ +

Utilization Report for Dependents (In-Patient Claims)

+ + + + $bucket, 'member_count' => 0, 'count_pct' => 0, 'approved_amount' => 0, 'amount_pct' => 0]; + ?> + + + + + + + + + + + + + + + + +
No. of ClaimsDependents Claim Count% Claim CountApproved Amount (₹)% Approved Amount
Total
+
**Please see the index page for more information on the policies that were used to generate this report.
+ +
+ + +
+ + + +

+ + + + + + + + + + + + + + $band, 'relations' => array_fill_keys($relations, ['count' => 0, 'amount' => 0]), 'total' => ['count' => 0, 'amount' => 0, 'pct' => 0]], $relations); + } + $bandTotal = $bandsData['total'] ?? []; + ?> + + + 0, 'amount' => 0]; + $has = ((int) ($r['count'] ?? 0)) > 0 || ((float) ($r['amount'] ?? 0)) > 0; + ?> + + + + + + + + +
Amount BandSelfSpouseChildParentOthersTotal
CountAmountCountAmountCountAmountCountAmountCountAmountCount%Amount
Total
+ +
**Please see the index page for more information on the policies that were used to generate this report.
+ +
+ + + +
+ + + + + + > + > + + + + + + + + +
No. of Claims Pending withMedi AssistInsurerMemberProviderTotal
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + +
ParticularsInception/AdditionDeletionCurrent Lives
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MonthParticularsEmployeeSpouseChildrenFather/Father in LawMother/Mother in LawSiblingsOthers
AddDelAddDelAddDelAddDelAddDelAddDelAddDel
Total
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + +
ParticularsPremiumRefundTotal
Closing Premium
+ + + + + + + + + + + + + + + + + + + + + +
MonthParticularsPremiumRefundTotal
+ +
+ + +
+
Report as on:
+

Glossary

+ + + + + + + + + + +
LabelDescription
+
**Please see the index page for more information on the policies that were used to generate this report.
+ +
+ + + diff --git a/app/Views/claims_mis_vidal.php b/app/Views/claims_mis_vidal.php new file mode 100644 index 00000000..c23930b9 --- /dev/null +++ b/app/Views/claims_mis_vidal.php @@ -0,0 +1,869 @@ + $num($c['count'] ?? 0), + 'amount' => $num($c['amount'] ?? 0), + ]; +}; + +$genderMax = 1; +foreach ($chartGender as $g) { + $genderMax = max($genderMax, (int) ($g['male'] ?? 0) + (int) ($g['female'] ?? 0)); +} +$ageMax = 1; +foreach ($chartAge as $a) { + $ageMax = max($ageMax, (int) ($a['total'] ?? 0)); +} + +$ageBarColor = static function (string $dominant): string { + return match (true) { + $dominant === 'Child' => '#4472c4', + str_contains($dominant, 'Self') => '#264478', + str_contains($dominant, 'Parents') => '#ffc000', + default => '#70ad47', + }; +}; + +/** DomPDF-safe horizontal bar (nested table widths). */ +$renderBar = static function (float $pct, string $color): void { + $filled = (int) max(0, min(100, round($pct))); + $empty = 100 - $filled; + echo ''; + if ($filled > 0) { + echo ''; + } + if ($empty > 0) { + echo ''; + } + if ($filled === 0 && $empty === 0) { + echo ''; + } + echo '
   
'; +}; + +$renderRelationClaimRow = static function ( + string $label, + array $row, + array $ageRelations, + bool $isTotal = false +) use ($num, $pct2, $cellCa): void { + $cls = $isTotal ? ' class="total-row"' : ''; + echo '' . esc($label) . ''; + foreach ($ageRelations as $rel) { + $ca = $cellCa($row[$rel] ?? []); + echo '' . esc($ca['count']) . '' . esc($ca['amount']) . ''; + } + $tot = $cellCa($row['total'] ?? ($row['_total'] ?? [])); + echo '' . esc($tot['count']) . '' . esc($tot['amount']) . ''; + $pct = $row['pct'] ?? []; + if (is_array($pct) && (isset($pct['count']) || isset($pct['amount']))) { + echo '' . esc($pct2($pct['count'] ?? 0) . ' / ' . $pct2($pct['amount'] ?? 0)) . ''; + } else { + echo ''; + } + echo ''; +}; + +$renderRelationPctRow = static function (array $colPct, array $ageRelations) use ($pct): void { + echo '%'; + foreach ($ageRelations as $rel) { + $p = $colPct[$rel] ?? []; + if (is_array($p)) { + echo '' . esc($pct($p['count'] ?? 0)) . '' . esc($pct($p['amount'] ?? 0)) . ''; + } else { + echo '' . esc($pct($p)) . ''; + } + } + echo '' . esc($pct(100)) . '' . esc($pct(100)) . ''; +}; +?> + + + + +Vidal Health - Corporate Analysis Report + + + +
+ + + +
+ +
+
+ +
+
+ Corporate Office : Tower-2, 1st floor, SJR I Park, Plot No: 13,14,15 , EPIP Zone, Whitefield, Bangalore-560066
+ Phone: 91-80-40125678   Fax : 91-80-41159215   Email: care@vidalhealthtpa.com   Website : www.vidalhealthtpa.com +
+
+ +
Corporate Analysis Report
+ + + + + + + +
+ + + + + + + + + + + +
Corporate Name:
Insurer Policy Number:
Policy Start Date:
Policy End Date:
Total Premium:(in Rs.)
Earned Premium:(in Rs.)
Lives Covered:(in Nos.)
Report Generated By(Broker):
Report Generated Date:
+
+ +
    + +
  1. + +
+
+
+ + + + +
+

1. Incurred Claims Ratio (ICR):

+ + + + + + + + + + + + > + + + + + + +
Claim StatusCashlessMemberTotal
Nos.Amt. (in Rs.)Nos.Amt. (in Rs.)Nos.Amt. (in Rs.)
+ + +
+ + + + + + + + + + + + + + + +
ICR On EP*
Incidence Rate
Disposal Rate
Cost per Claims(CPC)
+
+
+ + + + +
+

2. Hospitalisation Type Details:

+ + + + + + + + + + + + + + + + + + + +
Claim SubtypeCashlessMember
Nos.Amt. (in Rs.)Nos.Amt. (in Rs.)
Total
+
*Considering Only Settled ,Approved and UTR Awaiting (Cheque Pending)
+ +
+ Notes:
+ ICR = (Settled Amt + Outstanding Amt) / Annual Premium
+ ICR on EP* = (Settled Amt + Outstanding Amt) / Earned Premium
+ Earned Premium = Prorated premium as on report generated date
+ Cost Per Claim(CPC) = Approved Amt / Number of Events(Main Claims) for IPD + Daycare Cases
+ Incidents Rate = No of Claim Events/ Lives
+ Disposal Rate = (Settled+Rejected+Awaiting UTR+Cancelled / Claims Reported)
+ * EP- Earned Premium ; O/S - Outstanding
+ * Event = Main Claims Only (Excluding Prepost and Addendum) +
+
+ + + + +
+

3. Member Details - Relationship & Gender wise :

+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
RelationMaleFemaleTotal%
Total
%
+
+
+ + $male) ? '#ed7d31' : '#4472c4'; + ?> + + + + + + +
+
+ Male + Female +
+
+
+
+ + + + +
+

4. Member Details - Age Band & Relationship wise :

+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AgeBandTotal%
Total
%
+
+
+ + + + + + + + +
+
+ Self + Spouse + Parents + Child + In Law/Other +
+
+
+
+ + +

5. Claims Approved - Age Band & Relationship wise :

+ + + + + + + + + + + + 100, 'amount' => 100]; + $renderRelationClaimRow('Total', $totalRow, $ageRelations, true); + $renderRelationPctRow($claimsAge['col_pct'] ?? [], $ageRelations); + ?> +
Age BandTotalTotal %
No.Amt.(Rs.)No.Amt.(Rs.)No.%/Amt.%
+
* Count is only for Approved Claims(Settled and Awaiting UTR(Cheque Pending)) .
+ + +

6. Claims Approved - Amount Band & Relationship wise :

+ + + + + + + + + + + + 100, 'amount' => 100]; + $renderRelationClaimRow('Total', $amtTotalRow, $ageRelations, true); + $renderRelationPctRow($claimsAmount['col_pct'] ?? [], $ageRelations); + ?> +
Amount BandTotalTotal %
No.Amt.(Rs.)No.Amt.(Rs.)No.%/Amt.%
+
* Count is only for Approved Claims(Settled and Awaiting UTR (Cheque Pending)).   * Banding for Incurred Amount
+ + +

7. Claims Approved - Top 15 Ailment wise :

+ + + + + + + + + + + + 100, 'amount' => 100]; + $renderRelationClaimRow('Total', $ailTotalRow, $ageRelations, true); + $renderRelationPctRow($ailments['col_pct'] ?? [], $ageRelations); + ?> +
Ailment GroupTotalTotal %
No.Amt.(Rs.)No.Amt.(Rs.)No.%/Amt.%
+
* Count is only for Approved Claims(Settled and Awaiting UTR (Cheque Pending)) .
+ + +

8. Top 15 Cashless Hospital wise utilization:

+ + + + + + + + + + + + + + + + + +
Hospital_IDHospital_NameNo of ClaimsAmount
No cashless hospital utilization
+ + +

9. Claims Approved - Cashless & Member Summary:

+ + + + + + + + + + + + + + + + + + + + + +
Type of claimEventsEvents%AmountAmount%
TOTAL
+ + +

10. Turn Around Time (TAT) :

+
Claim Process TAT :
+ + + + + + + + + + + + + + +
TAT BandNos.%
Total
+
Note: Only Settled,Awaiting UTR, Approved and Rejected claims are considered
* LDR to Decision date
* only for Member claims
+ + +

11. Month on Month

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Admission MonthHospitalization and DaycareOther than HospitalizationTotal
Inc CountInc AmountInc CountInc AmountInc CountInc Amount
TOTAL
+ + +

12. Payout Ratio

+ + + + + + + +
Claimed AmountSettled AmountPayout %
+ + + + +
+ + diff --git a/app/Views/partials/claims_mis_abhi_helpers.php b/app/Views/partials/claims_mis_abhi_helpers.php new file mode 100644 index 00000000..c2e6be0a --- /dev/null +++ b/app/Views/partials/claims_mis_abhi_helpers.php @@ -0,0 +1,31 @@ +'; + } + + return ''; +}; + +$num = static function ($n, int $d = 0) use ($fmt): string { + return esc($fmt($n, $d)); +}; + +$dash = static function ($v) use ($fmt): string { + if ($v === '' || $v === null) { + return '—'; + } + if (is_numeric($v)) { + return esc($fmt($v)); + } + + return esc((string) $v); +}; diff --git a/app/Views/partials/claims_mis_abhi_script.php b/app/Views/partials/claims_mis_abhi_script.php new file mode 100644 index 00000000..a0a99d9a --- /dev/null +++ b/app/Views/partials/claims_mis_abhi_script.php @@ -0,0 +1,550 @@ + diff --git a/app/Views/tpa_mis_reports_dashboard.php b/app/Views/tpa_mis_reports_dashboard.php new file mode 100644 index 00000000..87ff9ab8 --- /dev/null +++ b/app/Views/tpa_mis_reports_dashboard.php @@ -0,0 +1,401 @@ + + +
+
+
+
+
+
+ + +
+
+ + +
+
+ + +
+
+ +
+ +
+
TPA MIS Report
+ +
+ +
+
+ Select client, branch, and policy to load the report. +
+
+ +
+
+
+
+
+
+ + diff --git a/public/assets/images/abhi.png b/public/assets/images/abhi.png new file mode 100644 index 0000000000000000000000000000000000000000..ec7c1ecf922267120bc9225cd7192fad10619242 GIT binary patch literal 72603 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Жd3LC>8e!=IzTx4FLZHR`-g^3twv%UB) zYp0f$#;Y4kjLId6`W81BFqfv>{M4s^&DyD@rPWhQOY0|>mNrkGS{j@@y)?J`z*n2f zBWsVXDxUO=r>Vi(`mdHN8%xVajxP;QtsJ4ME;H7{WDEU}8;>2m^J#~#eZ%u_d+x41y?LsY4a)WPH!Pn# zy>#l>iKQctJhsH@+BeK@&q4^)b4FL}v}wRC|e zUwgw-yU2Uijy%4!{P<%_>qky5Z5&-%T0XwCbmqjVrBlaFER9yyPb@urL9j)Fr7NnqCL;kp8vcrJoEUGrBla_EiErEFP%JgVrk|0sio2B)%QIARj=s-TUb@o z)IjZCy?X4_(wRq(E)7;UmsZZ4Svqy%#F8D3|8rUe(mG&*;<+z-xy0LdY@9j0w0UM_ zX|%j{|1DQve??*~uYA#qMK5T~u;lsAeeo+c9y|W$#j#UM|L~JPf9fw@_n(h_^d-G4e`@Q)N(`8i#E`R1tHy?fE5ip9U9=!b7AAQ%~?@pH2NP8JN)!3?n z%25x8IA`hY-pQJ;Iq63ny!D#-+g|w!@f*MY_AqoMWie!Tr%U(hn_lcKR5#sh!<{=6$RWw)1K_q>-p_1@cW|I1S{25>vhamHE>UVUBq z;s5ild|#)>iVy5Rc*Rq$+_~G_^Wl$IiODGmJhFU>LPw8buCiSFl;=L_BY*Smd><)= zaJ=l$!Dl}3i93Hq^m1<9aqvkWdiVSCepzFDg(EP)Q+2vO@~qc=^Pm0BAN}5F1Iy<> z?|I3wW5=%f(7WH8_e-cgd3Qco=&QRQeT0AiUEeLa?|~or(;xov*B6f+>GpIQS81i$ zC`M=*sBp*!AHQMkuipDp|K?3UwE2m@|KP6(A=rEEjnDqrdq0pTqcH;$*nQLWPyh5i zcm3u@lHi-@Mk+inyy=GPK5_d;`}z7N#rir=OOk`PyzKeCNALK|TJq($-FoNWzUOdt zyZq;#qTh4}R+JKhRwqMjYNy3zlTyWqWqL?1kU?AAjym|K$zdWeKl*`76b}cii!! zkNw@>=UN%k1N(T!t6q8NQ7c$KeuTA;eC%JpdQ|NntS!G}d1Hgl#^wt@^8OFx-LfVt9l7bmxT^OU5#wWJ zo^aaLq?ccL<&(eo%jUI^EN!gQ>2#+AogRYoPbicfx89*yU_8EbQ@ztkEU_^yqL|4- zHu1wJaIeq((OOdHNgY13F>{gEkXSk~lOxG2li+3IFqwsJZRypPa${ruYv1q&Jsywg zcl$oGuxPsI3hK%;5Ry?ZWz_E=_U++JaM(P<8p9auZ~XRegn@+hdd!Z+9b^{neD^=T zqCUBz`$5vpx^(+Z~Y6@)( z2jWV*UW`z^o~e;^cJ5~2JWgol(;i)EFm=FHo>35tv}P?-_+CoY)g62lnpCoj_#Dq% zkT4jBokd{J7!DMIodZvIvtn1Lulga72jVHDARv<aCjzn_XH&5HybDax&Jl&J&l0{eID;z>8&OyYp`;;H}eoA3OA z(Swh7_h&tHP!Twq7^-g0N|Lg!Q&tBx>nj6RPObK3?MYF%;rLyd&~+*`sni&$ipfx# z-8KZOSUo{|T0A~+0E#{uGpa}tBppMYNj8k9%nhO6L1hU$(wqY-p-;QBxN)!*>-`XE%pA>A~ks}oK?_}DYW#+ZHci|kw2fvE$#JAKOI%X;%u_k3A! zo>VJBRWhID=)#iJ&Mu@GNe~$C>A1i?lW_k(-u_(ff9Okh)}Fko`IR5|VV7H5=GKzO zc@e0b&PvN~{p8R1Z~C`i|LhO`&O3kk^hfXHPoQOU%ks+d zt|Q#jE=&k!E?n;x3~i@dHQG0gxaQQ>dT@QAp}{LCAR>VKm8dWUj4fhy#B|2 zK>YZR{74v%hJ4e%|E}vk`lg@0p|?@c%NIEGw41>wPJQSkqHvsf@Ug|~in9N!Z~yh> zv2gT4Q*Y(Gbd$#bgje9ztU<5>R6pn7lWzE^d+ng^I$V+K($$@7uYBZfKmU_!hk_z?1l=q{CNnS?h+RdX<6)tbQjaTA zm2m76cUGy?F}Usm#^{vBCl)el>Ik6-(l_NE0wIJHLPiB7AuvgT)RA-4+d3C`qynW4 zMjKYn3|KpQygUBj?cX>zw6||a4;G(W?~V6(5pcO8x$)|x{M$hFnY+I6)ZO=sJ-vCx z<1xvB%fpSg-S)_?o3B147kbiZ5l$XEo}PO2NcSH<`q8V3R9~UH8O8d52k*N3Ormu# z+K^~VqLo%Yj+wR$sM%s;LBnP@5yV^K)cYqLnALUXr9r6eV317<~8>pLg;@pGqNewxYgeB3vKKt+x@o17l(k2WWp{r3(^oCKqC=wn3*Y!gb@Z2hQS>m3SJvq) z?B|9TK5tze-upn=HFcKeaxfmMAYf=~77y${#ev0><$A)vSLmj^N&6|ZF9MrFa>cYK5}+T_ebk9YCnU)RpQHSKkgL87z*t;bqv z+!UH1kV3TeToW%#3;yOK|M+A7;dQTjGcNRyVN6l}=*BPp+V_9#_zA|vn7vmW;z?iq zWk18USNsBQteMM;pZv+UxK5tnMg_{7ri90l7zyKXvQT?68_?wjq8_2<48QYx?+DlE zv`KXbq*N85m9Gd>J;ANq=V8KuCOpBQkpU4b!Urc^445jDpp0g&*JtU>DtEpA_FF&i zO+UEsN5B3HYdCL=!)ONx!OF%ubd7QX?6}<7)hW8DC>>mW-SuY<|GTe$=^wuB=N_s0 zDTNIDyKnn8bKRicvF902ef}exOJWRkP}tExB`B1TC?q&*RM}P4CY{wiy3cmJ-zUS4S_=*4V^LPEtd#~QNu)yZ> z8XP;l#}t7bS&z+XOdbN9TzPGIa%o{#)?rW%x%|a1V#nQg^S6KfcXZKIXV#xi>7Fx( z`H(Cfb4i!E((>WIdoR0p?`CxDD5-&7Kcn0nGbaR(f8x&9eDM#z@h$Iq^P3(|g(7J@ z5e=w-qpYeV2)^jsUcc+3KmOCN^{dOw_2*eBH@WhuH~!PJ-}J`sVc(7q{rHc+$&WTi z{Meg+DtX$AAAjC^KKPL*qeVdAWgw{9k)}D;Xs-Oc7yr&5-|-LM@fF|sMvZgw*M9nE zE5;Rzy*aY{5Fh>cM>ypNqzirOYKDE-$8Fpb#bRxtaC?G$T9<6FK3Cj{XZ?Ll2?#H| zaMELCKu90hy-+9J4m~T7u>ovFE+;XO$Q!7wnuu$x-04I--EvHP@QaU z`b}S@sdbcV>zV)99WQlt`BqOFu`XUf@M2rzO9HYDN-6?Ez^E+22!8Xoe>EiDZ!RsL z=DWW8``$7Z?rYbEo0lo2IKFy@CoObNzV)p?ReD>NV=UkMlRu*wTKB)d^^HLYC!`SI zEgdaEV3VRi$cWi0b>Ng+=WD+6-|@k>{dUX%I!8G!G~Nq*h{{kZ5Q2!Q>CnhRg&>8G zf(m@aYV1xWS^7UmX+X$8 zPYAjy@s*T;5D2x!S2a2abPx!{q}UgaX}1*(HYp%Ph+{+ewpdq5NpK#lwcSq6T2Z2Q z&hgv7_dovp)wezAYwx||V^?o(Zj$(bT^}yiqcM5516Nlp2G70!=dZq^JhjqwQXzT? zTzA#CbyInu_^ZEuW8X=ZAAEcd_dWJ3&TM|D+nqy>N^%!S0t`k4b?}tRapMh#Ir89R zu%&Swc^^ci zhn6moqXb!RzZjM*%9O=gvN&+e4J@QNi8g4VC`RL{z++S(t9=M$Sw?M3l1?Y7mY2~R z1G;t96!u!?ltlTGRCwl&vulpvk^61fP%Z&l)T#nf_KlJn27iTwJ^U8eZ z0`rRtl%p{Z-gm#~cY6dEVZzOpFm=8r1UESej^JZWqp%)n{Un`hMWB>{v9~bZ?5-3; z<6xre&q=pjDSOr9q^5!4>A^Wx;{jm@;EH234k>0VkbQ*5FZf(BPp$p8XhFnQZ zA~Jaj|qJcIFw z9hdE^*}M3=bo2*yT(&RR;5h!^BW&FB@U?qX=l^N%y`$~C$~*thE^j&g78T2qEXz&q zmSr0oV}ook;6hE9Kp+r83!x+-GifBlgq{$7Lm(Nz7%-t@0|s0$?iCyNBFmDjVs+_W z-E!(%cKQABo^y32+tdsm*3z@qSywvc?fco!-uqh!y`U6EXyXV?!43duTf^|uL-CC| zZ4X&H!(4aUyVJyi4v;!PYK06mQY(;%ZkoW@c(`lxRy-L-riiK@$7gq@svt?rzFpfu zVWI#nJFfcYkGs@m-b!e7+J$_-q#hf?r$6|i*f3~d!kQvkNa-10yXM4~o^;}eyX3~C8F^l)L5Ol>=PTbnC6Q8jr1U~bq?AMy3BtGnaUXh*a)PQ1*|q9%A5=rXXnRQ)?z;2$=ML3I$HpcJoIpy&ai^Ziw!7~? zE$XAKi(y59@>33UpT1Yfy9oM42vYby&8OgAc!3t87)1+Dprk`daMnSi#)2ac<-xV< z@ZPg#?c*0*_@VdACv8vUfna=kf_dd3;=&^|i4D{aUG&Yg7XI1p@!ipI9MaseHN57d zANPCysE&5>_LYt~lX}AAj=0&6mFHWgFsyhPUK9rVpuQp2>BaU-arX|LMs0 zzVXG0R@$K<3PridLSQALQYDG2oN>|1S@-#`Q0hr;yYklaU-{X8Ire)W`|x93EInzk zUSfR?l>i&{WvufIPX^?aYt@`I%?gPaiFUGBaIg}A!}KMZQjz20s_%%5x%CRt_F%*M zm%a5BukFzsw_{tkGxzKhV#X)z#>dw>JJH(kob%87=Cu#pp2xMQkSr8Mt8-$&K>5|0 zz3{V@M*BbR&uI-RwP&idp5-~L{)&UbxIVnYwz`yciSPdJ&mI{yMn9lYq-l@ZNP~xN zxfPjpC`A#O$xyWtx$w$)i}W7vtwC6lq)Su^xa;;?tLl+^-fy);D2dmKTtVUuL8Hnc zhacXRiqEGeCrENwyZ+eCkFA?GTCT8l&vxc7n78R0pZb@U7MkbJoBNr>n$H95+Vte& z=K9TNj$}Nbl^_%nq|BWx7|RMlKz|q_C896Op(Rwj!uf(YEri9ooKDj9-89K$s4;0q zNhrVRkw^2Aj!A8XPYiQ|fO3`=J+pE%mTKB7uKLoY&##Xze12*?c{d?y#N7VSotSQ$ zYQJsvdp3`!-;fJ^r)RRhnnhy@gb@97;FQf$v@->DrQ2iPi(i7i^Jhe^%jyRo7(H$0 z&KIy~-VHj^c3^m3%$e!j3i!fzzIxB^z3a^vU-NIDeb3mg-3(XjjBnbiZvNJH|47uz ze>A%E;4O!pdcu9Lf5RVs^x{jtaL?!e`CqL_1qTay{W$ELiP?fgB{ zgbKgKVo+sf_wu69V5>+W8QU}G1DDZ_GNwqcyan|XSuK5Yss;#ufr>otc-v3VN<$DGi%uYD0M3N+d z$#W1+svzhKRfU96$&njBP`evcodaNS>tq?j+yZ32UIzx zqype_44z5v7+!WPN1S`^?e!quu)EVEjH7)Vtv&lHH#}3!PC!=t;z@SPUPFP|`S2MN z)^AyoR#=I!5`s7)ZFiAM(c86$$QN!Io7+=Fu_EYoky_)+nn@C@biG;I*`t)EQmxL-`UjXN1yw6xEAbRvMMd;qjr)9cAljh)}lMZB-j;Aa?Je>;guo4VByzSdR(?Rx6zK$W)+&V#k&- zL|n#X1%EFMGsp`1kj0Y=ORfr*tHc)#0N<~!T(M9f`!6vN*6Sx6)ps0*%v*=G7H`0& z`ItKX*focpbkbSdZn&H29lN>v%B#M9`s-hl+dK`!N}0^rf?^~wi;p{o7r*t5GT*lS zFD@*lPlS-&D-l3eud4usrI#sN0#(BTuEN-(keIZC`0+HjqO|35*vSy1X*FL~=w?1)BN82@>Zo=?%LaCF| z?RJTSn5b*9Z3hcRSakZ)tXi`k-x_Djn$@Sg@*|&E+4=OR%G!%!EI-gya|HuGlO8Xt zh&*F@swZ7$WEg~0D-}Xj#!htzjHi)$hI$17ye$*LdYMKLZo)m6nGfH^TvfY7}F=-$&Tes=eIGpO?4H{tbSAt?Z}K&h|ds7p}tp0~J=^`g_Jp zOqU{3FNy0lM74p<99CMq%22T;*e%JM9nw63I7TR`l`6=$zG4mWHb z$3350yh(|Wg{<-5CVEM(9M*!Gg`BWLVx=G$8AX?4Y#5`g17)d%jwtV9*FVWXd)y14 zS|X1m8O0o$#bRMrWANU4gZFAM2|qLV#`{cZK_w{Bv<@f3A6@g&55492&pqo~n}2f0 z9~?4gE@O{x&~!7c5STp2+JgIub-L?vC~N8F)cnv3&iIFy&Kdo|&WG2XvupMGmu-Le z@l(e(K8egMbK(fUV?4O#b6^(eAj!S^yQ`n}&j^5IW^;oMp&M$%&LywRLeW$Ev~{>>w7pQy28S2z^M zw5MAL>)CPl9e>lLAHs$a)=D4(Uou<`SH=bd?~Kf{L((aH8-8#?l&}W^T1X z5LW1Tn742#<7bSgOv;O={&#kA z8c5gd|2zF#uB4t41#nb~&?2OVTnp?_&A;SbZ~uxs^3baYw6WUxF1fA=Wu~vX`NHci z`P$pcLea|%&SYV3Ey`G|u_q=;mkKaEG|aLWpEJ4O)vx&LPOPVulU?b_!YB&5HVYH& zZ28ayKihum5W=w7ms)9w%voCp;0aI=$&_; zyyQ8j4O!`$2nh}qS&6ogItq;^F#x>oRaMNCFEp2eqBQRHGLBfj+}-v4>yjvnsKybU zZimy4J(i!1Z6#BZEVi^2)H26G%_8}T{>n@;6!VJryy;F(I_?AQZf8_U=|kbHszi3{ zwb!11_vgR*cHfsBK}ne3V7j76G6z9`>54w_c`$$Fy%4gG$pXMgAqE)Z+zW^Ik~ofe zbj@l#6?*Dto_=vutN%f3&mQs(n_=~ON;<@QQK)L<0<2fU3BLWM|1__DyDm%~d*b7_UH;wS9jhM?qOpWhROV;jz3PqUuXyhNVzSej zS8afvDhSM8qP28V7Lv|di#YSKnwXd`CVGsP>TFB8Y+AqZhN^bkY7pc}N zjCp9geProeW_!zyfSwrr6Sg)p+{+nFs{&ElZ9lCQ(^{B`Sa$oW_)_t_aA;%Wi?m?`gs%c z&vJ#;=Lv~Eaa};$q=-=Fa?#xHeeK8J|Ix#nH_}s{)MYG0^MU7Gw7?oeSgzn)igV6e zXA#cfTyEo1jBKT3c}9I?PVTMnf7G(z}fw7?9FSa_8s@;F!an_|Gf9 zb$zoGp{2w%rz;?G4L1nF5M?z&1rP)=fyP_M53jhwHR6a& zIQHZ{KK#j#?p~nEUw+H`Klsh_4xanoAAj@{|IE%Y0vlkbdXhcOlC~aejBt4lCday* zJkN)XbY!}a2?{LW40sm`Oo1aSWPO@ITX~p&;&QR}yI13p1eGcyix#uu^>28LTBA*p zvu(r1Xw6UWKCJoZs+v-;Y3;JeOYGN%RF4Jon zCZE_gGSz-!B*;BOz>>IxH#wDZjXgVeSGezy)67)++BAyMM=gnS;VBie5$IAhcI5{@ zdQ%vwo0ctK@zSw%+s@BhZ8ksj2n*&7?b~1qX)}N-fRt(g(Wq0cmf~`mzxtp5C_eSE zfAzgyhKpj1EQBk)fS14Ly<+UMUlftnh2*mFFf@GYS1fmpj0s0zlvmZde-|%wQPUOIt>DPVzCgCU=Aps)oYcl25Vy$)L z){D##3q>r7WnHZ_c%e*^lBVfkVtDp7+idb2DJ88|i%4tob{C!7B4MRDu@lfqah;5G zvdO%9iFd#MZ}rxjZv6e;#B?aFpl1wXWE9t^Gc@-gqG}B@Tw_b#q3JTLHAGUd{q~=} zB~X$y>p|{}5DL7cR4SpgHfWV+(qbrNVS?Nfq=qQ>l&qkkW3-Tvo1riaj~J|+2qBu+PyBH|J(N^oV09e(eX#oYPV3vk~Nz!F;~hrlT(yyA0LU4HsE9>4GOh3|RG8R!1xJO4v1T}Vd>hN=}NpWHmk_>TEx z9bWm4x5>%%>t9%xl050*qKMM`c{mj_G;bk#cm!LklLY~L+T8-Dmt=8g+wK=0R3FBK z5;P{ok>nX^*27y9Uv$CC!gecV>GRIIQB=x#trW9k!+Jb2$W{~+Ku(}@%1N(@fIUNg|L%RvI5=9iIgS_B(hO~a)~&M=(aj21hLZO6O%&a zj!F>Wdl@1tq^)D22(_kMjsVw}aVnlqIRHq@Vs&}u?<`HXr+dl$UW24H`w^3~fXn-Y zf0iq(y~uW?AKVD~<)g<3RuUOWChXohIgcC=BE1xaxmn*yL`dNpjRyHtudq)_Q~8>A z|CzY#i$5E)|z&&#r#S{u3`J0t*~pC+w{m|Rwg+;2l4!Qyy#7@yHw4o-yejL zr`v9rSQy*v4&8F`H{Y9V8!KxmX^u}Ud+Gb%7yaN%Uq~^=do9U@$MiCM?liSVEOU!? z1p{9@C`TcaX-1+odnWdvf&jd0d*`OT_l^F%5qMu{K=lRIjPRIZNm&mhP7DRafj+;> zr~=PDsNQT};@x|{m;beSn+sBlRGQq2xG~-Bj_Z!NTJFKD+H)wazOQ!fTi_)McBdo;V)lv4W!QpznEFb zo>6*zDvJJD=Mt6;kjqGTx!#i zclUKSA5#e;WGR4B#M$SbyL$WGHz6a*p1bbyahsTL#{d8tc1c7*RHMe!CPO(Wp{&TM z4w-3dv6VXSeD{0B#sBMLPp+&qHU(as(wmwhGn%QLTYvAhfA=@{a?hI6#x`xNN6ugr zEPd`NT`oHBufF;Z|CIOQ5LXJB>jbZR@kRGEulnKjxijQlL%Z2JqGUvlZnUbD;C_ym=5jnsIYvEcFJoi;zX^pdSB zPdNUon{K%MePPd0no8Jx%LB(eoT?wc^SlAY89L?*{wE{D8D6O7mMzP!ecuP)xZAYd z5r6p?r^=j7sv3$sH&iQC3>kj?npa(T`srPx@Y4D~D5-p?C%c%eGBhU^bL-!}XXmEf zX{2Va1EBz6>&L86xu?;S!&20GV%W~jMWm~*hxXFXws2Cy>EMd*7vECl<6 z78LWqvpfY0`C6oQi3*S^ELOS1Ud2!&kXa;&>m{1qHaFjRQ+@oF>pz?-NuyN98ArR- zqBJzb&a}z7uR8yriVXf*IeF-=-Mf~Q8$*nDdOY{cQ!Z!0=$2*xS+&G;+9MS}shpqm zf|dS>yB?wJ1(V~Gm3-5d^QHB-A%qCZF>UFo4Gpn%>o)o2fBW3a_PFe2jsgqg`nvGF z;h4X>^fRkWmfWmRkXxBs=eoXFh0)GKZl--^3*3$<9txE?K-*kupG!?H9ZqTxT1sC) zH~ipwd5smJ?W&NDis_M)OYI3_>N=ulExE}Vs5{C2%37wR>jjdol*KuFIZWTvFq1M* zl}3AkEheAAJv^P;b@ZXK;1I~W~mFwyOhM4Dq?aOS<8vP!!35T7`XI(GRDkKB6K z>tZjdluJBt^)1WS+`H=Y)zMK*nlZjK*gLQq1G))*gKNlbc@T1os<3 zmMTr4EQ$AIis`Z>&lT*>yPR|SDIfRWxol;()uUP-qL=4TE|UlaS|dvlZRcs6{hTYK zZ-4jAlN+`SM^S*tEURv~ZTP{v?){9YRmn_FZ>mXxVfhQs+KrBzQ5@5hK70jhyHPGjo{im&kHGN3ey+qAuxj>(qOdYex(dJWc`G3&YkIAB8I7E7goO0S3BzeN_>FKaj4aj<3yz;1a2OWUY64S|$Uea&@`9uq! z_Yj${A9vEJY}_@mV#D}&rD7C*PM!L(hu(4LWnXI@w_*ibcTF>j#!AN(pZ}IW|KOud zE@GP97HN|3$U_gE_{#UZN3e6dXr?_TZAR9b#tMlLicwz_IZhO&23mvlkWEdO1LHaI zxT9Hr+igkDI@=Opg(B1;yVtDu$1GgJ-1&zeZ!$g2hz#g8Q@_J%e5uUtZks*EsRiW{i;q4G5yfOB#nBaw6$SFTnmNX|?oxXq zLFQfI$}QEJ6HZu89x0MiWXFNrYm(ezbrh7#HOe|C9Fbgk=Z&9RxcvBk*l^2T3nS&p zTuR$pOqRm<9xHRpK}R03xjNkNX8WY5IYG8_vap#dP#=`bH71fAQ>jurbYbhbH@xQh z@z$6<@ARc;Ygt%d^1<`B?OFEFH8-x9oN5s$MY?U0eA^_-!H^fEu16Bb%v*7Me&U;7 z^*8rFc*};N6-Ob2rgF-$a_iR;axArSg*|B&_3nF6zT&KvB=r*a-Fdq|d*#{8n{wT5 zsX}|ANjERCXJ`ACji0%sz59-bj-5_XsjQHxfbxPxUo$(#(m#9e`is^%{(b??uOQV@HNBv1Ez<$)hDwHc{TSLcnedGod~t<@OYy_=|BMOcIC+JctkJTg%DpiuekW)>`B zB#QA~kn~He(DvzCsoQS?-u>K!H9)x+llLA1HM6?t-M-1M!1HUoP%{&$&pHmvISV>S z=O49f^X}c#suBcx&ccHxXjFGJcTJG?S2qexEQzgEC+96cu~R9ReeBXasx~%s$C@O{ zg6JmB9(zgN-3O>QabHP3ip;dk(385SiE{N@$A_%87w~eq-I%Y zDd!IN%7-po?bc6`ddOs798Ne4lIWOY-nQ_B;L3f+^rU%X(XQ>s+jS}8hdLS@l{JY90|`jKOfnBRyS;qa10 zom7flQ52!4TYa6Xf@*Qce}2<9M&@l<7VHDZ8ok<=E<-?He$<0oY|w-Qu5GW?|7 zy^BOk)ZF1UbB{S@qM8dSb*zG+#&)@Tk|+qtl%W^Exfh&sX|LOQmudGnk zxck^Y{)4~1{gxZQFVT;y}EM44jfyCx1L8LGkN^?eT zpSSF&SJCXrIO*iFR5|*rmFEoKuxV^w=yfv`O7;Q_2QU1YuEwNDjCFLTrcJdmWb<7+ z{Nj^Oyz8*jPWi*o3F5q?kfP+Rqg<_y%|HI=G1^H`k~U~8S-93!Ler8K8))vj=dS4! zUwFe*5*G{BIxn`}NmeeCa3bWNWEt zCCVlROjE}ts8*7Lk3MYEiLZb4Yw!K)m#qyPmBSaWk=wVI<}W%(R!WhRI3GFTZDyqR zUdTXUwRByH^VO=LT%J}0s>G3V79X4MnH~+a3>m6VFsJs|`qhu5 zcRcz)q12fb!^iVq^wJTedJd^|E=ziHUj4y4AA6v6=Bv)vWJ$;)>rP?1TSerOAZ%j+ zDI`)$kPtSY*>>Oq4xanqBdhM)Ewvs#?&MQWVaF~>tuo2H(Fbn0?FQ3RlHC(IR%om& zeD>b-{1*wDofYhv8bYZu3+JxC`MPT!Q(4N{XFvZ`+O2s6VU7?M&}8H|1lSOWy|a#y z%D6c3@OwXh>BZR}zvCU^)~kQw&pT$tLVA9w-!okn!$XrCG<@$pKl`cQx@F6Z69@6lVY zy=J#j0#ORF-XkMTAT`Pt^C_pDv|=v3a~X+yz8gaNl9_W%IAk{*l`-E zQAi!2^oAeZbp6I|07*~?7yjWzuNr3O?h^`|mAF_U5rK1^-hH>0c*zA9N_LJP zL$iA@l`@pVHQRRY+&nEklX;h@TH(|aPZ2b|=7Cjb5`-bOa*yHYNvhQ;)^A_VR68Ju z6yBs9f5cC{OY%vl=xI$)d14#~brQ5?h@Iod3C5%*O z{f4k|iXytaK~0^j}Kt=HXG5aI(|n(!xY z{uBAFPkze1_Kj~{$oBEGy7#YIw(jB8VorUCh3B0UFsFVGwdjspZoGPYvezaILoT@J z<%{X1N7>!uPD$GySc+W#}P*p1Ebxd%Cb^olZ=vA1aXP@pb;iy$^~zIoywXmx9VFz^kJ)m*Md?xV&m#HDAl(~ zR}s=En%y3vRw2zM%8iJS7f7j4?&883lB-FEs2^kC|%YQj0N$cAAk0OHbu^XNY?Vfz6Q! zw9=Hzbz&7Ea!FTsc9k57&lpt^qLb1Pijr4^wy+qR){Z2W>vA9r$+ZjU$!x$?>@XB5Ac@kCbQwWJ+My3%sc;)Q4(VRB1JhsfNK_c}D< z3Yjx3Ty{7~6fog(Tu@kkRS6jGI&?eb$tN~4-EGq?NlK+ML9<8DH8jcfo+@2Ps3e8EbtE-;q_Bs~C20h- zTn2$6iXxoJkx7ooEVkLfbyJk^*sO3H7J6{0&!JxxHis_(C=(K#WUie(@SwC zM;MFFEEOwJgm`1gD6T=GpsNb}-;*LIY7EgaDNZ`Pln5vK=Bo5*Z_F6Y`dKbF1LXSt zIcYYcUAz5ewdH^n;t)!6-16s=ix5yCpXE6$2M}nwCPS7YdS#8&0mq*GT#-mAvQYa} z6>cuwU?BDji3t=q&Kklewb$YDb|EO45#k0!bZ4oOj{NRz}Y@; z%n3*0`x0G!Nt#T_f^;k-(g~!HGw)}*0Kz(Ce<49K8N-Cu!j-M4tC$@orBbdiEi?Y@ zOJDXcUiku!JL)*O^T|z41~sh7XL@A^WKv`L_eA*ue5{=88^i8(n?^y}7wsD~AuA!J zkDco$Qz!6wp2kj`QIX08JkLZ*rp)Y%L0b_Q84=|v$eXZiY1t}!pZ z=tBFQA6)50wM55ebi*k7-c{fCBJfng;--4Pjs>1l+P@r7nnOMbl=}mkV#NdU=d_OkZ4IafKFJrub+7C3uMna|L~)a z_%uxkq(;aBvsah{7t%x0?+ZVe)xv-Id{C@PlZrF|BR$T6&I`hGvAiz(401^;1S>VlJA`+1 z0*wqLsif#ptz$ax5RBGIObR_qtz4&Dc(srP3NJhtyyODmtry?;%GX^1{wf@k6AkUK z57JbS>f%HaFY!WP@F-nS8;pm{drV(sU;0Av%oOv7MPdmP2CjJ?okg4ipT&wY=k81 zcN|4yDIAFh;Mz>d86unLLqGavCRhQf5Tt>`>0&te$lVW^&u$WsE2Yt)z@(;FyfB6P zbE1n5x)T)J?}X6npQrV+?tvI2|3YDbP$K(4#Y{WOT9WAjC|DLIslsEWCl5Tmk_7GX z7IGuVbg}QQ?n7Bne)a0rUO7o4sLU9^Y7fG@z4KT5)lm}Hha>H^L>qikAovFF%6*26 zGs8+R(LoujBUD(Lq3=BFtAttv*whv-$=;Inop=Ka!;O01o|~DfA`^XWDNz7Q2djv} z7nM#oD88pWXeVif8Ul?`#l!6#V|wilaTN4Prj9&Gx%SFye4b`rxqj)2 zz`MdST?CR$7uNQf>XSZovHz@(BeC9-dr9Uc&RL`_8ojhd!W!J9smW;?!^5~NM>tQt zRHobN5J^Su{mg@#NrA$nRk1?T2MN=amK2W^f*=aWvUDF+$TUq+qNpD8B<)iq`qk>} z2gUmt&rpm*2yoUDNJS8YBuT=RKl+guQjkmEw+53%H9OcJ#d}f~9MRAV0$B_JZKMh` ze*eKX{YEC7BTN4@u+pj0O7_v}Ic*o~CrqF;ehG`0cD z-wR19^*#+@uz)dGiqCZ+|Kq(!7>_fC+(8h8h20fJY%WQ>nE_hUzt1M z`$NBewJM6wz4t|e9w>rHASix6fC_jo3fh+N7+*|rI3e)Xkt;J(`40H5t5!emv&;}W zfpZS!<-T)JLgJL0d2eR8=jC2@g_y+_9K8QD1<>Althi@V2jnuKaHKB2AiR5qNvz+N z5~*iawtXs2cBT>Se`c;Y`I#?>S=+~{=mA0;KZ-*)$&<39I)U#`c~U(1=}E?#zKfBPN4 z{`=c!->&}yIrIKL&($ni@BZhtx887wS@lWr3%TzPW*z6?em;d9y#H(FH*Rmjc&6*} zl;=r4{j>RW*J6LAtEZKjaZi8$2cJFV`~4w%mXXB)$biuIk@e4d!kT^HzfL?QN&KSi z{Z~-72iw`Jeg2dN^k2T;U-vrw{QbIL>RUf2W;foME&f-Y|1UbT^Idx;weeb74qWyf4+Y_V<-MJ=ie_xthE>=L8`*b@K+%}|KDo<&m8+t z+&#lYp7=$-|1E{se}B(bL;7u>_cQJPzxp_y?Zou!9M>;%%+K_k?;pRea@{XFhF|fz zK3#hg@|XJ_zr=56MgbBPNCxca!I1M=pTqjyj{jF1(SbM+&r2jX`o4kWAtaUc%F?@T-k@hf#DVyoi317iKpcnz@jDX-64rq@5C`ISCJrR5192b@#P3WTNLUBrKpcqQ bnfU(!Jh%0rdw_mj00000NkvXXu0mjf!s7H( literal 0 HcmV?d00001 diff --git a/public/assets/images/icici_lambard_new.png b/public/assets/images/icici_lambard_new.png new file mode 100644 index 0000000000000000000000000000000000000000..6510e9f49a72240b0ddf6c099a7a946518660148 GIT binary patch literal 17291 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 literal 0 HcmV?d00001 diff --git a/public/assets/images/medi_assist.png b/public/assets/images/medi_assist.png new file mode 100644 index 0000000000000000000000000000000000000000..99299c90bf575d152d5e45f82f1190af75957bf3 GIT binary patch literal 33640 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

<+S%2#2EFmYarrRG>Q#1S$v1 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�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 z{let t=0;return()=>t++})();function s(t){return null==t}function n(t){if(Array.isArray&&Array.isArray(t))return!0;const e=Object.prototype.toString.call(t);return"[object"===e.slice(0,7)&&"Array]"===e.slice(-6)}function o(t){return null!==t&&"[object Object]"===Object.prototype.toString.call(t)}function a(t){return("number"==typeof t||t instanceof Number)&&isFinite(+t)}function r(t,e){return a(t)?t:e}function l(t,e){return void 0===t?e:t}const h=(t,e)=>"string"==typeof t&&t.endsWith("%")?parseFloat(t)/100:+t/e,c=(t,e)=>"string"==typeof t&&t.endsWith("%")?parseFloat(t)/100*e:+t;function d(t,e,i){if(t&&"function"==typeof t.call)return t.apply(i,e)}function u(t,e,i,s){let a,r,l;if(n(t))if(r=t.length,s)for(a=r-1;a>=0;a--)e.call(i,t[a],a);else for(a=0;at,x:t=>t.x,y:t=>t.y};function v(t){const e=t.split("."),i=[];let s="";for(const t of e)s+=t,s.endsWith("\\")?s=s.slice(0,-1)+".":(i.push(s),s="");return i}function M(t,e){const i=y[e]||(y[e]=function(t){const e=v(t);return t=>{for(const i of e){if(""===i)break;t=t&&t[i]}return t}}(e));return i(t)}function w(t){return t.charAt(0).toUpperCase()+t.slice(1)}const k=t=>void 0!==t,S=t=>"function"==typeof t,P=(t,e)=>{if(t.size!==e.size)return!1;for(const i of t)if(!e.has(i))return!1;return!0};function D(t){return"mouseup"===t.type||"click"===t.type||"contextmenu"===t.type}const C=Math.PI,O=2*C,A=O+C,T=Number.POSITIVE_INFINITY,L=C/180,E=C/2,R=C/4,I=2*C/3,z=Math.log10,F=Math.sign;function V(t,e,i){return Math.abs(t-e)t-e)).pop(),e}function N(t){return!isNaN(parseFloat(t))&&isFinite(t)}function H(t,e){const i=Math.round(t);return i-e<=t&&i+e>=t}function j(t,e,i){let s,n,o;for(s=0,n=t.length;sl&&h=Math.min(e,i)-s&&t<=Math.max(e,i)+s}function et(t,e,i){i=i||(i=>t[i]1;)s=o+n>>1,i(s)?o=s:n=s;return{lo:o,hi:n}}const it=(t,e,i,s)=>et(t,i,s?s=>{const n=t[s][e];return nt[s][e]et(t,i,(s=>t[s][e]>=i));function nt(t,e,i){let s=0,n=t.length;for(;ss&&t[n-1]>i;)n--;return s>0||n{const i="_onData"+w(e),s=t[e];Object.defineProperty(t,e,{configurable:!0,enumerable:!1,value(...e){const n=s.apply(this,e);return t._chartjs.listeners.forEach((t=>{"function"==typeof t[i]&&t[i](...e)})),n}})})))}function rt(t,e){const i=t._chartjs;if(!i)return;const s=i.listeners,n=s.indexOf(e);-1!==n&&s.splice(n,1),s.length>0||(ot.forEach((e=>{delete t[e]})),delete t._chartjs)}function lt(t){const e=new Set(t);return e.size===t.length?t:Array.from(e)}const ht="undefined"==typeof window?function(t){return t()}:window.requestAnimationFrame;function ct(t,e){let i=[],s=!1;return function(...n){i=n,s||(s=!0,ht.call(window,(()=>{s=!1,t.apply(e,i)})))}}function dt(t,e){let i;return function(...s){return e?(clearTimeout(i),i=setTimeout(t,e,s)):t.apply(this,s),e}}const ut=t=>"start"===t?"left":"end"===t?"right":"center",ft=(t,e,i)=>"start"===t?e:"end"===t?i:(e+i)/2,gt=(t,e,i,s)=>t===(s?"left":"right")?i:"center"===t?(e+i)/2:e;function pt(t,e,i){const s=e.length;let n=0,o=s;if(t._sorted){const{iScale:a,_parsed:r}=t,l=a.axis,{min:h,max:c,minDefined:d,maxDefined:u}=a.getUserBounds();d&&(n=J(Math.min(it(r,l,h).lo,i?s:it(e,l,a.getPixelForValue(h)).lo),0,s-1)),o=u?J(Math.max(it(r,a.axis,c,!0).hi+1,i?0:it(e,l,a.getPixelForValue(c),!0).hi+1),n,s)-n:s-n}return{start:n,count:o}}function mt(t){const{xScale:e,yScale:i,_scaleRanges:s}=t,n={xmin:e.min,xmax:e.max,ymin:i.min,ymax:i.max};if(!s)return t._scaleRanges=n,!0;const o=s.xmin!==e.min||s.xmax!==e.max||s.ymin!==i.min||s.ymax!==i.max;return Object.assign(s,n),o}class xt{constructor(){this._request=null,this._charts=new Map,this._running=!1,this._lastDate=void 0}_notify(t,e,i,s){const n=e.listeners[s],o=e.duration;n.forEach((s=>s({chart:t,initial:e.initial,numSteps:o,currentStep:Math.min(i-e.start,o)})))}_refresh(){this._request||(this._running=!0,this._request=ht.call(window,(()=>{this._update(),this._request=null,this._running&&this._refresh()})))}_update(t=Date.now()){let e=0;this._charts.forEach(((i,s)=>{if(!i.running||!i.items.length)return;const n=i.items;let o,a=n.length-1,r=!1;for(;a>=0;--a)o=n[a],o._active?(o._total>i.duration&&(i.duration=o._total),o.tick(t),r=!0):(n[a]=n[n.length-1],n.pop());r&&(s.draw(),this._notify(s,i,t,"progress")),n.length||(i.running=!1,this._notify(s,i,t,"complete"),i.initial=!1),e+=n.length})),this._lastDate=t,0===e&&(this._running=!1)}_getAnims(t){const e=this._charts;let i=e.get(t);return i||(i={running:!1,initial:!0,items:[],listeners:{complete:[],progress:[]}},e.set(t,i)),i}listen(t,e,i){this._getAnims(t).listeners[e].push(i)}add(t,e){e&&e.length&&this._getAnims(t).items.push(...e)}has(t){return this._getAnims(t).items.length>0}start(t){const e=this._charts.get(t);e&&(e.running=!0,e.start=Date.now(),e.duration=e.items.reduce(((t,e)=>Math.max(t,e._duration)),0),this._refresh())}running(t){if(!this._running)return!1;const e=this._charts.get(t);return!!(e&&e.running&&e.items.length)}stop(t){const e=this._charts.get(t);if(!e||!e.items.length)return;const i=e.items;let s=i.length-1;for(;s>=0;--s)i[s].cancel();e.items=[],this._notify(t,e,Date.now(),"complete")}remove(t){return this._charts.delete(t)}}var bt=new xt; +/*! + * @kurkle/color v0.3.2 + * https://github.com/kurkle/color#readme + * (c) 2023 Jukka Kurkela + * Released under the MIT License + */function _t(t){return t+.5|0}const yt=(t,e,i)=>Math.max(Math.min(t,i),e);function vt(t){return yt(_t(2.55*t),0,255)}function Mt(t){return yt(_t(255*t),0,255)}function wt(t){return yt(_t(t/2.55)/100,0,1)}function kt(t){return yt(_t(100*t),0,100)}const St={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,A:10,B:11,C:12,D:13,E:14,F:15,a:10,b:11,c:12,d:13,e:14,f:15},Pt=[..."0123456789ABCDEF"],Dt=t=>Pt[15&t],Ct=t=>Pt[(240&t)>>4]+Pt[15&t],Ot=t=>(240&t)>>4==(15&t);function At(t){var e=(t=>Ot(t.r)&&Ot(t.g)&&Ot(t.b)&&Ot(t.a))(t)?Dt:Ct;return t?"#"+e(t.r)+e(t.g)+e(t.b)+((t,e)=>t<255?e(t):"")(t.a,e):void 0}const Tt=/^(hsla?|hwb|hsv)\(\s*([-+.e\d]+)(?:deg)?[\s,]+([-+.e\d]+)%[\s,]+([-+.e\d]+)%(?:[\s,]+([-+.e\d]+)(%)?)?\s*\)$/;function Lt(t,e,i){const s=e*Math.min(i,1-i),n=(e,n=(e+t/30)%12)=>i-s*Math.max(Math.min(n-3,9-n,1),-1);return[n(0),n(8),n(4)]}function Et(t,e,i){const s=(s,n=(s+t/60)%6)=>i-i*e*Math.max(Math.min(n,4-n,1),0);return[s(5),s(3),s(1)]}function Rt(t,e,i){const s=Lt(t,1,.5);let n;for(e+i>1&&(n=1/(e+i),e*=n,i*=n),n=0;n<3;n++)s[n]*=1-e-i,s[n]+=e;return s}function It(t){const e=t.r/255,i=t.g/255,s=t.b/255,n=Math.max(e,i,s),o=Math.min(e,i,s),a=(n+o)/2;let r,l,h;return n!==o&&(h=n-o,l=a>.5?h/(2-n-o):h/(n+o),r=function(t,e,i,s,n){return t===n?(e-i)/s+(e>16&255,o>>8&255,255&o]}return t}(),Ht.transparent=[0,0,0,0]);const e=Ht[t.toLowerCase()];return e&&{r:e[0],g:e[1],b:e[2],a:4===e.length?e[3]:255}}const $t=/^rgba?\(\s*([-+.\d]+)(%)?[\s,]+([-+.e\d]+)(%)?[\s,]+([-+.e\d]+)(%)?(?:[\s,/]+([-+.e\d]+)(%)?)?\s*\)$/;const Yt=t=>t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055,Ut=t=>t<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4);function Xt(t,e,i){if(t){let s=It(t);s[e]=Math.max(0,Math.min(s[e]+s[e]*i,0===e?360:1)),s=Ft(s),t.r=s[0],t.g=s[1],t.b=s[2]}}function qt(t,e){return t?Object.assign(e||{},t):t}function Kt(t){var e={r:0,g:0,b:0,a:255};return Array.isArray(t)?t.length>=3&&(e={r:t[0],g:t[1],b:t[2],a:255},t.length>3&&(e.a=Mt(t[3]))):(e=qt(t,{r:0,g:0,b:0,a:1})).a=Mt(e.a),e}function Gt(t){return"r"===t.charAt(0)?function(t){const e=$t.exec(t);let i,s,n,o=255;if(e){if(e[7]!==i){const t=+e[7];o=e[8]?vt(t):yt(255*t,0,255)}return i=+e[1],s=+e[3],n=+e[5],i=255&(e[2]?vt(i):yt(i,0,255)),s=255&(e[4]?vt(s):yt(s,0,255)),n=255&(e[6]?vt(n):yt(n,0,255)),{r:i,g:s,b:n,a:o}}}(t):Bt(t)}class Zt{constructor(t){if(t instanceof Zt)return t;const e=typeof t;let i;var s,n,o;"object"===e?i=Kt(t):"string"===e&&(o=(s=t).length,"#"===s[0]&&(4===o||5===o?n={r:255&17*St[s[1]],g:255&17*St[s[2]],b:255&17*St[s[3]],a:5===o?17*St[s[4]]:255}:7!==o&&9!==o||(n={r:St[s[1]]<<4|St[s[2]],g:St[s[3]]<<4|St[s[4]],b:St[s[5]]<<4|St[s[6]],a:9===o?St[s[7]]<<4|St[s[8]]:255})),i=n||jt(t)||Gt(t)),this._rgb=i,this._valid=!!i}get valid(){return this._valid}get rgb(){var t=qt(this._rgb);return t&&(t.a=wt(t.a)),t}set rgb(t){this._rgb=Kt(t)}rgbString(){return this._valid?(t=this._rgb)&&(t.a<255?`rgba(${t.r}, ${t.g}, ${t.b}, ${wt(t.a)})`:`rgb(${t.r}, ${t.g}, ${t.b})`):void 0;var t}hexString(){return this._valid?At(this._rgb):void 0}hslString(){return this._valid?function(t){if(!t)return;const e=It(t),i=e[0],s=kt(e[1]),n=kt(e[2]);return t.a<255?`hsla(${i}, ${s}%, ${n}%, ${wt(t.a)})`:`hsl(${i}, ${s}%, ${n}%)`}(this._rgb):void 0}mix(t,e){if(t){const i=this.rgb,s=t.rgb;let n;const o=e===n?.5:e,a=2*o-1,r=i.a-s.a,l=((a*r==-1?a:(a+r)/(1+a*r))+1)/2;n=1-l,i.r=255&l*i.r+n*s.r+.5,i.g=255&l*i.g+n*s.g+.5,i.b=255&l*i.b+n*s.b+.5,i.a=o*i.a+(1-o)*s.a,this.rgb=i}return this}interpolate(t,e){return t&&(this._rgb=function(t,e,i){const s=Ut(wt(t.r)),n=Ut(wt(t.g)),o=Ut(wt(t.b));return{r:Mt(Yt(s+i*(Ut(wt(e.r))-s))),g:Mt(Yt(n+i*(Ut(wt(e.g))-n))),b:Mt(Yt(o+i*(Ut(wt(e.b))-o))),a:t.a+i*(e.a-t.a)}}(this._rgb,t._rgb,e)),this}clone(){return new Zt(this.rgb)}alpha(t){return this._rgb.a=Mt(t),this}clearer(t){return this._rgb.a*=1-t,this}greyscale(){const t=this._rgb,e=_t(.3*t.r+.59*t.g+.11*t.b);return t.r=t.g=t.b=e,this}opaquer(t){return this._rgb.a*=1+t,this}negate(){const t=this._rgb;return t.r=255-t.r,t.g=255-t.g,t.b=255-t.b,this}lighten(t){return Xt(this._rgb,2,t),this}darken(t){return Xt(this._rgb,2,-t),this}saturate(t){return Xt(this._rgb,1,t),this}desaturate(t){return Xt(this._rgb,1,-t),this}rotate(t){return function(t,e){var i=It(t);i[0]=Vt(i[0]+e),i=Ft(i),t.r=i[0],t.g=i[1],t.b=i[2]}(this._rgb,t),this}}function Jt(t){if(t&&"object"==typeof t){const e=t.toString();return"[object CanvasPattern]"===e||"[object CanvasGradient]"===e}return!1}function Qt(t){return Jt(t)?t:new Zt(t)}function te(t){return Jt(t)?t:new Zt(t).saturate(.5).darken(.1).hexString()}const ee=["x","y","borderWidth","radius","tension"],ie=["color","borderColor","backgroundColor"];const se=new Map;function ne(t,e,i){return function(t,e){e=e||{};const i=t+JSON.stringify(e);let s=se.get(i);return s||(s=new Intl.NumberFormat(t,e),se.set(i,s)),s}(e,i).format(t)}const oe={values:t=>n(t)?t:""+t,numeric(t,e,i){if(0===t)return"0";const s=this.chart.options.locale;let n,o=t;if(i.length>1){const e=Math.max(Math.abs(i[0].value),Math.abs(i[i.length-1].value));(e<1e-4||e>1e15)&&(n="scientific"),o=function(t,e){let i=e.length>3?e[2].value-e[1].value:e[1].value-e[0].value;Math.abs(i)>=1&&t!==Math.floor(t)&&(i=t-Math.floor(t));return i}(t,i)}const a=z(Math.abs(o)),r=isNaN(a)?1:Math.max(Math.min(-1*Math.floor(a),20),0),l={notation:n,minimumFractionDigits:r,maximumFractionDigits:r};return Object.assign(l,this.options.ticks.format),ne(t,s,l)},logarithmic(t,e,i){if(0===t)return"0";const s=i[e].significand||t/Math.pow(10,Math.floor(z(t)));return[1,2,3,5,10,15].includes(s)||e>.8*i.length?oe.numeric.call(this,t,e,i):""}};var ae={formatters:oe};const re=Object.create(null),le=Object.create(null);function he(t,e){if(!e)return t;const i=e.split(".");for(let e=0,s=i.length;et.chart.platform.getDevicePixelRatio(),this.elements={},this.events=["mousemove","mouseout","click","touchstart","touchmove"],this.font={family:"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",size:12,style:"normal",lineHeight:1.2,weight:null},this.hover={},this.hoverBackgroundColor=(t,e)=>te(e.backgroundColor),this.hoverBorderColor=(t,e)=>te(e.borderColor),this.hoverColor=(t,e)=>te(e.color),this.indexAxis="x",this.interaction={mode:"nearest",intersect:!0,includeInvisible:!1},this.maintainAspectRatio=!0,this.onHover=null,this.onClick=null,this.parsing=!0,this.plugins={},this.responsive=!0,this.scale=void 0,this.scales={},this.showLine=!0,this.drawActiveElementsOnTop=!0,this.describe(t),this.apply(e)}set(t,e){return ce(this,t,e)}get(t){return he(this,t)}describe(t,e){return ce(le,t,e)}override(t,e){return ce(re,t,e)}route(t,e,i,s){const n=he(this,t),a=he(this,i),r="_"+e;Object.defineProperties(n,{[r]:{value:n[e],writable:!0},[e]:{enumerable:!0,get(){const t=this[r],e=a[s];return o(t)?Object.assign({},e,t):l(t,e)},set(t){this[r]=t}}})}apply(t){t.forEach((t=>t(this)))}}var ue=new de({_scriptable:t=>!t.startsWith("on"),_indexable:t=>"events"!==t,hover:{_fallback:"interaction"},interaction:{_scriptable:!1,_indexable:!1}},[function(t){t.set("animation",{delay:void 0,duration:1e3,easing:"easeOutQuart",fn:void 0,from:void 0,loop:void 0,to:void 0,type:void 0}),t.describe("animation",{_fallback:!1,_indexable:!1,_scriptable:t=>"onProgress"!==t&&"onComplete"!==t&&"fn"!==t}),t.set("animations",{colors:{type:"color",properties:ie},numbers:{type:"number",properties:ee}}),t.describe("animations",{_fallback:"animation"}),t.set("transitions",{active:{animation:{duration:400}},resize:{animation:{duration:0}},show:{animations:{colors:{from:"transparent"},visible:{type:"boolean",duration:0}}},hide:{animations:{colors:{to:"transparent"},visible:{type:"boolean",easing:"linear",fn:t=>0|t}}}})},function(t){t.set("layout",{autoPadding:!0,padding:{top:0,right:0,bottom:0,left:0}})},function(t){t.set("scale",{display:!0,offset:!1,reverse:!1,beginAtZero:!1,bounds:"ticks",clip:!0,grace:0,grid:{display:!0,lineWidth:1,drawOnChartArea:!0,drawTicks:!0,tickLength:8,tickWidth:(t,e)=>e.lineWidth,tickColor:(t,e)=>e.color,offset:!1},border:{display:!0,dash:[],dashOffset:0,width:1},title:{display:!1,text:"",padding:{top:4,bottom:4}},ticks:{minRotation:0,maxRotation:50,mirror:!1,textStrokeWidth:0,textStrokeColor:"",padding:3,display:!0,autoSkip:!0,autoSkipPadding:3,labelOffset:0,callback:ae.formatters.values,minor:{},major:{},align:"center",crossAlign:"near",showLabelBackdrop:!1,backdropColor:"rgba(255, 255, 255, 0.75)",backdropPadding:2}}),t.route("scale.ticks","color","","color"),t.route("scale.grid","color","","borderColor"),t.route("scale.border","color","","borderColor"),t.route("scale.title","color","","color"),t.describe("scale",{_fallback:!1,_scriptable:t=>!t.startsWith("before")&&!t.startsWith("after")&&"callback"!==t&&"parser"!==t,_indexable:t=>"borderDash"!==t&&"tickBorderDash"!==t&&"dash"!==t}),t.describe("scales",{_fallback:"scale"}),t.describe("scale.ticks",{_scriptable:t=>"backdropPadding"!==t&&"callback"!==t,_indexable:t=>"backdropPadding"!==t})}]);function fe(){return"undefined"!=typeof window&&"undefined"!=typeof document}function ge(t){let e=t.parentNode;return e&&"[object ShadowRoot]"===e.toString()&&(e=e.host),e}function pe(t,e,i){let s;return"string"==typeof t?(s=parseInt(t,10),-1!==t.indexOf("%")&&(s=s/100*e.parentNode[i])):s=t,s}const me=t=>t.ownerDocument.defaultView.getComputedStyle(t,null);function xe(t,e){return me(t).getPropertyValue(e)}const be=["top","right","bottom","left"];function _e(t,e,i){const s={};i=i?"-"+i:"";for(let n=0;n<4;n++){const o=be[n];s[o]=parseFloat(t[e+"-"+o+i])||0}return s.width=s.left+s.right,s.height=s.top+s.bottom,s}const ye=(t,e,i)=>(t>0||e>0)&&(!i||!i.shadowRoot);function ve(t,e){if("native"in t)return t;const{canvas:i,currentDevicePixelRatio:s}=e,n=me(i),o="border-box"===n.boxSizing,a=_e(n,"padding"),r=_e(n,"border","width"),{x:l,y:h,box:c}=function(t,e){const i=t.touches,s=i&&i.length?i[0]:t,{offsetX:n,offsetY:o}=s;let a,r,l=!1;if(ye(n,o,t.target))a=n,r=o;else{const t=e.getBoundingClientRect();a=s.clientX-t.left,r=s.clientY-t.top,l=!0}return{x:a,y:r,box:l}}(t,i),d=a.left+(c&&r.left),u=a.top+(c&&r.top);let{width:f,height:g}=e;return o&&(f-=a.width+r.width,g-=a.height+r.height),{x:Math.round((l-d)/f*i.width/s),y:Math.round((h-u)/g*i.height/s)}}const Me=t=>Math.round(10*t)/10;function we(t,e,i,s){const n=me(t),o=_e(n,"margin"),a=pe(n.maxWidth,t,"clientWidth")||T,r=pe(n.maxHeight,t,"clientHeight")||T,l=function(t,e,i){let s,n;if(void 0===e||void 0===i){const o=t&&ge(t);if(o){const t=o.getBoundingClientRect(),a=me(o),r=_e(a,"border","width"),l=_e(a,"padding");e=t.width-l.width-r.width,i=t.height-l.height-r.height,s=pe(a.maxWidth,o,"clientWidth"),n=pe(a.maxHeight,o,"clientHeight")}else e=t.clientWidth,i=t.clientHeight}return{width:e,height:i,maxWidth:s||T,maxHeight:n||T}}(t,e,i);let{width:h,height:c}=l;if("content-box"===n.boxSizing){const t=_e(n,"border","width"),e=_e(n,"padding");h-=e.width+t.width,c-=e.height+t.height}h=Math.max(0,h-o.width),c=Math.max(0,s?h/s:c-o.height),h=Me(Math.min(h,a,l.maxWidth)),c=Me(Math.min(c,r,l.maxHeight)),h&&!c&&(c=Me(h/2));return(void 0!==e||void 0!==i)&&s&&l.height&&c>l.height&&(c=l.height,h=Me(Math.floor(c*s))),{width:h,height:c}}function ke(t,e,i){const s=e||1,n=Math.floor(t.height*s),o=Math.floor(t.width*s);t.height=Math.floor(t.height),t.width=Math.floor(t.width);const a=t.canvas;return a.style&&(i||!a.style.height&&!a.style.width)&&(a.style.height=`${t.height}px`,a.style.width=`${t.width}px`),(t.currentDevicePixelRatio!==s||a.height!==n||a.width!==o)&&(t.currentDevicePixelRatio=s,a.height=n,a.width=o,t.ctx.setTransform(s,0,0,s,0,0),!0)}const Se=function(){let t=!1;try{const e={get passive(){return t=!0,!1}};fe()&&(window.addEventListener("test",null,e),window.removeEventListener("test",null,e))}catch(t){}return t}();function Pe(t,e){const i=xe(t,e),s=i&&i.match(/^(\d+)(\.\d+)?px$/);return s?+s[1]:void 0}function De(t){return!t||s(t.size)||s(t.family)?null:(t.style?t.style+" ":"")+(t.weight?t.weight+" ":"")+t.size+"px "+t.family}function Ce(t,e,i,s,n){let o=e[n];return o||(o=e[n]=t.measureText(n).width,i.push(n)),o>s&&(s=o),s}function Oe(t,e,i,s){let o=(s=s||{}).data=s.data||{},a=s.garbageCollect=s.garbageCollect||[];s.font!==e&&(o=s.data={},a=s.garbageCollect=[],s.font=e),t.save(),t.font=e;let r=0;const l=i.length;let h,c,d,u,f;for(h=0;hi.length){for(h=0;h0&&t.stroke()}}function Re(t,e,i){return i=i||.5,!e||t&&t.x>e.left-i&&t.xe.top-i&&t.y0&&""!==r.strokeColor;let c,d;for(t.save(),t.font=a.string,function(t,e){e.translation&&t.translate(e.translation[0],e.translation[1]),s(e.rotation)||t.rotate(e.rotation),e.color&&(t.fillStyle=e.color),e.textAlign&&(t.textAlign=e.textAlign),e.textBaseline&&(t.textBaseline=e.textBaseline)}(t,r),c=0;ct[0])){const o=i||t;void 0===s&&(s=ti("_fallback",t));const a={[Symbol.toStringTag]:"Object",_cacheable:!0,_scopes:t,_rootScopes:o,_fallback:s,_getTarget:n,override:i=>je([i,...t],e,o,s)};return new Proxy(a,{deleteProperty:(e,i)=>(delete e[i],delete e._keys,delete t[0][i],!0),get:(i,s)=>qe(i,s,(()=>function(t,e,i,s){let n;for(const o of e)if(n=ti(Ue(o,t),i),void 0!==n)return Xe(t,n)?Je(i,s,t,n):n}(s,e,t,i))),getOwnPropertyDescriptor:(t,e)=>Reflect.getOwnPropertyDescriptor(t._scopes[0],e),getPrototypeOf:()=>Reflect.getPrototypeOf(t[0]),has:(t,e)=>ei(t).includes(e),ownKeys:t=>ei(t),set(t,e,i){const s=t._storage||(t._storage=n());return t[e]=s[e]=i,delete t._keys,!0}})}function $e(t,e,i,s){const a={_cacheable:!1,_proxy:t,_context:e,_subProxy:i,_stack:new Set,_descriptors:Ye(t,s),setContext:e=>$e(t,e,i,s),override:n=>$e(t.override(n),e,i,s)};return new Proxy(a,{deleteProperty:(e,i)=>(delete e[i],delete t[i],!0),get:(t,e,i)=>qe(t,e,(()=>function(t,e,i){const{_proxy:s,_context:a,_subProxy:r,_descriptors:l}=t;let h=s[e];S(h)&&l.isScriptable(e)&&(h=function(t,e,i,s){const{_proxy:n,_context:o,_subProxy:a,_stack:r}=i;if(r.has(t))throw new Error("Recursion detected: "+Array.from(r).join("->")+"->"+t);r.add(t);let l=e(o,a||s);r.delete(t),Xe(t,l)&&(l=Je(n._scopes,n,t,l));return l}(e,h,t,i));n(h)&&h.length&&(h=function(t,e,i,s){const{_proxy:n,_context:a,_subProxy:r,_descriptors:l}=i;if(void 0!==a.index&&s(t))return e[a.index%e.length];if(o(e[0])){const i=e,s=n._scopes.filter((t=>t!==i));e=[];for(const o of i){const i=Je(s,n,t,o);e.push($e(i,a,r&&r[t],l))}}return e}(e,h,t,l.isIndexable));Xe(e,h)&&(h=$e(h,a,r&&r[e],l));return h}(t,e,i))),getOwnPropertyDescriptor:(e,i)=>e._descriptors.allKeys?Reflect.has(t,i)?{enumerable:!0,configurable:!0}:void 0:Reflect.getOwnPropertyDescriptor(t,i),getPrototypeOf:()=>Reflect.getPrototypeOf(t),has:(e,i)=>Reflect.has(t,i),ownKeys:()=>Reflect.ownKeys(t),set:(e,i,s)=>(t[i]=s,delete e[i],!0)})}function Ye(t,e={scriptable:!0,indexable:!0}){const{_scriptable:i=e.scriptable,_indexable:s=e.indexable,_allKeys:n=e.allKeys}=t;return{allKeys:n,scriptable:i,indexable:s,isScriptable:S(i)?i:()=>i,isIndexable:S(s)?s:()=>s}}const Ue=(t,e)=>t?t+w(e):e,Xe=(t,e)=>o(e)&&"adapters"!==t&&(null===Object.getPrototypeOf(e)||e.constructor===Object);function qe(t,e,i){if(Object.prototype.hasOwnProperty.call(t,e)||"constructor"===e)return t[e];const s=i();return t[e]=s,s}function Ke(t,e,i){return S(t)?t(e,i):t}const Ge=(t,e)=>!0===t?e:"string"==typeof t?M(e,t):void 0;function Ze(t,e,i,s,n){for(const o of e){const e=Ge(i,o);if(e){t.add(e);const o=Ke(e._fallback,i,n);if(void 0!==o&&o!==i&&o!==s)return o}else if(!1===e&&void 0!==s&&i!==s)return null}return!1}function Je(t,e,i,s){const a=e._rootScopes,r=Ke(e._fallback,i,s),l=[...t,...a],h=new Set;h.add(s);let c=Qe(h,l,i,r||i,s);return null!==c&&((void 0===r||r===i||(c=Qe(h,l,r,c,s),null!==c))&&je(Array.from(h),[""],a,r,(()=>function(t,e,i){const s=t._getTarget();e in s||(s[e]={});const a=s[e];if(n(a)&&o(i))return i;return a||{}}(e,i,s))))}function Qe(t,e,i,s,n){for(;i;)i=Ze(t,e,i,s,n);return i}function ti(t,e){for(const i of e){if(!i)continue;const e=i[t];if(void 0!==e)return e}}function ei(t){let e=t._keys;return e||(e=t._keys=function(t){const e=new Set;for(const i of t)for(const t of Object.keys(i).filter((t=>!t.startsWith("_"))))e.add(t);return Array.from(e)}(t._scopes)),e}function ii(t,e,i,s){const{iScale:n}=t,{key:o="r"}=this._parsing,a=new Array(s);let r,l,h,c;for(r=0,l=s;re"x"===t?"y":"x";function ai(t,e,i,s){const n=t.skip?e:t,o=e,a=i.skip?e:i,r=q(o,n),l=q(a,o);let h=r/(r+l),c=l/(r+l);h=isNaN(h)?0:h,c=isNaN(c)?0:c;const d=s*h,u=s*c;return{previous:{x:o.x-d*(a.x-n.x),y:o.y-d*(a.y-n.y)},next:{x:o.x+u*(a.x-n.x),y:o.y+u*(a.y-n.y)}}}function ri(t,e="x"){const i=oi(e),s=t.length,n=Array(s).fill(0),o=Array(s);let a,r,l,h=ni(t,0);for(a=0;a!t.skip))),"monotone"===e.cubicInterpolationMode)ri(t,n);else{let i=s?t[t.length-1]:t[0];for(o=0,a=t.length;o0===t||1===t,di=(t,e,i)=>-Math.pow(2,10*(t-=1))*Math.sin((t-e)*O/i),ui=(t,e,i)=>Math.pow(2,-10*t)*Math.sin((t-e)*O/i)+1,fi={linear:t=>t,easeInQuad:t=>t*t,easeOutQuad:t=>-t*(t-2),easeInOutQuad:t=>(t/=.5)<1?.5*t*t:-.5*(--t*(t-2)-1),easeInCubic:t=>t*t*t,easeOutCubic:t=>(t-=1)*t*t+1,easeInOutCubic:t=>(t/=.5)<1?.5*t*t*t:.5*((t-=2)*t*t+2),easeInQuart:t=>t*t*t*t,easeOutQuart:t=>-((t-=1)*t*t*t-1),easeInOutQuart:t=>(t/=.5)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2),easeInQuint:t=>t*t*t*t*t,easeOutQuint:t=>(t-=1)*t*t*t*t+1,easeInOutQuint:t=>(t/=.5)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2),easeInSine:t=>1-Math.cos(t*E),easeOutSine:t=>Math.sin(t*E),easeInOutSine:t=>-.5*(Math.cos(C*t)-1),easeInExpo:t=>0===t?0:Math.pow(2,10*(t-1)),easeOutExpo:t=>1===t?1:1-Math.pow(2,-10*t),easeInOutExpo:t=>ci(t)?t:t<.5?.5*Math.pow(2,10*(2*t-1)):.5*(2-Math.pow(2,-10*(2*t-1))),easeInCirc:t=>t>=1?t:-(Math.sqrt(1-t*t)-1),easeOutCirc:t=>Math.sqrt(1-(t-=1)*t),easeInOutCirc:t=>(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1),easeInElastic:t=>ci(t)?t:di(t,.075,.3),easeOutElastic:t=>ci(t)?t:ui(t,.075,.3),easeInOutElastic(t){const e=.1125;return ci(t)?t:t<.5?.5*di(2*t,e,.45):.5+.5*ui(2*t-1,e,.45)},easeInBack(t){const e=1.70158;return t*t*((e+1)*t-e)},easeOutBack(t){const e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},easeInOutBack(t){let e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},easeInBounce:t=>1-fi.easeOutBounce(1-t),easeOutBounce(t){const e=7.5625,i=2.75;return t<1/i?e*t*t:t<2/i?e*(t-=1.5/i)*t+.75:t<2.5/i?e*(t-=2.25/i)*t+.9375:e*(t-=2.625/i)*t+.984375},easeInOutBounce:t=>t<.5?.5*fi.easeInBounce(2*t):.5*fi.easeOutBounce(2*t-1)+.5};function gi(t,e,i,s){return{x:t.x+i*(e.x-t.x),y:t.y+i*(e.y-t.y)}}function pi(t,e,i,s){return{x:t.x+i*(e.x-t.x),y:"middle"===s?i<.5?t.y:e.y:"after"===s?i<1?t.y:e.y:i>0?e.y:t.y}}function mi(t,e,i,s){const n={x:t.cp2x,y:t.cp2y},o={x:e.cp1x,y:e.cp1y},a=gi(t,n,i),r=gi(n,o,i),l=gi(o,e,i),h=gi(a,r,i),c=gi(r,l,i);return gi(h,c,i)}const xi=/^(normal|(\d+(?:\.\d+)?)(px|em|%)?)$/,bi=/^(normal|italic|initial|inherit|unset|(oblique( -?[0-9]?[0-9]deg)?))$/;function _i(t,e){const i=(""+t).match(xi);if(!i||"normal"===i[1])return 1.2*e;switch(t=+i[2],i[3]){case"px":return t;case"%":t/=100}return e*t}const yi=t=>+t||0;function vi(t,e){const i={},s=o(e),n=s?Object.keys(e):e,a=o(t)?s?i=>l(t[i],t[e[i]]):e=>t[e]:()=>t;for(const t of n)i[t]=yi(a(t));return i}function Mi(t){return vi(t,{top:"y",right:"x",bottom:"y",left:"x"})}function wi(t){return vi(t,["topLeft","topRight","bottomLeft","bottomRight"])}function ki(t){const e=Mi(t);return e.width=e.left+e.right,e.height=e.top+e.bottom,e}function Si(t,e){t=t||{},e=e||ue.font;let i=l(t.size,e.size);"string"==typeof i&&(i=parseInt(i,10));let s=l(t.style,e.style);s&&!(""+s).match(bi)&&(console.warn('Invalid font style specified: "'+s+'"'),s=void 0);const n={family:l(t.family,e.family),lineHeight:_i(l(t.lineHeight,e.lineHeight),i),size:i,style:s,weight:l(t.weight,e.weight),string:""};return n.string=De(n),n}function Pi(t,e,i,s){let o,a,r,l=!0;for(o=0,a=t.length;oi&&0===t?0:t+e;return{min:a(s,-Math.abs(o)),max:a(n,o)}}function Ci(t,e){return Object.assign(Object.create(t),e)}function Oi(t,e,i){return t?function(t,e){return{x:i=>t+t+e-i,setWidth(t){e=t},textAlign:t=>"center"===t?t:"right"===t?"left":"right",xPlus:(t,e)=>t-e,leftForLtr:(t,e)=>t-e}}(e,i):{x:t=>t,setWidth(t){},textAlign:t=>t,xPlus:(t,e)=>t+e,leftForLtr:(t,e)=>t}}function Ai(t,e){let i,s;"ltr"!==e&&"rtl"!==e||(i=t.canvas.style,s=[i.getPropertyValue("direction"),i.getPropertyPriority("direction")],i.setProperty("direction",e,"important"),t.prevTextDirection=s)}function Ti(t,e){void 0!==e&&(delete t.prevTextDirection,t.canvas.style.setProperty("direction",e[0],e[1]))}function Li(t){return"angle"===t?{between:Z,compare:K,normalize:G}:{between:tt,compare:(t,e)=>t-e,normalize:t=>t}}function Ei({start:t,end:e,count:i,loop:s,style:n}){return{start:t%i,end:e%i,loop:s&&(e-t+1)%i==0,style:n}}function Ri(t,e,i){if(!i)return[t];const{property:s,start:n,end:o}=i,a=e.length,{compare:r,between:l,normalize:h}=Li(s),{start:c,end:d,loop:u,style:f}=function(t,e,i){const{property:s,start:n,end:o}=i,{between:a,normalize:r}=Li(s),l=e.length;let h,c,{start:d,end:u,loop:f}=t;if(f){for(d+=l,u+=l,h=0,c=l;hb||l(n,x,p)&&0!==r(n,x),v=()=>!b||0===r(o,p)||l(o,x,p);for(let t=c,i=c;t<=d;++t)m=e[t%a],m.skip||(p=h(m[s]),p!==x&&(b=l(p,n,o),null===_&&y()&&(_=0===r(p,n)?t:i),null!==_&&v()&&(g.push(Ei({start:_,end:t,loop:u,count:a,style:f})),_=null),i=t,x=p));return null!==_&&g.push(Ei({start:_,end:d,loop:u,count:a,style:f})),g}function Ii(t,e){const i=[],s=t.segments;for(let n=0;nn&&t[o%e].skip;)o--;return o%=e,{start:n,end:o}}(i,n,o,s);if(!0===s)return Fi(t,[{start:a,end:r,loop:o}],i,e);return Fi(t,function(t,e,i,s){const n=t.length,o=[];let a,r=e,l=t[e];for(a=e+1;a<=i;++a){const i=t[a%n];i.skip||i.stop?l.skip||(s=!1,o.push({start:e%n,end:(a-1)%n,loop:s}),e=r=i.stop?a:null):(r=a,l.skip&&(e=a)),l=i}return null!==r&&o.push({start:e%n,end:r%n,loop:s}),o}(i,a,r{t[a]&&t[a](e[i],n)&&(o.push({element:t,datasetIndex:s,index:l}),r=r||t.inRange(e.x,e.y,n))})),s&&!r?[]:o}var Xi={evaluateInteractionItems:Hi,modes:{index(t,e,i,s){const n=ve(e,t),o=i.axis||"x",a=i.includeInvisible||!1,r=i.intersect?ji(t,n,o,s,a):Yi(t,n,o,!1,s,a),l=[];return r.length?(t.getSortedVisibleDatasetMetas().forEach((t=>{const e=r[0].index,i=t.data[e];i&&!i.skip&&l.push({element:i,datasetIndex:t.index,index:e})})),l):[]},dataset(t,e,i,s){const n=ve(e,t),o=i.axis||"xy",a=i.includeInvisible||!1;let r=i.intersect?ji(t,n,o,s,a):Yi(t,n,o,!1,s,a);if(r.length>0){const e=r[0].datasetIndex,i=t.getDatasetMeta(e).data;r=[];for(let t=0;tji(t,ve(e,t),i.axis||"xy",s,i.includeInvisible||!1),nearest(t,e,i,s){const n=ve(e,t),o=i.axis||"xy",a=i.includeInvisible||!1;return Yi(t,n,o,i.intersect,s,a)},x:(t,e,i,s)=>Ui(t,ve(e,t),"x",i.intersect,s),y:(t,e,i,s)=>Ui(t,ve(e,t),"y",i.intersect,s)}};const qi=["left","top","right","bottom"];function Ki(t,e){return t.filter((t=>t.pos===e))}function Gi(t,e){return t.filter((t=>-1===qi.indexOf(t.pos)&&t.box.axis===e))}function Zi(t,e){return t.sort(((t,i)=>{const s=e?i:t,n=e?t:i;return s.weight===n.weight?s.index-n.index:s.weight-n.weight}))}function Ji(t,e){const i=function(t){const e={};for(const i of t){const{stack:t,pos:s,stackWeight:n}=i;if(!t||!qi.includes(s))continue;const o=e[t]||(e[t]={count:0,placed:0,weight:0,size:0});o.count++,o.weight+=n}return e}(t),{vBoxMaxWidth:s,hBoxMaxHeight:n}=e;let o,a,r;for(o=0,a=t.length;o{s[t]=Math.max(e[t],i[t])})),s}return s(t?["left","right"]:["top","bottom"])}function ss(t,e,i,s){const n=[];let o,a,r,l,h,c;for(o=0,a=t.length,h=0;ot.box.fullSize)),!0),s=Zi(Ki(e,"left"),!0),n=Zi(Ki(e,"right")),o=Zi(Ki(e,"top"),!0),a=Zi(Ki(e,"bottom")),r=Gi(e,"x"),l=Gi(e,"y");return{fullSize:i,leftAndTop:s.concat(o),rightAndBottom:n.concat(l).concat(a).concat(r),chartArea:Ki(e,"chartArea"),vertical:s.concat(n).concat(l),horizontal:o.concat(a).concat(r)}}(t.boxes),l=r.vertical,h=r.horizontal;u(t.boxes,(t=>{"function"==typeof t.beforeLayout&&t.beforeLayout()}));const c=l.reduce(((t,e)=>e.box.options&&!1===e.box.options.display?t:t+1),0)||1,d=Object.freeze({outerWidth:e,outerHeight:i,padding:n,availableWidth:o,availableHeight:a,vBoxMaxWidth:o/2/c,hBoxMaxHeight:a/2}),f=Object.assign({},n);ts(f,ki(s));const g=Object.assign({maxPadding:f,w:o,h:a,x:n.left,y:n.top},n),p=Ji(l.concat(h),d);ss(r.fullSize,g,d,p),ss(l,g,d,p),ss(h,g,d,p)&&ss(l,g,d,p),function(t){const e=t.maxPadding;function i(i){const s=Math.max(e[i]-t[i],0);return t[i]+=s,s}t.y+=i("top"),t.x+=i("left"),i("right"),i("bottom")}(g),os(r.leftAndTop,g,d,p),g.x+=g.w,g.y+=g.h,os(r.rightAndBottom,g,d,p),t.chartArea={left:g.left,top:g.top,right:g.left+g.w,bottom:g.top+g.h,height:g.h,width:g.w},u(r.chartArea,(e=>{const i=e.box;Object.assign(i,t.chartArea),i.update(g.w,g.h,{left:0,top:0,right:0,bottom:0})}))}};class rs{acquireContext(t,e){}releaseContext(t){return!1}addEventListener(t,e,i){}removeEventListener(t,e,i){}getDevicePixelRatio(){return 1}getMaximumSize(t,e,i,s){return e=Math.max(0,e||t.width),i=i||t.height,{width:e,height:Math.max(0,s?Math.floor(e/s):i)}}isAttached(t){return!0}updateConfig(t){}}class ls extends rs{acquireContext(t){return t&&t.getContext&&t.getContext("2d")||null}updateConfig(t){t.options.animation=!1}}const hs="$chartjs",cs={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"},ds=t=>null===t||""===t;const us=!!Se&&{passive:!0};function fs(t,e,i){t&&t.canvas&&t.canvas.removeEventListener(e,i,us)}function gs(t,e){for(const i of t)if(i===e||i.contains(e))return!0}function ps(t,e,i){const s=t.canvas,n=new MutationObserver((t=>{let e=!1;for(const i of t)e=e||gs(i.addedNodes,s),e=e&&!gs(i.removedNodes,s);e&&i()}));return n.observe(document,{childList:!0,subtree:!0}),n}function ms(t,e,i){const s=t.canvas,n=new MutationObserver((t=>{let e=!1;for(const i of t)e=e||gs(i.removedNodes,s),e=e&&!gs(i.addedNodes,s);e&&i()}));return n.observe(document,{childList:!0,subtree:!0}),n}const xs=new Map;let bs=0;function _s(){const t=window.devicePixelRatio;t!==bs&&(bs=t,xs.forEach(((e,i)=>{i.currentDevicePixelRatio!==t&&e()})))}function ys(t,e,i){const s=t.canvas,n=s&&ge(s);if(!n)return;const o=ct(((t,e)=>{const s=n.clientWidth;i(t,e),s{const e=t[0],i=e.contentRect.width,s=e.contentRect.height;0===i&&0===s||o(i,s)}));return a.observe(n),function(t,e){xs.size||window.addEventListener("resize",_s),xs.set(t,e)}(t,o),a}function vs(t,e,i){i&&i.disconnect(),"resize"===e&&function(t){xs.delete(t),xs.size||window.removeEventListener("resize",_s)}(t)}function Ms(t,e,i){const s=t.canvas,n=ct((e=>{null!==t.ctx&&i(function(t,e){const i=cs[t.type]||t.type,{x:s,y:n}=ve(t,e);return{type:i,chart:e,native:t,x:void 0!==s?s:null,y:void 0!==n?n:null}}(e,t))}),t);return function(t,e,i){t&&t.addEventListener(e,i,us)}(s,e,n),n}class ws extends rs{acquireContext(t,e){const i=t&&t.getContext&&t.getContext("2d");return i&&i.canvas===t?(function(t,e){const i=t.style,s=t.getAttribute("height"),n=t.getAttribute("width");if(t[hs]={initial:{height:s,width:n,style:{display:i.display,height:i.height,width:i.width}}},i.display=i.display||"block",i.boxSizing=i.boxSizing||"border-box",ds(n)){const e=Pe(t,"width");void 0!==e&&(t.width=e)}if(ds(s))if(""===t.style.height)t.height=t.width/(e||2);else{const e=Pe(t,"height");void 0!==e&&(t.height=e)}}(t,e),i):null}releaseContext(t){const e=t.canvas;if(!e[hs])return!1;const i=e[hs].initial;["height","width"].forEach((t=>{const n=i[t];s(n)?e.removeAttribute(t):e.setAttribute(t,n)}));const n=i.style||{};return Object.keys(n).forEach((t=>{e.style[t]=n[t]})),e.width=e.width,delete e[hs],!0}addEventListener(t,e,i){this.removeEventListener(t,e);const s=t.$proxies||(t.$proxies={}),n={attach:ps,detach:ms,resize:ys}[e]||Ms;s[e]=n(t,e,i)}removeEventListener(t,e){const i=t.$proxies||(t.$proxies={}),s=i[e];if(!s)return;({attach:vs,detach:vs,resize:vs}[e]||fs)(t,e,s),i[e]=void 0}getDevicePixelRatio(){return window.devicePixelRatio}getMaximumSize(t,e,i,s){return we(t,e,i,s)}isAttached(t){const e=t&&ge(t);return!(!e||!e.isConnected)}}function ks(t){return!fe()||"undefined"!=typeof OffscreenCanvas&&t instanceof OffscreenCanvas?ls:ws}var Ss=Object.freeze({__proto__:null,BasePlatform:rs,BasicPlatform:ls,DomPlatform:ws,_detectPlatform:ks});const Ps="transparent",Ds={boolean:(t,e,i)=>i>.5?e:t,color(t,e,i){const s=Qt(t||Ps),n=s.valid&&Qt(e||Ps);return n&&n.valid?n.mix(s,i).hexString():e},number:(t,e,i)=>t+(e-t)*i};class Cs{constructor(t,e,i,s){const n=e[i];s=Pi([t.to,s,n,t.from]);const o=Pi([t.from,n,s]);this._active=!0,this._fn=t.fn||Ds[t.type||typeof o],this._easing=fi[t.easing]||fi.linear,this._start=Math.floor(Date.now()+(t.delay||0)),this._duration=this._total=Math.floor(t.duration),this._loop=!!t.loop,this._target=e,this._prop=i,this._from=o,this._to=s,this._promises=void 0}active(){return this._active}update(t,e,i){if(this._active){this._notify(!1);const s=this._target[this._prop],n=i-this._start,o=this._duration-n;this._start=i,this._duration=Math.floor(Math.max(o,t.duration)),this._total+=n,this._loop=!!t.loop,this._to=Pi([t.to,e,s,t.from]),this._from=Pi([t.from,s,e])}}cancel(){this._active&&(this.tick(Date.now()),this._active=!1,this._notify(!1))}tick(t){const e=t-this._start,i=this._duration,s=this._prop,n=this._from,o=this._loop,a=this._to;let r;if(this._active=n!==a&&(o||e1?2-r:r,r=this._easing(Math.min(1,Math.max(0,r))),this._target[s]=this._fn(n,a,r))}wait(){const t=this._promises||(this._promises=[]);return new Promise(((e,i)=>{t.push({res:e,rej:i})}))}_notify(t){const e=t?"res":"rej",i=this._promises||[];for(let t=0;t{const a=t[s];if(!o(a))return;const r={};for(const t of e)r[t]=a[t];(n(a.properties)&&a.properties||[s]).forEach((t=>{t!==s&&i.has(t)||i.set(t,r)}))}))}_animateOptions(t,e){const i=e.options,s=function(t,e){if(!e)return;let i=t.options;if(!i)return void(t.options=e);i.$shared&&(t.options=i=Object.assign({},i,{$shared:!1,$animations:{}}));return i}(t,i);if(!s)return[];const n=this._createAnimations(s,i);return i.$shared&&function(t,e){const i=[],s=Object.keys(e);for(let e=0;e{t.options=i}),(()=>{})),n}_createAnimations(t,e){const i=this._properties,s=[],n=t.$animations||(t.$animations={}),o=Object.keys(e),a=Date.now();let r;for(r=o.length-1;r>=0;--r){const l=o[r];if("$"===l.charAt(0))continue;if("options"===l){s.push(...this._animateOptions(t,e));continue}const h=e[l];let c=n[l];const d=i.get(l);if(c){if(d&&c.active()){c.update(d,h,a);continue}c.cancel()}d&&d.duration?(n[l]=c=new Cs(d,t,l,h),s.push(c)):t[l]=h}return s}update(t,e){if(0===this._properties.size)return void Object.assign(t,e);const i=this._createAnimations(t,e);return i.length?(bt.add(this._chart,i),!0):void 0}}function As(t,e){const i=t&&t.options||{},s=i.reverse,n=void 0===i.min?e:0,o=void 0===i.max?e:0;return{start:s?o:n,end:s?n:o}}function Ts(t,e){const i=[],s=t._getSortedDatasetMetas(e);let n,o;for(n=0,o=s.length;n0||!i&&e<0)return n.index}return null}function zs(t,e){const{chart:i,_cachedMeta:s}=t,n=i._stacks||(i._stacks={}),{iScale:o,vScale:a,index:r}=s,l=o.axis,h=a.axis,c=function(t,e,i){return`${t.id}.${e.id}.${i.stack||i.type}`}(o,a,s),d=e.length;let u;for(let t=0;ti[t].axis===e)).shift()}function Vs(t,e){const i=t.controller.index,s=t.vScale&&t.vScale.axis;if(s){e=e||t._parsed;for(const t of e){const e=t._stacks;if(!e||void 0===e[s]||void 0===e[s][i])return;delete e[s][i],void 0!==e[s]._visualValues&&void 0!==e[s]._visualValues[i]&&delete e[s]._visualValues[i]}}}const Bs=t=>"reset"===t||"none"===t,Ws=(t,e)=>e?t:Object.assign({},t);class Ns{static defaults={};static datasetElementType=null;static dataElementType=null;constructor(t,e){this.chart=t,this._ctx=t.ctx,this.index=e,this._cachedDataOpts={},this._cachedMeta=this.getMeta(),this._type=this._cachedMeta.type,this.options=void 0,this._parsing=!1,this._data=void 0,this._objectData=void 0,this._sharedOptions=void 0,this._drawStart=void 0,this._drawCount=void 0,this.enableOptionSharing=!1,this.supportsDecimation=!1,this.$context=void 0,this._syncList=[],this.datasetElementType=new.target.datasetElementType,this.dataElementType=new.target.dataElementType,this.initialize()}initialize(){const t=this._cachedMeta;this.configure(),this.linkScales(),t._stacked=Es(t.vScale,t),this.addElements(),this.options.fill&&!this.chart.isPluginEnabled("filler")&&console.warn("Tried to use the 'fill' option without the 'Filler' plugin enabled. Please import and register the 'Filler' plugin and make sure it is not disabled in the options")}updateIndex(t){this.index!==t&&Vs(this._cachedMeta),this.index=t}linkScales(){const t=this.chart,e=this._cachedMeta,i=this.getDataset(),s=(t,e,i,s)=>"x"===t?e:"r"===t?s:i,n=e.xAxisID=l(i.xAxisID,Fs(t,"x")),o=e.yAxisID=l(i.yAxisID,Fs(t,"y")),a=e.rAxisID=l(i.rAxisID,Fs(t,"r")),r=e.indexAxis,h=e.iAxisID=s(r,n,o,a),c=e.vAxisID=s(r,o,n,a);e.xScale=this.getScaleForId(n),e.yScale=this.getScaleForId(o),e.rScale=this.getScaleForId(a),e.iScale=this.getScaleForId(h),e.vScale=this.getScaleForId(c)}getDataset(){return this.chart.data.datasets[this.index]}getMeta(){return this.chart.getDatasetMeta(this.index)}getScaleForId(t){return this.chart.scales[t]}_getOtherScale(t){const e=this._cachedMeta;return t===e.iScale?e.vScale:e.iScale}reset(){this._update("reset")}_destroy(){const t=this._cachedMeta;this._data&&rt(this._data,this),t._stacked&&Vs(t)}_dataCheck(){const t=this.getDataset(),e=t.data||(t.data=[]),i=this._data;if(o(e)){const t=this._cachedMeta;this._data=function(t,e){const{iScale:i,vScale:s}=e,n="x"===i.axis?"x":"y",o="x"===s.axis?"x":"y",a=Object.keys(t),r=new Array(a.length);let l,h,c;for(l=0,h=a.length;l0&&i._parsed[t-1];if(!1===this._parsing)i._parsed=s,i._sorted=!0,d=s;else{d=n(s[t])?this.parseArrayData(i,s,t,e):o(s[t])?this.parseObjectData(i,s,t,e):this.parsePrimitiveData(i,s,t,e);const a=()=>null===c[l]||f&&c[l]t&&!e.hidden&&e._stacked&&{keys:Ts(i,!0),values:null})(e,i,this.chart),h={min:Number.POSITIVE_INFINITY,max:Number.NEGATIVE_INFINITY},{min:c,max:d}=function(t){const{min:e,max:i,minDefined:s,maxDefined:n}=t.getUserBounds();return{min:s?e:Number.NEGATIVE_INFINITY,max:n?i:Number.POSITIVE_INFINITY}}(r);let u,f;function g(){f=s[u];const e=f[r.axis];return!a(f[t.axis])||c>e||d=0;--u)if(!g()){this.updateRangeFromParsed(h,t,f,l);break}return h}getAllParsedValues(t){const e=this._cachedMeta._parsed,i=[];let s,n,o;for(s=0,n=e.length;s=0&&tthis.getContext(i,s,e)),c);return f.$shared&&(f.$shared=r,n[o]=Object.freeze(Ws(f,r))),f}_resolveAnimations(t,e,i){const s=this.chart,n=this._cachedDataOpts,o=`animation-${e}`,a=n[o];if(a)return a;let r;if(!1!==s.options.animation){const s=this.chart.config,n=s.datasetAnimationScopeKeys(this._type,e),o=s.getOptionScopes(this.getDataset(),n);r=s.createResolver(o,this.getContext(t,i,e))}const l=new Os(s,r&&r.animations);return r&&r._cacheable&&(n[o]=Object.freeze(l)),l}getSharedOptions(t){if(t.$shared)return this._sharedOptions||(this._sharedOptions=Object.assign({},t))}includeOptions(t,e){return!e||Bs(t)||this.chart._animationsDisabled}_getSharedOptions(t,e){const i=this.resolveDataElementOptions(t,e),s=this._sharedOptions,n=this.getSharedOptions(i),o=this.includeOptions(e,n)||n!==s;return this.updateSharedOptions(n,e,i),{sharedOptions:n,includeOptions:o}}updateElement(t,e,i,s){Bs(s)?Object.assign(t,i):this._resolveAnimations(e,s).update(t,i)}updateSharedOptions(t,e,i){t&&!Bs(e)&&this._resolveAnimations(void 0,e).update(t,i)}_setStyle(t,e,i,s){t.active=s;const n=this.getStyle(e,s);this._resolveAnimations(e,i,s).update(t,{options:!s&&this.getSharedOptions(n)||n})}removeHoverStyle(t,e,i){this._setStyle(t,i,"active",!1)}setHoverStyle(t,e,i){this._setStyle(t,i,"active",!0)}_removeDatasetHoverStyle(){const t=this._cachedMeta.dataset;t&&this._setStyle(t,void 0,"active",!1)}_setDatasetHoverStyle(){const t=this._cachedMeta.dataset;t&&this._setStyle(t,void 0,"active",!0)}_resyncElements(t){const e=this._data,i=this._cachedMeta.data;for(const[t,e,i]of this._syncList)this[t](e,i);this._syncList=[];const s=i.length,n=e.length,o=Math.min(n,s);o&&this.parse(0,o),n>s?this._insertElements(s,n-s,t):n{for(t.length+=e,a=t.length-1;a>=o;a--)t[a]=t[a-e]};for(r(n),a=t;a{s[t]=i[t]&&i[t].active()?i[t]._to:this[t]})),s}}function js(t,e){const i=t.options.ticks,n=function(t){const e=t.options.offset,i=t._tickSize(),s=t._length/i+(e?0:1),n=t._maxLength/i;return Math.floor(Math.min(s,n))}(t),o=Math.min(i.maxTicksLimit||n,n),a=i.major.enabled?function(t){const e=[];let i,s;for(i=0,s=t.length;io)return function(t,e,i,s){let n,o=0,a=i[0];for(s=Math.ceil(s),n=0;nn)return e}return Math.max(n,1)}(a,e,o);if(r>0){let t,i;const n=r>1?Math.round((h-l)/(r-1)):null;for($s(e,c,d,s(n)?0:l-n,l),t=0,i=r-1;t"top"===e||"left"===e?t[e]+i:t[e]-i,Us=(t,e)=>Math.min(e||t,t);function Xs(t,e){const i=[],s=t.length/e,n=t.length;let o=0;for(;oa+r)))return h}function Ks(t){return t.drawTicks?t.tickLength:0}function Gs(t,e){if(!t.display)return 0;const i=Si(t.font,e),s=ki(t.padding);return(n(t.text)?t.text.length:1)*i.lineHeight+s.height}function Zs(t,e,i){let s=ut(t);return(i&&"right"!==e||!i&&"right"===e)&&(s=(t=>"left"===t?"right":"right"===t?"left":t)(s)),s}class Js extends Hs{constructor(t){super(),this.id=t.id,this.type=t.type,this.options=void 0,this.ctx=t.ctx,this.chart=t.chart,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.width=void 0,this.height=void 0,this._margins={left:0,right:0,top:0,bottom:0},this.maxWidth=void 0,this.maxHeight=void 0,this.paddingTop=void 0,this.paddingBottom=void 0,this.paddingLeft=void 0,this.paddingRight=void 0,this.axis=void 0,this.labelRotation=void 0,this.min=void 0,this.max=void 0,this._range=void 0,this.ticks=[],this._gridLineItems=null,this._labelItems=null,this._labelSizes=null,this._length=0,this._maxLength=0,this._longestTextCache={},this._startPixel=void 0,this._endPixel=void 0,this._reversePixels=!1,this._userMax=void 0,this._userMin=void 0,this._suggestedMax=void 0,this._suggestedMin=void 0,this._ticksLength=0,this._borderValue=0,this._cache={},this._dataLimitsCached=!1,this.$context=void 0}init(t){this.options=t.setContext(this.getContext()),this.axis=t.axis,this._userMin=this.parse(t.min),this._userMax=this.parse(t.max),this._suggestedMin=this.parse(t.suggestedMin),this._suggestedMax=this.parse(t.suggestedMax)}parse(t,e){return t}getUserBounds(){let{_userMin:t,_userMax:e,_suggestedMin:i,_suggestedMax:s}=this;return t=r(t,Number.POSITIVE_INFINITY),e=r(e,Number.NEGATIVE_INFINITY),i=r(i,Number.POSITIVE_INFINITY),s=r(s,Number.NEGATIVE_INFINITY),{min:r(t,i),max:r(e,s),minDefined:a(t),maxDefined:a(e)}}getMinMax(t){let e,{min:i,max:s,minDefined:n,maxDefined:o}=this.getUserBounds();if(n&&o)return{min:i,max:s};const a=this.getMatchingVisibleMetas();for(let r=0,l=a.length;rs?s:i,s=n&&i>s?i:s,{min:r(i,r(s,i)),max:r(s,r(i,s))}}getPadding(){return{left:this.paddingLeft||0,top:this.paddingTop||0,right:this.paddingRight||0,bottom:this.paddingBottom||0}}getTicks(){return this.ticks}getLabels(){const t=this.chart.data;return this.options.labels||(this.isHorizontal()?t.xLabels:t.yLabels)||t.labels||[]}getLabelItems(t=this.chart.chartArea){return this._labelItems||(this._labelItems=this._computeLabelItems(t))}beforeLayout(){this._cache={},this._dataLimitsCached=!1}beforeUpdate(){d(this.options.beforeUpdate,[this])}update(t,e,i){const{beginAtZero:s,grace:n,ticks:o}=this.options,a=o.sampleSize;this.beforeUpdate(),this.maxWidth=t,this.maxHeight=e,this._margins=i=Object.assign({left:0,right:0,top:0,bottom:0},i),this.ticks=null,this._labelSizes=null,this._gridLineItems=null,this._labelItems=null,this.beforeSetDimensions(),this.setDimensions(),this.afterSetDimensions(),this._maxLength=this.isHorizontal()?this.width+i.left+i.right:this.height+i.top+i.bottom,this._dataLimitsCached||(this.beforeDataLimits(),this.determineDataLimits(),this.afterDataLimits(),this._range=Di(this,n,s),this._dataLimitsCached=!0),this.beforeBuildTicks(),this.ticks=this.buildTicks()||[],this.afterBuildTicks();const r=a=n||i<=1||!this.isHorizontal())return void(this.labelRotation=s);const h=this._getLabelSizes(),c=h.widest.width,d=h.highest.height,u=J(this.chart.width-c,0,this.maxWidth);o=t.offset?this.maxWidth/i:u/(i-1),c+6>o&&(o=u/(i-(t.offset?.5:1)),a=this.maxHeight-Ks(t.grid)-e.padding-Gs(t.title,this.chart.options.font),r=Math.sqrt(c*c+d*d),l=Y(Math.min(Math.asin(J((h.highest.height+6)/o,-1,1)),Math.asin(J(a/r,-1,1))-Math.asin(J(d/r,-1,1)))),l=Math.max(s,Math.min(n,l))),this.labelRotation=l}afterCalculateLabelRotation(){d(this.options.afterCalculateLabelRotation,[this])}afterAutoSkip(){}beforeFit(){d(this.options.beforeFit,[this])}fit(){const t={width:0,height:0},{chart:e,options:{ticks:i,title:s,grid:n}}=this,o=this._isVisible(),a=this.isHorizontal();if(o){const o=Gs(s,e.options.font);if(a?(t.width=this.maxWidth,t.height=Ks(n)+o):(t.height=this.maxHeight,t.width=Ks(n)+o),i.display&&this.ticks.length){const{first:e,last:s,widest:n,highest:o}=this._getLabelSizes(),r=2*i.padding,l=$(this.labelRotation),h=Math.cos(l),c=Math.sin(l);if(a){const e=i.mirror?0:c*n.width+h*o.height;t.height=Math.min(this.maxHeight,t.height+e+r)}else{const e=i.mirror?0:h*n.width+c*o.height;t.width=Math.min(this.maxWidth,t.width+e+r)}this._calculatePadding(e,s,c,h)}}this._handleMargins(),a?(this.width=this._length=e.width-this._margins.left-this._margins.right,this.height=t.height):(this.width=t.width,this.height=this._length=e.height-this._margins.top-this._margins.bottom)}_calculatePadding(t,e,i,s){const{ticks:{align:n,padding:o},position:a}=this.options,r=0!==this.labelRotation,l="top"!==a&&"x"===this.axis;if(this.isHorizontal()){const a=this.getPixelForTick(0)-this.left,h=this.right-this.getPixelForTick(this.ticks.length-1);let c=0,d=0;r?l?(c=s*t.width,d=i*e.height):(c=i*t.height,d=s*e.width):"start"===n?d=e.width:"end"===n?c=t.width:"inner"!==n&&(c=t.width/2,d=e.width/2),this.paddingLeft=Math.max((c-a+o)*this.width/(this.width-a),0),this.paddingRight=Math.max((d-h+o)*this.width/(this.width-h),0)}else{let i=e.height/2,s=t.height/2;"start"===n?(i=0,s=t.height):"end"===n&&(i=e.height,s=0),this.paddingTop=i+o,this.paddingBottom=s+o}}_handleMargins(){this._margins&&(this._margins.left=Math.max(this.paddingLeft,this._margins.left),this._margins.top=Math.max(this.paddingTop,this._margins.top),this._margins.right=Math.max(this.paddingRight,this._margins.right),this._margins.bottom=Math.max(this.paddingBottom,this._margins.bottom))}afterFit(){d(this.options.afterFit,[this])}isHorizontal(){const{axis:t,position:e}=this.options;return"top"===e||"bottom"===e||"x"===t}isFullSize(){return this.options.fullSize}_convertTicksToLabels(t){let e,i;for(this.beforeTickToLabelConversion(),this.generateTickLabels(t),e=0,i=t.length;e{const i=t.gc,s=i.length/2;let n;if(s>e){for(n=0;n({width:r[t]||0,height:l[t]||0});return{first:P(0),last:P(e-1),widest:P(k),highest:P(S),widths:r,heights:l}}getLabelForValue(t){return t}getPixelForValue(t,e){return NaN}getValueForPixel(t){}getPixelForTick(t){const e=this.ticks;return t<0||t>e.length-1?null:this.getPixelForValue(e[t].value)}getPixelForDecimal(t){this._reversePixels&&(t=1-t);const e=this._startPixel+t*this._length;return Q(this._alignToPixels?Ae(this.chart,e,0):e)}getDecimalForPixel(t){const e=(t-this._startPixel)/this._length;return this._reversePixels?1-e:e}getBasePixel(){return this.getPixelForValue(this.getBaseValue())}getBaseValue(){const{min:t,max:e}=this;return t<0&&e<0?e:t>0&&e>0?t:0}getContext(t){const e=this.ticks||[];if(t>=0&&ta*s?a/i:r/s:r*s0}_computeGridLineItems(t){const e=this.axis,i=this.chart,s=this.options,{grid:n,position:a,border:r}=s,h=n.offset,c=this.isHorizontal(),d=this.ticks.length+(h?1:0),u=Ks(n),f=[],g=r.setContext(this.getContext()),p=g.display?g.width:0,m=p/2,x=function(t){return Ae(i,t,p)};let b,_,y,v,M,w,k,S,P,D,C,O;if("top"===a)b=x(this.bottom),w=this.bottom-u,S=b-m,D=x(t.top)+m,O=t.bottom;else if("bottom"===a)b=x(this.top),D=t.top,O=x(t.bottom)-m,w=b+m,S=this.top+u;else if("left"===a)b=x(this.right),M=this.right-u,k=b-m,P=x(t.left)+m,C=t.right;else if("right"===a)b=x(this.left),P=t.left,C=x(t.right)-m,M=b+m,k=this.left+u;else if("x"===e){if("center"===a)b=x((t.top+t.bottom)/2+.5);else if(o(a)){const t=Object.keys(a)[0],e=a[t];b=x(this.chart.scales[t].getPixelForValue(e))}D=t.top,O=t.bottom,w=b+m,S=w+u}else if("y"===e){if("center"===a)b=x((t.left+t.right)/2);else if(o(a)){const t=Object.keys(a)[0],e=a[t];b=x(this.chart.scales[t].getPixelForValue(e))}M=b-m,k=M-u,P=t.left,C=t.right}const A=l(s.ticks.maxTicksLimit,d),T=Math.max(1,Math.ceil(d/A));for(_=0;_0&&(o-=s/2)}d={left:o,top:n,width:s+e.width,height:i+e.height,color:t.backdropColor}}x.push({label:v,font:P,textOffset:O,options:{rotation:m,color:i,strokeColor:o,strokeWidth:h,textAlign:f,textBaseline:A,translation:[M,w],backdrop:d}})}return x}_getXAxisLabelAlignment(){const{position:t,ticks:e}=this.options;if(-$(this.labelRotation))return"top"===t?"left":"right";let i="center";return"start"===e.align?i="left":"end"===e.align?i="right":"inner"===e.align&&(i="inner"),i}_getYAxisLabelAlignment(t){const{position:e,ticks:{crossAlign:i,mirror:s,padding:n}}=this.options,o=t+n,a=this._getLabelSizes().widest.width;let r,l;return"left"===e?s?(l=this.right+n,"near"===i?r="left":"center"===i?(r="center",l+=a/2):(r="right",l+=a)):(l=this.right-o,"near"===i?r="right":"center"===i?(r="center",l-=a/2):(r="left",l=this.left)):"right"===e?s?(l=this.left+n,"near"===i?r="right":"center"===i?(r="center",l-=a/2):(r="left",l-=a)):(l=this.left+o,"near"===i?r="left":"center"===i?(r="center",l+=a/2):(r="right",l=this.right)):r="right",{textAlign:r,x:l}}_computeLabelArea(){if(this.options.ticks.mirror)return;const t=this.chart,e=this.options.position;return"left"===e||"right"===e?{top:0,left:this.left,bottom:t.height,right:this.right}:"top"===e||"bottom"===e?{top:this.top,left:0,bottom:this.bottom,right:t.width}:void 0}drawBackground(){const{ctx:t,options:{backgroundColor:e},left:i,top:s,width:n,height:o}=this;e&&(t.save(),t.fillStyle=e,t.fillRect(i,s,n,o),t.restore())}getLineWidthForValue(t){const e=this.options.grid;if(!this._isVisible()||!e.display)return 0;const i=this.ticks.findIndex((e=>e.value===t));if(i>=0){return e.setContext(this.getContext(i)).lineWidth}return 0}drawGrid(t){const e=this.options.grid,i=this.ctx,s=this._gridLineItems||(this._gridLineItems=this._computeGridLineItems(t));let n,o;const a=(t,e,s)=>{s.width&&s.color&&(i.save(),i.lineWidth=s.width,i.strokeStyle=s.color,i.setLineDash(s.borderDash||[]),i.lineDashOffset=s.borderDashOffset,i.beginPath(),i.moveTo(t.x,t.y),i.lineTo(e.x,e.y),i.stroke(),i.restore())};if(e.display)for(n=0,o=s.length;n{this.drawBackground(),this.drawGrid(t),this.drawTitle()}},{z:s,draw:()=>{this.drawBorder()}},{z:e,draw:t=>{this.drawLabels(t)}}]:[{z:e,draw:t=>{this.draw(t)}}]}getMatchingVisibleMetas(t){const e=this.chart.getSortedVisibleDatasetMetas(),i=this.axis+"AxisID",s=[];let n,o;for(n=0,o=e.length;n{const s=i.split("."),n=s.pop(),o=[t].concat(s).join("."),a=e[i].split("."),r=a.pop(),l=a.join(".");ue.route(o,n,l,r)}))}(e,t.defaultRoutes);t.descriptors&&ue.describe(e,t.descriptors)}(t,o,i),this.override&&ue.override(t.id,t.overrides)),o}get(t){return this.items[t]}unregister(t){const e=this.items,i=t.id,s=this.scope;i in e&&delete e[i],s&&i in ue[s]&&(delete ue[s][i],this.override&&delete re[i])}}class tn{constructor(){this.controllers=new Qs(Ns,"datasets",!0),this.elements=new Qs(Hs,"elements"),this.plugins=new Qs(Object,"plugins"),this.scales=new Qs(Js,"scales"),this._typedRegistries=[this.controllers,this.scales,this.elements]}add(...t){this._each("register",t)}remove(...t){this._each("unregister",t)}addControllers(...t){this._each("register",t,this.controllers)}addElements(...t){this._each("register",t,this.elements)}addPlugins(...t){this._each("register",t,this.plugins)}addScales(...t){this._each("register",t,this.scales)}getController(t){return this._get(t,this.controllers,"controller")}getElement(t){return this._get(t,this.elements,"element")}getPlugin(t){return this._get(t,this.plugins,"plugin")}getScale(t){return this._get(t,this.scales,"scale")}removeControllers(...t){this._each("unregister",t,this.controllers)}removeElements(...t){this._each("unregister",t,this.elements)}removePlugins(...t){this._each("unregister",t,this.plugins)}removeScales(...t){this._each("unregister",t,this.scales)}_each(t,e,i){[...e].forEach((e=>{const s=i||this._getRegistryForType(e);i||s.isForType(e)||s===this.plugins&&e.id?this._exec(t,s,e):u(e,(e=>{const s=i||this._getRegistryForType(e);this._exec(t,s,e)}))}))}_exec(t,e,i){const s=w(t);d(i["before"+s],[],i),e[t](i),d(i["after"+s],[],i)}_getRegistryForType(t){for(let e=0;et.filter((t=>!e.some((e=>t.plugin.id===e.plugin.id))));this._notify(s(e,i),t,"stop"),this._notify(s(i,e),t,"start")}}function nn(t,e){return e||!1!==t?!0===t?{}:t:null}function on(t,{plugin:e,local:i},s,n){const o=t.pluginScopeKeys(e),a=t.getOptionScopes(s,o);return i&&e.defaults&&a.push(e.defaults),t.createResolver(a,n,[""],{scriptable:!1,indexable:!1,allKeys:!0})}function an(t,e){const i=ue.datasets[t]||{};return((e.datasets||{})[t]||{}).indexAxis||e.indexAxis||i.indexAxis||"x"}function rn(t){if("x"===t||"y"===t||"r"===t)return t}function ln(t,...e){if(rn(t))return t;for(const s of e){const e=s.axis||("top"===(i=s.position)||"bottom"===i?"x":"left"===i||"right"===i?"y":void 0)||t.length>1&&rn(t[0].toLowerCase());if(e)return e}var i;throw new Error(`Cannot determine type of '${t}' axis. Please provide 'axis' or 'position' option.`)}function hn(t,e,i){if(i[e+"AxisID"]===t)return{axis:e}}function cn(t,e){const i=re[t.type]||{scales:{}},s=e.scales||{},n=an(t.type,e),a=Object.create(null);return Object.keys(s).forEach((e=>{const r=s[e];if(!o(r))return console.error(`Invalid scale configuration for scale: ${e}`);if(r._proxy)return console.warn(`Ignoring resolver passed as options for scale: ${e}`);const l=ln(e,r,function(t,e){if(e.data&&e.data.datasets){const i=e.data.datasets.filter((e=>e.xAxisID===t||e.yAxisID===t));if(i.length)return hn(t,"x",i[0])||hn(t,"y",i[0])}return{}}(e,t),ue.scales[r.type]),h=function(t,e){return t===e?"_index_":"_value_"}(l,n),c=i.scales||{};a[e]=b(Object.create(null),[{axis:l},r,c[l],c[h]])})),t.data.datasets.forEach((i=>{const n=i.type||t.type,o=i.indexAxis||an(n,e),r=(re[n]||{}).scales||{};Object.keys(r).forEach((t=>{const e=function(t,e){let i=t;return"_index_"===t?i=e:"_value_"===t&&(i="x"===e?"y":"x"),i}(t,o),n=i[e+"AxisID"]||e;a[n]=a[n]||Object.create(null),b(a[n],[{axis:e},s[n],r[t]])}))})),Object.keys(a).forEach((t=>{const e=a[t];b(e,[ue.scales[e.type],ue.scale])})),a}function dn(t){const e=t.options||(t.options={});e.plugins=l(e.plugins,{}),e.scales=cn(t,e)}function un(t){return(t=t||{}).datasets=t.datasets||[],t.labels=t.labels||[],t}const fn=new Map,gn=new Set;function pn(t,e){let i=fn.get(t);return i||(i=e(),fn.set(t,i),gn.add(i)),i}const mn=(t,e,i)=>{const s=M(e,i);void 0!==s&&t.add(s)};class xn{constructor(t){this._config=function(t){return(t=t||{}).data=un(t.data),dn(t),t}(t),this._scopeCache=new Map,this._resolverCache=new Map}get platform(){return this._config.platform}get type(){return this._config.type}set type(t){this._config.type=t}get data(){return this._config.data}set data(t){this._config.data=un(t)}get options(){return this._config.options}set options(t){this._config.options=t}get plugins(){return this._config.plugins}update(){const t=this._config;this.clearCache(),dn(t)}clearCache(){this._scopeCache.clear(),this._resolverCache.clear()}datasetScopeKeys(t){return pn(t,(()=>[[`datasets.${t}`,""]]))}datasetAnimationScopeKeys(t,e){return pn(`${t}.transition.${e}`,(()=>[[`datasets.${t}.transitions.${e}`,`transitions.${e}`],[`datasets.${t}`,""]]))}datasetElementScopeKeys(t,e){return pn(`${t}-${e}`,(()=>[[`datasets.${t}.elements.${e}`,`datasets.${t}`,`elements.${e}`,""]]))}pluginScopeKeys(t){const e=t.id;return pn(`${this.type}-plugin-${e}`,(()=>[[`plugins.${e}`,...t.additionalOptionScopes||[]]]))}_cachedScopes(t,e){const i=this._scopeCache;let s=i.get(t);return s&&!e||(s=new Map,i.set(t,s)),s}getOptionScopes(t,e,i){const{options:s,type:n}=this,o=this._cachedScopes(t,i),a=o.get(e);if(a)return a;const r=new Set;e.forEach((e=>{t&&(r.add(t),e.forEach((e=>mn(r,t,e)))),e.forEach((t=>mn(r,s,t))),e.forEach((t=>mn(r,re[n]||{},t))),e.forEach((t=>mn(r,ue,t))),e.forEach((t=>mn(r,le,t)))}));const l=Array.from(r);return 0===l.length&&l.push(Object.create(null)),gn.has(e)&&o.set(e,l),l}chartOptionScopes(){const{options:t,type:e}=this;return[t,re[e]||{},ue.datasets[e]||{},{type:e},ue,le]}resolveNamedOptions(t,e,i,s=[""]){const o={$shared:!0},{resolver:a,subPrefixes:r}=bn(this._resolverCache,t,s);let l=a;if(function(t,e){const{isScriptable:i,isIndexable:s}=Ye(t);for(const o of e){const e=i(o),a=s(o),r=(a||e)&&t[o];if(e&&(S(r)||_n(r))||a&&n(r))return!0}return!1}(a,e)){o.$shared=!1;l=$e(a,i=S(i)?i():i,this.createResolver(t,i,r))}for(const t of e)o[t]=l[t];return o}createResolver(t,e,i=[""],s){const{resolver:n}=bn(this._resolverCache,t,i);return o(e)?$e(n,e,void 0,s):n}}function bn(t,e,i){let s=t.get(e);s||(s=new Map,t.set(e,s));const n=i.join();let o=s.get(n);if(!o){o={resolver:je(e,i),subPrefixes:i.filter((t=>!t.toLowerCase().includes("hover")))},s.set(n,o)}return o}const _n=t=>o(t)&&Object.getOwnPropertyNames(t).some((e=>S(t[e])));const yn=["top","bottom","left","right","chartArea"];function vn(t,e){return"top"===t||"bottom"===t||-1===yn.indexOf(t)&&"x"===e}function Mn(t,e){return function(i,s){return i[t]===s[t]?i[e]-s[e]:i[t]-s[t]}}function wn(t){const e=t.chart,i=e.options.animation;e.notifyPlugins("afterRender"),d(i&&i.onComplete,[t],e)}function kn(t){const e=t.chart,i=e.options.animation;d(i&&i.onProgress,[t],e)}function Sn(t){return fe()&&"string"==typeof t?t=document.getElementById(t):t&&t.length&&(t=t[0]),t&&t.canvas&&(t=t.canvas),t}const Pn={},Dn=t=>{const e=Sn(t);return Object.values(Pn).filter((t=>t.canvas===e)).pop()};function Cn(t,e,i){const s=Object.keys(t);for(const n of s){const s=+n;if(s>=e){const o=t[n];delete t[n],(i>0||s>e)&&(t[s+i]=o)}}}function On(t,e,i){return t.options.clip?t[i]:e[i]}class An{static defaults=ue;static instances=Pn;static overrides=re;static registry=en;static version="4.4.4";static getChart=Dn;static register(...t){en.add(...t),Tn()}static unregister(...t){en.remove(...t),Tn()}constructor(t,e){const s=this.config=new xn(e),n=Sn(t),o=Dn(n);if(o)throw new Error("Canvas is already in use. Chart with ID '"+o.id+"' must be destroyed before the canvas with ID '"+o.canvas.id+"' can be reused.");const a=s.createResolver(s.chartOptionScopes(),this.getContext());this.platform=new(s.platform||ks(n)),this.platform.updateConfig(s);const r=this.platform.acquireContext(n,a.aspectRatio),l=r&&r.canvas,h=l&&l.height,c=l&&l.width;this.id=i(),this.ctx=r,this.canvas=l,this.width=c,this.height=h,this._options=a,this._aspectRatio=this.aspectRatio,this._layers=[],this._metasets=[],this._stacks=void 0,this.boxes=[],this.currentDevicePixelRatio=void 0,this.chartArea=void 0,this._active=[],this._lastEvent=void 0,this._listeners={},this._responsiveListeners=void 0,this._sortedMetasets=[],this.scales={},this._plugins=new sn,this.$proxies={},this._hiddenIndices={},this.attached=!1,this._animationsDisabled=void 0,this.$context=void 0,this._doResize=dt((t=>this.update(t)),a.resizeDelay||0),this._dataChanges=[],Pn[this.id]=this,r&&l?(bt.listen(this,"complete",wn),bt.listen(this,"progress",kn),this._initialize(),this.attached&&this.update()):console.error("Failed to create chart: can't acquire context from the given item")}get aspectRatio(){const{options:{aspectRatio:t,maintainAspectRatio:e},width:i,height:n,_aspectRatio:o}=this;return s(t)?e&&o?o:n?i/n:null:t}get data(){return this.config.data}set data(t){this.config.data=t}get options(){return this._options}set options(t){this.config.options=t}get registry(){return en}_initialize(){return this.notifyPlugins("beforeInit"),this.options.responsive?this.resize():ke(this,this.options.devicePixelRatio),this.bindEvents(),this.notifyPlugins("afterInit"),this}clear(){return Te(this.canvas,this.ctx),this}stop(){return bt.stop(this),this}resize(t,e){bt.running(this)?this._resizeBeforeDraw={width:t,height:e}:this._resize(t,e)}_resize(t,e){const i=this.options,s=this.canvas,n=i.maintainAspectRatio&&this.aspectRatio,o=this.platform.getMaximumSize(s,t,e,n),a=i.devicePixelRatio||this.platform.getDevicePixelRatio(),r=this.width?"resize":"attach";this.width=o.width,this.height=o.height,this._aspectRatio=this.aspectRatio,ke(this,a,!0)&&(this.notifyPlugins("resize",{size:o}),d(i.onResize,[this,o],this),this.attached&&this._doResize(r)&&this.render())}ensureScalesHaveIDs(){u(this.options.scales||{},((t,e)=>{t.id=e}))}buildOrUpdateScales(){const t=this.options,e=t.scales,i=this.scales,s=Object.keys(i).reduce(((t,e)=>(t[e]=!1,t)),{});let n=[];e&&(n=n.concat(Object.keys(e).map((t=>{const i=e[t],s=ln(t,i),n="r"===s,o="x"===s;return{options:i,dposition:n?"chartArea":o?"bottom":"left",dtype:n?"radialLinear":o?"category":"linear"}})))),u(n,(e=>{const n=e.options,o=n.id,a=ln(o,n),r=l(n.type,e.dtype);void 0!==n.position&&vn(n.position,a)===vn(e.dposition)||(n.position=e.dposition),s[o]=!0;let h=null;if(o in i&&i[o].type===r)h=i[o];else{h=new(en.getScale(r))({id:o,type:r,ctx:this.ctx,chart:this}),i[h.id]=h}h.init(n,t)})),u(s,((t,e)=>{t||delete i[e]})),u(i,(t=>{as.configure(this,t,t.options),as.addBox(this,t)}))}_updateMetasets(){const t=this._metasets,e=this.data.datasets.length,i=t.length;if(t.sort(((t,e)=>t.index-e.index)),i>e){for(let t=e;te.length&&delete this._stacks,t.forEach(((t,i)=>{0===e.filter((e=>e===t._dataset)).length&&this._destroyDatasetMeta(i)}))}buildOrUpdateControllers(){const t=[],e=this.data.datasets;let i,s;for(this._removeUnreferencedMetasets(),i=0,s=e.length;i{this.getDatasetMeta(e).controller.reset()}),this)}reset(){this._resetElements(),this.notifyPlugins("reset")}update(t){const e=this.config;e.update();const i=this._options=e.createResolver(e.chartOptionScopes(),this.getContext()),s=this._animationsDisabled=!i.animation;if(this._updateScales(),this._checkEventBindings(),this._updateHiddenIndices(),this._plugins.invalidate(),!1===this.notifyPlugins("beforeUpdate",{mode:t,cancelable:!0}))return;const n=this.buildOrUpdateControllers();this.notifyPlugins("beforeElementsUpdate");let o=0;for(let t=0,e=this.data.datasets.length;t{t.reset()})),this._updateDatasets(t),this.notifyPlugins("afterUpdate",{mode:t}),this._layers.sort(Mn("z","_idx"));const{_active:a,_lastEvent:r}=this;r?this._eventHandler(r,!0):a.length&&this._updateHoverStyles(a,a,!0),this.render()}_updateScales(){u(this.scales,(t=>{as.removeBox(this,t)})),this.ensureScalesHaveIDs(),this.buildOrUpdateScales()}_checkEventBindings(){const t=this.options,e=new Set(Object.keys(this._listeners)),i=new Set(t.events);P(e,i)&&!!this._responsiveListeners===t.responsive||(this.unbindEvents(),this.bindEvents())}_updateHiddenIndices(){const{_hiddenIndices:t}=this,e=this._getUniformDataChanges()||[];for(const{method:i,start:s,count:n}of e){Cn(t,s,"_removeElements"===i?-n:n)}}_getUniformDataChanges(){const t=this._dataChanges;if(!t||!t.length)return;this._dataChanges=[];const e=this.data.datasets.length,i=e=>new Set(t.filter((t=>t[0]===e)).map(((t,e)=>e+","+t.splice(1).join(",")))),s=i(0);for(let t=1;tt.split(","))).map((t=>({method:t[1],start:+t[2],count:+t[3]})))}_updateLayout(t){if(!1===this.notifyPlugins("beforeLayout",{cancelable:!0}))return;as.update(this,this.width,this.height,t);const e=this.chartArea,i=e.width<=0||e.height<=0;this._layers=[],u(this.boxes,(t=>{i&&"chartArea"===t.position||(t.configure&&t.configure(),this._layers.push(...t._layers()))}),this),this._layers.forEach(((t,e)=>{t._idx=e})),this.notifyPlugins("afterLayout")}_updateDatasets(t){if(!1!==this.notifyPlugins("beforeDatasetsUpdate",{mode:t,cancelable:!0})){for(let t=0,e=this.data.datasets.length;t=0;--e)this._drawDataset(t[e]);this.notifyPlugins("afterDatasetsDraw")}_drawDataset(t){const e=this.ctx,i=t._clip,s=!i.disabled,n=function(t,e){const{xScale:i,yScale:s}=t;return i&&s?{left:On(i,e,"left"),right:On(i,e,"right"),top:On(s,e,"top"),bottom:On(s,e,"bottom")}:e}(t,this.chartArea),o={meta:t,index:t.index,cancelable:!0};!1!==this.notifyPlugins("beforeDatasetDraw",o)&&(s&&Ie(e,{left:!1===i.left?0:n.left-i.left,right:!1===i.right?this.width:n.right+i.right,top:!1===i.top?0:n.top-i.top,bottom:!1===i.bottom?this.height:n.bottom+i.bottom}),t.controller.draw(),s&&ze(e),o.cancelable=!1,this.notifyPlugins("afterDatasetDraw",o))}isPointInArea(t){return Re(t,this.chartArea,this._minPadding)}getElementsAtEventForMode(t,e,i,s){const n=Xi.modes[e];return"function"==typeof n?n(this,t,i,s):[]}getDatasetMeta(t){const e=this.data.datasets[t],i=this._metasets;let s=i.filter((t=>t&&t._dataset===e)).pop();return s||(s={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null,order:e&&e.order||0,index:t,_dataset:e,_parsed:[],_sorted:!1},i.push(s)),s}getContext(){return this.$context||(this.$context=Ci(null,{chart:this,type:"chart"}))}getVisibleDatasetCount(){return this.getSortedVisibleDatasetMetas().length}isDatasetVisible(t){const e=this.data.datasets[t];if(!e)return!1;const i=this.getDatasetMeta(t);return"boolean"==typeof i.hidden?!i.hidden:!e.hidden}setDatasetVisibility(t,e){this.getDatasetMeta(t).hidden=!e}toggleDataVisibility(t){this._hiddenIndices[t]=!this._hiddenIndices[t]}getDataVisibility(t){return!this._hiddenIndices[t]}_updateVisibility(t,e,i){const s=i?"show":"hide",n=this.getDatasetMeta(t),o=n.controller._resolveAnimations(void 0,s);k(e)?(n.data[e].hidden=!i,this.update()):(this.setDatasetVisibility(t,i),o.update(n,{visible:i}),this.update((e=>e.datasetIndex===t?s:void 0)))}hide(t,e){this._updateVisibility(t,e,!1)}show(t,e){this._updateVisibility(t,e,!0)}_destroyDatasetMeta(t){const e=this._metasets[t];e&&e.controller&&e.controller._destroy(),delete this._metasets[t]}_stop(){let t,e;for(this.stop(),bt.remove(this),t=0,e=this.data.datasets.length;t{e.addEventListener(this,i,s),t[i]=s},s=(t,e,i)=>{t.offsetX=e,t.offsetY=i,this._eventHandler(t)};u(this.options.events,(t=>i(t,s)))}bindResponsiveEvents(){this._responsiveListeners||(this._responsiveListeners={});const t=this._responsiveListeners,e=this.platform,i=(i,s)=>{e.addEventListener(this,i,s),t[i]=s},s=(i,s)=>{t[i]&&(e.removeEventListener(this,i,s),delete t[i])},n=(t,e)=>{this.canvas&&this.resize(t,e)};let o;const a=()=>{s("attach",a),this.attached=!0,this.resize(),i("resize",n),i("detach",o)};o=()=>{this.attached=!1,s("resize",n),this._stop(),this._resize(0,0),i("attach",a)},e.isAttached(this.canvas)?a():o()}unbindEvents(){u(this._listeners,((t,e)=>{this.platform.removeEventListener(this,e,t)})),this._listeners={},u(this._responsiveListeners,((t,e)=>{this.platform.removeEventListener(this,e,t)})),this._responsiveListeners=void 0}updateHoverStyle(t,e,i){const s=i?"set":"remove";let n,o,a,r;for("dataset"===e&&(n=this.getDatasetMeta(t[0].datasetIndex),n.controller["_"+s+"DatasetHoverStyle"]()),a=0,r=t.length;a{const i=this.getDatasetMeta(t);if(!i)throw new Error("No dataset found at index "+t);return{datasetIndex:t,element:i.data[e],index:e}}));!f(i,e)&&(this._active=i,this._lastEvent=null,this._updateHoverStyles(i,e))}notifyPlugins(t,e,i){return this._plugins.notify(this,t,e,i)}isPluginEnabled(t){return 1===this._plugins._cache.filter((e=>e.plugin.id===t)).length}_updateHoverStyles(t,e,i){const s=this.options.hover,n=(t,e)=>t.filter((t=>!e.some((e=>t.datasetIndex===e.datasetIndex&&t.index===e.index)))),o=n(e,t),a=i?t:n(t,e);o.length&&this.updateHoverStyle(o,s.mode,!1),a.length&&s.mode&&this.updateHoverStyle(a,s.mode,!0)}_eventHandler(t,e){const i={event:t,replay:e,cancelable:!0,inChartArea:this.isPointInArea(t)},s=e=>(e.options.events||this.options.events).includes(t.native.type);if(!1===this.notifyPlugins("beforeEvent",i,s))return;const n=this._handleEvent(t,e,i.inChartArea);return i.cancelable=!1,this.notifyPlugins("afterEvent",i,s),(n||i.changed)&&this.render(),this}_handleEvent(t,e,i){const{_active:s=[],options:n}=this,o=e,a=this._getActiveElements(t,s,i,o),r=D(t),l=function(t,e,i,s){return i&&"mouseout"!==t.type?s?e:t:null}(t,this._lastEvent,i,r);i&&(this._lastEvent=null,d(n.onHover,[t,a,this],this),r&&d(n.onClick,[t,a,this],this));const h=!f(a,s);return(h||e)&&(this._active=a,this._updateHoverStyles(a,s,e)),this._lastEvent=l,h}_getActiveElements(t,e,i,s){if("mouseout"===t.type)return[];if(!i)return e;const n=this.options.hover;return this.getElementsAtEventForMode(t,n.mode,n,s)}}function Tn(){return u(An.instances,(t=>t._plugins.invalidate()))}function Ln(){throw new Error("This method is not implemented: Check that a complete date adapter is provided.")}class En{static override(t){Object.assign(En.prototype,t)}options;constructor(t){this.options=t||{}}init(){}formats(){return Ln()}parse(){return Ln()}format(){return Ln()}add(){return Ln()}diff(){return Ln()}startOf(){return Ln()}endOf(){return Ln()}}var Rn={_date:En};function In(t){const e=t.iScale,i=function(t,e){if(!t._cache.$bar){const i=t.getMatchingVisibleMetas(e);let s=[];for(let e=0,n=i.length;et-e)))}return t._cache.$bar}(e,t.type);let s,n,o,a,r=e._length;const l=()=>{32767!==o&&-32768!==o&&(k(a)&&(r=Math.min(r,Math.abs(o-a)||r)),a=o)};for(s=0,n=i.length;sMath.abs(r)&&(l=r,h=a),e[i.axis]=h,e._custom={barStart:l,barEnd:h,start:n,end:o,min:a,max:r}}(t,e,i,s):e[i.axis]=i.parse(t,s),e}function Fn(t,e,i,s){const n=t.iScale,o=t.vScale,a=n.getLabels(),r=n===o,l=[];let h,c,d,u;for(h=i,c=i+s;ht.x,i="left",s="right"):(e=t.base"spacing"!==t,_indexable:t=>"spacing"!==t&&!t.startsWith("borderDash")&&!t.startsWith("hoverBorderDash")};static overrides={aspectRatio:1,plugins:{legend:{labels:{generateLabels(t){const e=t.data;if(e.labels.length&&e.datasets.length){const{labels:{pointStyle:i,color:s}}=t.legend.options;return e.labels.map(((e,n)=>{const o=t.getDatasetMeta(0).controller.getStyle(n);return{text:e,fillStyle:o.backgroundColor,strokeStyle:o.borderColor,fontColor:s,lineWidth:o.borderWidth,pointStyle:i,hidden:!t.getDataVisibility(n),index:n}}))}return[]}},onClick(t,e,i){i.chart.toggleDataVisibility(e.index),i.chart.update()}}}};constructor(t,e){super(t,e),this.enableOptionSharing=!0,this.innerRadius=void 0,this.outerRadius=void 0,this.offsetX=void 0,this.offsetY=void 0}linkScales(){}parse(t,e){const i=this.getDataset().data,s=this._cachedMeta;if(!1===this._parsing)s._parsed=i;else{let n,a,r=t=>+i[t];if(o(i[t])){const{key:t="value"}=this._parsing;r=e=>+M(i[e],t)}for(n=t,a=t+e;nZ(t,r,l,!0)?1:Math.max(e,e*i,s,s*i),g=(t,e,s)=>Z(t,r,l,!0)?-1:Math.min(e,e*i,s,s*i),p=f(0,h,d),m=f(E,c,u),x=g(C,h,d),b=g(C+E,c,u);s=(p-x)/2,n=(m-b)/2,o=-(p+x)/2,a=-(m+b)/2}return{ratioX:s,ratioY:n,offsetX:o,offsetY:a}}(u,d,r),x=(i.width-o)/f,b=(i.height-o)/g,_=Math.max(Math.min(x,b)/2,0),y=c(this.options.radius,_),v=(y-Math.max(y*r,0))/this._getVisibleDatasetWeightTotal();this.offsetX=p*y,this.offsetY=m*y,s.total=this.calculateTotal(),this.outerRadius=y-v*this._getRingWeightOffset(this.index),this.innerRadius=Math.max(this.outerRadius-v*l,0),this.updateElements(n,0,n.length,t)}_circumference(t,e){const i=this.options,s=this._cachedMeta,n=this._getCircumference();return e&&i.animation.animateRotate||!this.chart.getDataVisibility(t)||null===s._parsed[t]||s.data[t].hidden?0:this.calculateCircumference(s._parsed[t]*n/O)}updateElements(t,e,i,s){const n="reset"===s,o=this.chart,a=o.chartArea,r=o.options.animation,l=(a.left+a.right)/2,h=(a.top+a.bottom)/2,c=n&&r.animateScale,d=c?0:this.innerRadius,u=c?0:this.outerRadius,{sharedOptions:f,includeOptions:g}=this._getSharedOptions(e,s);let p,m=this._getRotation();for(p=0;p0&&!isNaN(t)?O*(Math.abs(t)/e):0}getLabelAndValue(t){const e=this._cachedMeta,i=this.chart,s=i.data.labels||[],n=ne(e._parsed[t],i.options.locale);return{label:s[t]||"",value:n}}getMaxBorderWidth(t){let e=0;const i=this.chart;let s,n,o,a,r;if(!t)for(s=0,n=i.data.datasets.length;s{const o=t.getDatasetMeta(0).controller.getStyle(n);return{text:e,fillStyle:o.backgroundColor,strokeStyle:o.borderColor,fontColor:s,lineWidth:o.borderWidth,pointStyle:i,hidden:!t.getDataVisibility(n),index:n}}))}return[]}},onClick(t,e,i){i.chart.toggleDataVisibility(e.index),i.chart.update()}}},scales:{r:{type:"radialLinear",angleLines:{display:!1},beginAtZero:!0,grid:{circular:!0},pointLabels:{display:!1},startAngle:0}}};constructor(t,e){super(t,e),this.innerRadius=void 0,this.outerRadius=void 0}getLabelAndValue(t){const e=this._cachedMeta,i=this.chart,s=i.data.labels||[],n=ne(e._parsed[t].r,i.options.locale);return{label:s[t]||"",value:n}}parseObjectData(t,e,i,s){return ii.bind(this)(t,e,i,s)}update(t){const e=this._cachedMeta.data;this._updateRadius(),this.updateElements(e,0,e.length,t)}getMinMax(){const t=this._cachedMeta,e={min:Number.POSITIVE_INFINITY,max:Number.NEGATIVE_INFINITY};return t.data.forEach(((t,i)=>{const s=this.getParsed(i).r;!isNaN(s)&&this.chart.getDataVisibility(i)&&(se.max&&(e.max=s))})),e}_updateRadius(){const t=this.chart,e=t.chartArea,i=t.options,s=Math.min(e.right-e.left,e.bottom-e.top),n=Math.max(s/2,0),o=(n-Math.max(i.cutoutPercentage?n/100*i.cutoutPercentage:1,0))/t.getVisibleDatasetCount();this.outerRadius=n-o*this.index,this.innerRadius=this.outerRadius-o}updateElements(t,e,i,s){const n="reset"===s,o=this.chart,a=o.options.animation,r=this._cachedMeta.rScale,l=r.xCenter,h=r.yCenter,c=r.getIndexAngle(0)-.5*C;let d,u=c;const f=360/this.countVisibleElements();for(d=0;d{!isNaN(this.getParsed(i).r)&&this.chart.getDataVisibility(i)&&e++})),e}_computeAngle(t,e,i){return this.chart.getDataVisibility(t)?$(this.resolveDataElementOptions(t,e).angle||i):0}}var Yn=Object.freeze({__proto__:null,BarController:class extends Ns{static id="bar";static defaults={datasetElementType:!1,dataElementType:"bar",categoryPercentage:.8,barPercentage:.9,grouped:!0,animations:{numbers:{type:"number",properties:["x","y","base","width","height"]}}};static overrides={scales:{_index_:{type:"category",offset:!0,grid:{offset:!0}},_value_:{type:"linear",beginAtZero:!0}}};parsePrimitiveData(t,e,i,s){return Fn(t,e,i,s)}parseArrayData(t,e,i,s){return Fn(t,e,i,s)}parseObjectData(t,e,i,s){const{iScale:n,vScale:o}=t,{xAxisKey:a="x",yAxisKey:r="y"}=this._parsing,l="x"===n.axis?a:r,h="x"===o.axis?a:r,c=[];let d,u,f,g;for(d=i,u=i+s;dt.controller.options.grouped)),o=i.options.stacked,a=[],r=this._cachedMeta.controller.getParsed(e),l=r&&r[i.axis],h=t=>{const e=t._parsed.find((t=>t[i.axis]===l)),n=e&&e[t.vScale.axis];if(s(n)||isNaN(n))return!0};for(const i of n)if((void 0===e||!h(i))&&((!1===o||-1===a.indexOf(i.stack)||void 0===o&&void 0===i.stack)&&a.push(i.stack),i.index===t))break;return a.length||a.push(void 0),a}_getStackCount(t){return this._getStacks(void 0,t).length}_getStackIndex(t,e,i){const s=this._getStacks(t,i),n=void 0!==e?s.indexOf(e):-1;return-1===n?s.length-1:n}_getRuler(){const t=this.options,e=this._cachedMeta,i=e.iScale,s=[];let n,o;for(n=0,o=e.data.length;n=i?1:-1)}(u,e,r)*a,f===r&&(x-=u/2);const t=e.getPixelForDecimal(0),s=e.getPixelForDecimal(1),o=Math.min(t,s),h=Math.max(t,s);x=Math.max(Math.min(x,h),o),d=x+u,i&&!c&&(l._stacks[e.axis]._visualValues[n]=e.getValueForPixel(d)-e.getValueForPixel(x))}if(x===e.getPixelForValue(r)){const t=F(u)*e.getLineWidthForValue(r)/2;x+=t,u-=t}return{size:u,base:x,head:d,center:d+u/2}}_calculateBarIndexPixels(t,e){const i=e.scale,n=this.options,o=n.skipNull,a=l(n.maxBarThickness,1/0);let r,h;if(e.grouped){const i=o?this._getStackCount(t):e.stackCount,l="flex"===n.barThickness?function(t,e,i,s){const n=e.pixels,o=n[t];let a=t>0?n[t-1]:null,r=t=0;--i)e=Math.max(e,t[i].size(this.resolveDataElementOptions(i))/2);return e>0&&e}getLabelAndValue(t){const e=this._cachedMeta,i=this.chart.data.labels||[],{xScale:s,yScale:n}=e,o=this.getParsed(t),a=s.getLabelForValue(o.x),r=n.getLabelForValue(o.y),l=o._custom;return{label:i[t]||"",value:"("+a+", "+r+(l?", "+l:"")+")"}}update(t){const e=this._cachedMeta.data;this.updateElements(e,0,e.length,t)}updateElements(t,e,i,s){const n="reset"===s,{iScale:o,vScale:a}=this._cachedMeta,{sharedOptions:r,includeOptions:l}=this._getSharedOptions(e,s),h=o.axis,c=a.axis;for(let d=e;d0&&this.getParsed(e-1);for(let i=0;i<_;++i){const g=t[i],_=x?g:{};if(i=b){_.skip=!0;continue}const v=this.getParsed(i),M=s(v[f]),w=_[u]=a.getPixelForValue(v[u],i),k=_[f]=o||M?r.getBasePixel():r.getPixelForValue(l?this.applyStack(r,v,l):v[f],i);_.skip=isNaN(w)||isNaN(k)||M,_.stop=i>0&&Math.abs(v[u]-y[u])>m,p&&(_.parsed=v,_.raw=h.data[i]),d&&(_.options=c||this.resolveDataElementOptions(i,g.active?"active":n)),x||this.updateElement(g,i,_,n),y=v}}getMaxOverflow(){const t=this._cachedMeta,e=t.dataset,i=e.options&&e.options.borderWidth||0,s=t.data||[];if(!s.length)return i;const n=s[0].size(this.resolveDataElementOptions(0)),o=s[s.length-1].size(this.resolveDataElementOptions(s.length-1));return Math.max(i,n,o)/2}draw(){const t=this._cachedMeta;t.dataset.updateControlPoints(this.chart.chartArea,t.iScale.axis),super.draw()}},PieController:class extends jn{static id="pie";static defaults={cutout:0,rotation:0,circumference:360,radius:"100%"}},PolarAreaController:$n,RadarController:class extends Ns{static id="radar";static defaults={datasetElementType:"line",dataElementType:"point",indexAxis:"r",showLine:!0,elements:{line:{fill:"start"}}};static overrides={aspectRatio:1,scales:{r:{type:"radialLinear"}}};getLabelAndValue(t){const e=this._cachedMeta.vScale,i=this.getParsed(t);return{label:e.getLabels()[t],value:""+e.getLabelForValue(i[e.axis])}}parseObjectData(t,e,i,s){return ii.bind(this)(t,e,i,s)}update(t){const e=this._cachedMeta,i=e.dataset,s=e.data||[],n=e.iScale.getLabels();if(i.points=s,"resize"!==t){const e=this.resolveDatasetElementOptions(t);this.options.showLine||(e.borderWidth=0);const o={_loop:!0,_fullLoop:n.length===s.length,options:e};this.updateElement(i,void 0,o,t)}this.updateElements(s,0,s.length,t)}updateElements(t,e,i,s){const n=this._cachedMeta.rScale,o="reset"===s;for(let a=e;a0&&this.getParsed(e-1);for(let c=e;c0&&Math.abs(i[f]-_[f])>x,m&&(p.parsed=i,p.raw=h.data[c]),u&&(p.options=d||this.resolveDataElementOptions(c,e.active?"active":n)),b||this.updateElement(e,c,p,n),_=i}this.updateSharedOptions(d,n,c)}getMaxOverflow(){const t=this._cachedMeta,e=t.data||[];if(!this.options.showLine){let t=0;for(let i=e.length-1;i>=0;--i)t=Math.max(t,e[i].size(this.resolveDataElementOptions(i))/2);return t>0&&t}const i=t.dataset,s=i.options&&i.options.borderWidth||0;if(!e.length)return s;const n=e[0].size(this.resolveDataElementOptions(0)),o=e[e.length-1].size(this.resolveDataElementOptions(e.length-1));return Math.max(s,n,o)/2}}});function Un(t,e,i,s){const n=vi(t.options.borderRadius,["outerStart","outerEnd","innerStart","innerEnd"]);const o=(i-e)/2,a=Math.min(o,s*e/2),r=t=>{const e=(i-Math.min(o,t))*s/2;return J(t,0,Math.min(o,e))};return{outerStart:r(n.outerStart),outerEnd:r(n.outerEnd),innerStart:J(n.innerStart,0,a),innerEnd:J(n.innerEnd,0,a)}}function Xn(t,e,i,s){return{x:i+t*Math.cos(e),y:s+t*Math.sin(e)}}function qn(t,e,i,s,n,o){const{x:a,y:r,startAngle:l,pixelMargin:h,innerRadius:c}=e,d=Math.max(e.outerRadius+s+i-h,0),u=c>0?c+s+i+h:0;let f=0;const g=n-l;if(s){const t=((c>0?c-s:0)+(d>0?d-s:0))/2;f=(g-(0!==t?g*t/(t+s):g))/2}const p=(g-Math.max(.001,g*d-i/C)/d)/2,m=l+p+f,x=n-p-f,{outerStart:b,outerEnd:_,innerStart:y,innerEnd:v}=Un(e,u,d,x-m),M=d-b,w=d-_,k=m+b/M,S=x-_/w,P=u+y,D=u+v,O=m+y/P,A=x-v/D;if(t.beginPath(),o){const e=(k+S)/2;if(t.arc(a,r,d,k,e),t.arc(a,r,d,e,S),_>0){const e=Xn(w,S,a,r);t.arc(e.x,e.y,_,S,x+E)}const i=Xn(D,x,a,r);if(t.lineTo(i.x,i.y),v>0){const e=Xn(D,A,a,r);t.arc(e.x,e.y,v,x+E,A+Math.PI)}const s=(x-v/u+(m+y/u))/2;if(t.arc(a,r,u,x-v/u,s,!0),t.arc(a,r,u,s,m+y/u,!0),y>0){const e=Xn(P,O,a,r);t.arc(e.x,e.y,y,O+Math.PI,m-E)}const n=Xn(M,m,a,r);if(t.lineTo(n.x,n.y),b>0){const e=Xn(M,k,a,r);t.arc(e.x,e.y,b,m-E,k)}}else{t.moveTo(a,r);const e=Math.cos(k)*d+a,i=Math.sin(k)*d+r;t.lineTo(e,i);const s=Math.cos(S)*d+a,n=Math.sin(S)*d+r;t.lineTo(s,n)}t.closePath()}function Kn(t,e,i,s,n){const{fullCircles:o,startAngle:a,circumference:r,options:l}=e,{borderWidth:h,borderJoinStyle:c,borderDash:d,borderDashOffset:u}=l,f="inner"===l.borderAlign;if(!h)return;t.setLineDash(d||[]),t.lineDashOffset=u,f?(t.lineWidth=2*h,t.lineJoin=c||"round"):(t.lineWidth=h,t.lineJoin=c||"bevel");let g=e.endAngle;if(o){qn(t,e,i,s,g,n);for(let e=0;en?(h=n/l,t.arc(o,a,l,i+h,s-h,!0)):t.arc(o,a,n,i+E,s-E),t.closePath(),t.clip()}(t,e,g),o||(qn(t,e,i,s,g,n),t.stroke())}function Gn(t,e,i=e){t.lineCap=l(i.borderCapStyle,e.borderCapStyle),t.setLineDash(l(i.borderDash,e.borderDash)),t.lineDashOffset=l(i.borderDashOffset,e.borderDashOffset),t.lineJoin=l(i.borderJoinStyle,e.borderJoinStyle),t.lineWidth=l(i.borderWidth,e.borderWidth),t.strokeStyle=l(i.borderColor,e.borderColor)}function Zn(t,e,i){t.lineTo(i.x,i.y)}function Jn(t,e,i={}){const s=t.length,{start:n=0,end:o=s-1}=i,{start:a,end:r}=e,l=Math.max(n,a),h=Math.min(o,r),c=nr&&o>r;return{count:s,start:l,loop:e.loop,ilen:h(a+(h?r-t:t))%o,_=()=>{f!==g&&(t.lineTo(m,g),t.lineTo(m,f),t.lineTo(m,p))};for(l&&(d=n[b(0)],t.moveTo(d.x,d.y)),c=0;c<=r;++c){if(d=n[b(c)],d.skip)continue;const e=d.x,i=d.y,s=0|e;s===u?(ig&&(g=i),m=(x*m+e)/++x):(_(),t.lineTo(e,i),u=s,x=0,f=g=i),p=i}_()}function eo(t){const e=t.options,i=e.borderDash&&e.borderDash.length;return!(t._decimated||t._loop||e.tension||"monotone"===e.cubicInterpolationMode||e.stepped||i)?to:Qn}const io="function"==typeof Path2D;function so(t,e,i,s){io&&!e.options.segment?function(t,e,i,s){let n=e._path;n||(n=e._path=new Path2D,e.path(n,i,s)&&n.closePath()),Gn(t,e.options),t.stroke(n)}(t,e,i,s):function(t,e,i,s){const{segments:n,options:o}=e,a=eo(e);for(const r of n)Gn(t,o,r.style),t.beginPath(),a(t,e,r,{start:i,end:i+s-1})&&t.closePath(),t.stroke()}(t,e,i,s)}class no extends Hs{static id="line";static defaults={borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",borderWidth:3,capBezierPoints:!0,cubicInterpolationMode:"default",fill:!1,spanGaps:!1,stepped:!1,tension:0};static defaultRoutes={backgroundColor:"backgroundColor",borderColor:"borderColor"};static descriptors={_scriptable:!0,_indexable:t=>"borderDash"!==t&&"fill"!==t};constructor(t){super(),this.animated=!0,this.options=void 0,this._chart=void 0,this._loop=void 0,this._fullLoop=void 0,this._path=void 0,this._points=void 0,this._segments=void 0,this._decimated=!1,this._pointsUpdated=!1,this._datasetIndex=void 0,t&&Object.assign(this,t)}updateControlPoints(t,e){const i=this.options;if((i.tension||"monotone"===i.cubicInterpolationMode)&&!i.stepped&&!this._pointsUpdated){const s=i.spanGaps?this._loop:this._fullLoop;hi(this._points,i,t,s,e),this._pointsUpdated=!0}}set points(t){this._points=t,delete this._segments,delete this._path,this._pointsUpdated=!1}get points(){return this._points}get segments(){return this._segments||(this._segments=zi(this,this.options.segment))}first(){const t=this.segments,e=this.points;return t.length&&e[t[0].start]}last(){const t=this.segments,e=this.points,i=t.length;return i&&e[t[i-1].end]}interpolate(t,e){const i=this.options,s=t[e],n=this.points,o=Ii(this,{property:e,start:s,end:s});if(!o.length)return;const a=[],r=function(t){return t.stepped?pi:t.tension||"monotone"===t.cubicInterpolationMode?mi:gi}(i);let l,h;for(l=0,h=o.length;l"borderDash"!==t};circumference;endAngle;fullCircles;innerRadius;outerRadius;pixelMargin;startAngle;constructor(t){super(),this.options=void 0,this.circumference=void 0,this.startAngle=void 0,this.endAngle=void 0,this.innerRadius=void 0,this.outerRadius=void 0,this.pixelMargin=0,this.fullCircles=0,t&&Object.assign(this,t)}inRange(t,e,i){const s=this.getProps(["x","y"],i),{angle:n,distance:o}=X(s,{x:t,y:e}),{startAngle:a,endAngle:r,innerRadius:h,outerRadius:c,circumference:d}=this.getProps(["startAngle","endAngle","innerRadius","outerRadius","circumference"],i),u=(this.options.spacing+this.options.borderWidth)/2,f=l(d,r-a),g=Z(n,a,r)&&a!==r,p=f>=O||g,m=tt(o,h+u,c+u);return p&&m}getCenterPoint(t){const{x:e,y:i,startAngle:s,endAngle:n,innerRadius:o,outerRadius:a}=this.getProps(["x","y","startAngle","endAngle","innerRadius","outerRadius"],t),{offset:r,spacing:l}=this.options,h=(s+n)/2,c=(o+a+l+r)/2;return{x:e+Math.cos(h)*c,y:i+Math.sin(h)*c}}tooltipPosition(t){return this.getCenterPoint(t)}draw(t){const{options:e,circumference:i}=this,s=(e.offset||0)/4,n=(e.spacing||0)/2,o=e.circular;if(this.pixelMargin="inner"===e.borderAlign?.33:0,this.fullCircles=i>O?Math.floor(i/O):0,0===i||this.innerRadius<0||this.outerRadius<0)return;t.save();const a=(this.startAngle+this.endAngle)/2;t.translate(Math.cos(a)*s,Math.sin(a)*s);const r=s*(1-Math.sin(Math.min(C,i||0)));t.fillStyle=e.backgroundColor,t.strokeStyle=e.borderColor,function(t,e,i,s,n){const{fullCircles:o,startAngle:a,circumference:r}=e;let l=e.endAngle;if(o){qn(t,e,i,s,l,n);for(let e=0;e("string"==typeof e?(i=t.push(e)-1,s.unshift({index:i,label:e})):isNaN(e)&&(i=null),i))(t,e,i,s);return n!==t.lastIndexOf(e)?i:n}function po(t){const e=this.getLabels();return t>=0&&ts=e?s:t,a=t=>n=i?n:t;if(t){const t=F(s),e=F(n);t<0&&e<0?a(0):t>0&&e>0&&o(0)}if(s===n){let e=0===n?1:Math.abs(.05*n);a(n+e),t||o(s-e)}this.min=s,this.max=n}getTickLimit(){const t=this.options.ticks;let e,{maxTicksLimit:i,stepSize:s}=t;return s?(e=Math.ceil(this.max/s)-Math.floor(this.min/s)+1,e>1e3&&(console.warn(`scales.${this.id}.ticks.stepSize: ${s} would result generating up to ${e} ticks. Limiting to 1000.`),e=1e3)):(e=this.computeTickLimit(),i=i||11),i&&(e=Math.min(i,e)),e}computeTickLimit(){return Number.POSITIVE_INFINITY}buildTicks(){const t=this.options,e=t.ticks;let i=this.getTickLimit();i=Math.max(2,i);const n=function(t,e){const i=[],{bounds:n,step:o,min:a,max:r,precision:l,count:h,maxTicks:c,maxDigits:d,includeBounds:u}=t,f=o||1,g=c-1,{min:p,max:m}=e,x=!s(a),b=!s(r),_=!s(h),y=(m-p)/(d+1);let v,M,w,k,S=B((m-p)/g/f)*f;if(S<1e-14&&!x&&!b)return[{value:p},{value:m}];k=Math.ceil(m/S)-Math.floor(p/S),k>g&&(S=B(k*S/g/f)*f),s(l)||(v=Math.pow(10,l),S=Math.ceil(S*v)/v),"ticks"===n?(M=Math.floor(p/S)*S,w=Math.ceil(m/S)*S):(M=p,w=m),x&&b&&o&&H((r-a)/o,S/1e3)?(k=Math.round(Math.min((r-a)/S,c)),S=(r-a)/k,M=a,w=r):_?(M=x?a:M,w=b?r:w,k=h-1,S=(w-M)/k):(k=(w-M)/S,k=V(k,Math.round(k),S/1e3)?Math.round(k):Math.ceil(k));const P=Math.max(U(S),U(M));v=Math.pow(10,s(l)?P:l),M=Math.round(M*v)/v,w=Math.round(w*v)/v;let D=0;for(x&&(u&&M!==a?(i.push({value:a}),Mr)break;i.push({value:t})}return b&&u&&w!==r?i.length&&V(i[i.length-1].value,r,mo(r,y,t))?i[i.length-1].value=r:i.push({value:r}):b&&w!==r||i.push({value:w}),i}({maxTicks:i,bounds:t.bounds,min:t.min,max:t.max,precision:e.precision,step:e.stepSize,count:e.count,maxDigits:this._maxDigits(),horizontal:this.isHorizontal(),minRotation:e.minRotation||0,includeBounds:!1!==e.includeBounds},this._range||this);return"ticks"===t.bounds&&j(n,this,"value"),t.reverse?(n.reverse(),this.start=this.max,this.end=this.min):(this.start=this.min,this.end=this.max),n}configure(){const t=this.ticks;let e=this.min,i=this.max;if(super.configure(),this.options.offset&&t.length){const s=(i-e)/Math.max(t.length-1,1)/2;e-=s,i+=s}this._startValue=e,this._endValue=i,this._valueRange=i-e}getLabelForValue(t){return ne(t,this.chart.options.locale,this.options.ticks.format)}}class bo extends xo{static id="linear";static defaults={ticks:{callback:ae.formatters.numeric}};determineDataLimits(){const{min:t,max:e}=this.getMinMax(!0);this.min=a(t)?t:0,this.max=a(e)?e:1,this.handleTickRangeOptions()}computeTickLimit(){const t=this.isHorizontal(),e=t?this.width:this.height,i=$(this.options.ticks.minRotation),s=(t?Math.sin(i):Math.cos(i))||.001,n=this._resolveTickFontOptions(0);return Math.ceil(e/Math.min(40,n.lineHeight/s))}getPixelForValue(t){return null===t?NaN:this.getPixelForDecimal((t-this._startValue)/this._valueRange)}getValueForPixel(t){return this._startValue+this.getDecimalForPixel(t)*this._valueRange}}const _o=t=>Math.floor(z(t)),yo=(t,e)=>Math.pow(10,_o(t)+e);function vo(t){return 1===t/Math.pow(10,_o(t))}function Mo(t,e,i){const s=Math.pow(10,i),n=Math.floor(t/s);return Math.ceil(e/s)-n}function wo(t,{min:e,max:i}){e=r(t.min,e);const s=[],n=_o(e);let o=function(t,e){let i=_o(e-t);for(;Mo(t,e,i)>10;)i++;for(;Mo(t,e,i)<10;)i--;return Math.min(i,_o(t))}(e,i),a=o<0?Math.pow(10,Math.abs(o)):1;const l=Math.pow(10,o),h=n>o?Math.pow(10,n):0,c=Math.round((e-h)*a)/a,d=Math.floor((e-h)/l/10)*l*10;let u=Math.floor((c-d)/Math.pow(10,o)),f=r(t.min,Math.round((h+d+u*Math.pow(10,o))*a)/a);for(;f=10?u=u<15?15:20:u++,u>=20&&(o++,u=2,a=o>=0?1:a),f=Math.round((h+d+u*Math.pow(10,o))*a)/a;const g=r(t.max,f);return s.push({value:g,major:vo(g),significand:u}),s}class ko extends Js{static id="logarithmic";static defaults={ticks:{callback:ae.formatters.logarithmic,major:{enabled:!0}}};constructor(t){super(t),this.start=void 0,this.end=void 0,this._startValue=void 0,this._valueRange=0}parse(t,e){const i=xo.prototype.parse.apply(this,[t,e]);if(0!==i)return a(i)&&i>0?i:null;this._zero=!0}determineDataLimits(){const{min:t,max:e}=this.getMinMax(!0);this.min=a(t)?Math.max(0,t):null,this.max=a(e)?Math.max(0,e):null,this.options.beginAtZero&&(this._zero=!0),this._zero&&this.min!==this._suggestedMin&&!a(this._userMin)&&(this.min=t===yo(this.min,0)?yo(this.min,-1):yo(this.min,0)),this.handleTickRangeOptions()}handleTickRangeOptions(){const{minDefined:t,maxDefined:e}=this.getUserBounds();let i=this.min,s=this.max;const n=e=>i=t?i:e,o=t=>s=e?s:t;i===s&&(i<=0?(n(1),o(10)):(n(yo(i,-1)),o(yo(s,1)))),i<=0&&n(yo(s,-1)),s<=0&&o(yo(i,1)),this.min=i,this.max=s}buildTicks(){const t=this.options,e=wo({min:this._userMin,max:this._userMax},this);return"ticks"===t.bounds&&j(e,this,"value"),t.reverse?(e.reverse(),this.start=this.max,this.end=this.min):(this.start=this.min,this.end=this.max),e}getLabelForValue(t){return void 0===t?"0":ne(t,this.chart.options.locale,this.options.ticks.format)}configure(){const t=this.min;super.configure(),this._startValue=z(t),this._valueRange=z(this.max)-z(t)}getPixelForValue(t){return void 0!==t&&0!==t||(t=this.min),null===t||isNaN(t)?NaN:this.getPixelForDecimal(t===this.min?0:(z(t)-this._startValue)/this._valueRange)}getValueForPixel(t){const e=this.getDecimalForPixel(t);return Math.pow(10,this._startValue+e*this._valueRange)}}function So(t){const e=t.ticks;if(e.display&&t.display){const t=ki(e.backdropPadding);return l(e.font&&e.font.size,ue.font.size)+t.height}return 0}function Po(t,e,i,s,n){return t===s||t===n?{start:e-i/2,end:e+i/2}:tn?{start:e-i,end:e}:{start:e,end:e+i}}function Do(t){const e={l:t.left+t._padding.left,r:t.right-t._padding.right,t:t.top+t._padding.top,b:t.bottom-t._padding.bottom},i=Object.assign({},e),s=[],o=[],a=t._pointLabels.length,r=t.options.pointLabels,l=r.centerPointLabels?C/a:0;for(let u=0;ue.r&&(r=(s.end-e.r)/o,t.r=Math.max(t.r,e.r+r)),n.starte.b&&(l=(n.end-e.b)/a,t.b=Math.max(t.b,e.b+l))}function Oo(t,e,i){const s=t.drawingArea,{extra:n,additionalAngle:o,padding:a,size:r}=i,l=t.getPointPosition(e,s+n+a,o),h=Math.round(Y(G(l.angle+E))),c=function(t,e,i){90===i||270===i?t-=e/2:(i>270||i<90)&&(t-=e);return t}(l.y,r.h,h),d=function(t){if(0===t||180===t)return"center";if(t<180)return"left";return"right"}(h),u=function(t,e,i){"right"===i?t-=e:"center"===i&&(t-=e/2);return t}(l.x,r.w,d);return{visible:!0,x:l.x,y:c,textAlign:d,left:u,top:c,right:u+r.w,bottom:c+r.h}}function Ao(t,e){if(!e)return!0;const{left:i,top:s,right:n,bottom:o}=t;return!(Re({x:i,y:s},e)||Re({x:i,y:o},e)||Re({x:n,y:s},e)||Re({x:n,y:o},e))}function To(t,e,i){const{left:n,top:o,right:a,bottom:r}=i,{backdropColor:l}=e;if(!s(l)){const i=wi(e.borderRadius),s=ki(e.backdropPadding);t.fillStyle=l;const h=n-s.left,c=o-s.top,d=a-n+s.width,u=r-o+s.height;Object.values(i).some((t=>0!==t))?(t.beginPath(),He(t,{x:h,y:c,w:d,h:u,radius:i}),t.fill()):t.fillRect(h,c,d,u)}}function Lo(t,e,i,s){const{ctx:n}=t;if(i)n.arc(t.xCenter,t.yCenter,e,0,O);else{let i=t.getPointPosition(0,e);n.moveTo(i.x,i.y);for(let o=1;ot,padding:5,centerPointLabels:!1}};static defaultRoutes={"angleLines.color":"borderColor","pointLabels.color":"color","ticks.color":"color"};static descriptors={angleLines:{_fallback:"grid"}};constructor(t){super(t),this.xCenter=void 0,this.yCenter=void 0,this.drawingArea=void 0,this._pointLabels=[],this._pointLabelItems=[]}setDimensions(){const t=this._padding=ki(So(this.options)/2),e=this.width=this.maxWidth-t.width,i=this.height=this.maxHeight-t.height;this.xCenter=Math.floor(this.left+e/2+t.left),this.yCenter=Math.floor(this.top+i/2+t.top),this.drawingArea=Math.floor(Math.min(e,i)/2)}determineDataLimits(){const{min:t,max:e}=this.getMinMax(!1);this.min=a(t)&&!isNaN(t)?t:0,this.max=a(e)&&!isNaN(e)?e:0,this.handleTickRangeOptions()}computeTickLimit(){return Math.ceil(this.drawingArea/So(this.options))}generateTickLabels(t){xo.prototype.generateTickLabels.call(this,t),this._pointLabels=this.getLabels().map(((t,e)=>{const i=d(this.options.pointLabels.callback,[t,e],this);return i||0===i?i:""})).filter(((t,e)=>this.chart.getDataVisibility(e)))}fit(){const t=this.options;t.display&&t.pointLabels.display?Do(this):this.setCenterPoint(0,0,0,0)}setCenterPoint(t,e,i,s){this.xCenter+=Math.floor((t-e)/2),this.yCenter+=Math.floor((i-s)/2),this.drawingArea-=Math.min(this.drawingArea/2,Math.max(t,e,i,s))}getIndexAngle(t){return G(t*(O/(this._pointLabels.length||1))+$(this.options.startAngle||0))}getDistanceFromCenterForValue(t){if(s(t))return NaN;const e=this.drawingArea/(this.max-this.min);return this.options.reverse?(this.max-t)*e:(t-this.min)*e}getValueForDistanceFromCenter(t){if(s(t))return NaN;const e=t/(this.drawingArea/(this.max-this.min));return this.options.reverse?this.max-e:this.min+e}getPointLabelContext(t){const e=this._pointLabels||[];if(t>=0&&t=0;n--){const e=t._pointLabelItems[n];if(!e.visible)continue;const o=s.setContext(t.getPointLabelContext(n));To(i,o,e);const a=Si(o.font),{x:r,y:l,textAlign:h}=e;Ne(i,t._pointLabels[n],r,l+a.lineHeight/2,a,{color:o.color,textAlign:h,textBaseline:"middle"})}}(this,o),s.display&&this.ticks.forEach(((t,e)=>{if(0!==e||0===e&&this.min<0){r=this.getDistanceFromCenterForValue(t.value);const i=this.getContext(e),a=s.setContext(i),l=n.setContext(i);!function(t,e,i,s,n){const o=t.ctx,a=e.circular,{color:r,lineWidth:l}=e;!a&&!s||!r||!l||i<0||(o.save(),o.strokeStyle=r,o.lineWidth=l,o.setLineDash(n.dash),o.lineDashOffset=n.dashOffset,o.beginPath(),Lo(t,i,a,s),o.closePath(),o.stroke(),o.restore())}(this,a,r,o,l)}})),i.display){for(t.save(),a=o-1;a>=0;a--){const s=i.setContext(this.getPointLabelContext(a)),{color:n,lineWidth:o}=s;o&&n&&(t.lineWidth=o,t.strokeStyle=n,t.setLineDash(s.borderDash),t.lineDashOffset=s.borderDashOffset,r=this.getDistanceFromCenterForValue(e.reverse?this.min:this.max),l=this.getPointPosition(a,r),t.beginPath(),t.moveTo(this.xCenter,this.yCenter),t.lineTo(l.x,l.y),t.stroke())}t.restore()}}drawBorder(){}drawLabels(){const t=this.ctx,e=this.options,i=e.ticks;if(!i.display)return;const s=this.getIndexAngle(0);let n,o;t.save(),t.translate(this.xCenter,this.yCenter),t.rotate(s),t.textAlign="center",t.textBaseline="middle",this.ticks.forEach(((s,a)=>{if(0===a&&this.min>=0&&!e.reverse)return;const r=i.setContext(this.getContext(a)),l=Si(r.font);if(n=this.getDistanceFromCenterForValue(this.ticks[a].value),r.showLabelBackdrop){t.font=l.string,o=t.measureText(s.label).width,t.fillStyle=r.backdropColor;const e=ki(r.backdropPadding);t.fillRect(-o/2-e.left,-n-l.size/2-e.top,o+e.width,l.size+e.height)}Ne(t,s.label,0,-n,l,{color:r.color,strokeColor:r.textStrokeColor,strokeWidth:r.textStrokeWidth})})),t.restore()}drawTitle(){}}const Ro={millisecond:{common:!0,size:1,steps:1e3},second:{common:!0,size:1e3,steps:60},minute:{common:!0,size:6e4,steps:60},hour:{common:!0,size:36e5,steps:24},day:{common:!0,size:864e5,steps:30},week:{common:!1,size:6048e5,steps:4},month:{common:!0,size:2628e6,steps:12},quarter:{common:!1,size:7884e6,steps:4},year:{common:!0,size:3154e7}},Io=Object.keys(Ro);function zo(t,e){return t-e}function Fo(t,e){if(s(e))return null;const i=t._adapter,{parser:n,round:o,isoWeekday:r}=t._parseOpts;let l=e;return"function"==typeof n&&(l=n(l)),a(l)||(l="string"==typeof n?i.parse(l,n):i.parse(l)),null===l?null:(o&&(l="week"!==o||!N(r)&&!0!==r?i.startOf(l,o):i.startOf(l,"isoWeek",r)),+l)}function Vo(t,e,i,s){const n=Io.length;for(let o=Io.indexOf(t);o=e?i[s]:i[n]]=!0}}else t[e]=!0}function Wo(t,e,i){const s=[],n={},o=e.length;let a,r;for(a=0;a=0&&(e[l].major=!0);return e}(t,s,n,i):s}class No extends Js{static id="time";static defaults={bounds:"data",adapters:{},time:{parser:!1,unit:!1,round:!1,isoWeekday:!1,minUnit:"millisecond",displayFormats:{}},ticks:{source:"auto",callback:!1,major:{enabled:!1}}};constructor(t){super(t),this._cache={data:[],labels:[],all:[]},this._unit="day",this._majorUnit=void 0,this._offsets={},this._normalized=!1,this._parseOpts=void 0}init(t,e={}){const i=t.time||(t.time={}),s=this._adapter=new Rn._date(t.adapters.date);s.init(e),b(i.displayFormats,s.formats()),this._parseOpts={parser:i.parser,round:i.round,isoWeekday:i.isoWeekday},super.init(t),this._normalized=e.normalized}parse(t,e){return void 0===t?null:Fo(this,t)}beforeLayout(){super.beforeLayout(),this._cache={data:[],labels:[],all:[]}}determineDataLimits(){const t=this.options,e=this._adapter,i=t.time.unit||"day";let{min:s,max:n,minDefined:o,maxDefined:r}=this.getUserBounds();function l(t){o||isNaN(t.min)||(s=Math.min(s,t.min)),r||isNaN(t.max)||(n=Math.max(n,t.max))}o&&r||(l(this._getLabelBounds()),"ticks"===t.bounds&&"labels"===t.ticks.source||l(this.getMinMax(!1))),s=a(s)&&!isNaN(s)?s:+e.startOf(Date.now(),i),n=a(n)&&!isNaN(n)?n:+e.endOf(Date.now(),i)+1,this.min=Math.min(s,n-1),this.max=Math.max(s+1,n)}_getLabelBounds(){const t=this.getLabelTimestamps();let e=Number.POSITIVE_INFINITY,i=Number.NEGATIVE_INFINITY;return t.length&&(e=t[0],i=t[t.length-1]),{min:e,max:i}}buildTicks(){const t=this.options,e=t.time,i=t.ticks,s="labels"===i.source?this.getLabelTimestamps():this._generate();"ticks"===t.bounds&&s.length&&(this.min=this._userMin||s[0],this.max=this._userMax||s[s.length-1]);const n=this.min,o=nt(s,n,this.max);return this._unit=e.unit||(i.autoSkip?Vo(e.minUnit,this.min,this.max,this._getLabelCapacity(n)):function(t,e,i,s,n){for(let o=Io.length-1;o>=Io.indexOf(i);o--){const i=Io[o];if(Ro[i].common&&t._adapter.diff(n,s,i)>=e-1)return i}return Io[i?Io.indexOf(i):0]}(this,o.length,e.minUnit,this.min,this.max)),this._majorUnit=i.major.enabled&&"year"!==this._unit?function(t){for(let e=Io.indexOf(t)+1,i=Io.length;e+t.value)))}initOffsets(t=[]){let e,i,s=0,n=0;this.options.offset&&t.length&&(e=this.getDecimalForValue(t[0]),s=1===t.length?1-e:(this.getDecimalForValue(t[1])-e)/2,i=this.getDecimalForValue(t[t.length-1]),n=1===t.length?i:(i-this.getDecimalForValue(t[t.length-2]))/2);const o=t.length<3?.5:.25;s=J(s,0,o),n=J(n,0,o),this._offsets={start:s,end:n,factor:1/(s+1+n)}}_generate(){const t=this._adapter,e=this.min,i=this.max,s=this.options,n=s.time,o=n.unit||Vo(n.minUnit,e,i,this._getLabelCapacity(e)),a=l(s.ticks.stepSize,1),r="week"===o&&n.isoWeekday,h=N(r)||!0===r,c={};let d,u,f=e;if(h&&(f=+t.startOf(f,"isoWeek",r)),f=+t.startOf(f,h?"day":o),t.diff(i,e,o)>1e5*a)throw new Error(e+" and "+i+" are too far apart with stepSize of "+a+" "+o);const g="data"===s.ticks.source&&this.getDataTimestamps();for(d=f,u=0;d+t))}getLabelForValue(t){const e=this._adapter,i=this.options.time;return i.tooltipFormat?e.format(t,i.tooltipFormat):e.format(t,i.displayFormats.datetime)}format(t,e){const i=this.options.time.displayFormats,s=this._unit,n=e||i[s];return this._adapter.format(t,n)}_tickFormatFunction(t,e,i,s){const n=this.options,o=n.ticks.callback;if(o)return d(o,[t,e,i],this);const a=n.time.displayFormats,r=this._unit,l=this._majorUnit,h=r&&a[r],c=l&&a[l],u=i[e],f=l&&c&&u&&u.major;return this._adapter.format(t,s||(f?c:h))}generateTickLabels(t){let e,i,s;for(e=0,i=t.length;e0?a:1}getDataTimestamps(){let t,e,i=this._cache.data||[];if(i.length)return i;const s=this.getMatchingVisibleMetas();if(this._normalized&&s.length)return this._cache.data=s[0].controller.getAllParsedValues(this);for(t=0,e=s.length;t=t[r].pos&&e<=t[l].pos&&({lo:r,hi:l}=it(t,"pos",e)),({pos:s,time:o}=t[r]),({pos:n,time:a}=t[l])):(e>=t[r].time&&e<=t[l].time&&({lo:r,hi:l}=it(t,"time",e)),({time:s,pos:o}=t[r]),({time:n,pos:a}=t[l]));const h=n-s;return h?o+(a-o)*(e-s)/h:o}var jo=Object.freeze({__proto__:null,CategoryScale:class extends Js{static id="category";static defaults={ticks:{callback:po}};constructor(t){super(t),this._startValue=void 0,this._valueRange=0,this._addedLabels=[]}init(t){const e=this._addedLabels;if(e.length){const t=this.getLabels();for(const{index:i,label:s}of e)t[i]===s&&t.splice(i,1);this._addedLabels=[]}super.init(t)}parse(t,e){if(s(t))return null;const i=this.getLabels();return((t,e)=>null===t?null:J(Math.round(t),0,e))(e=isFinite(e)&&i[e]===t?e:go(i,t,l(e,t),this._addedLabels),i.length-1)}determineDataLimits(){const{minDefined:t,maxDefined:e}=this.getUserBounds();let{min:i,max:s}=this.getMinMax(!0);"ticks"===this.options.bounds&&(t||(i=0),e||(s=this.getLabels().length-1)),this.min=i,this.max=s}buildTicks(){const t=this.min,e=this.max,i=this.options.offset,s=[];let n=this.getLabels();n=0===t&&e===n.length-1?n:n.slice(t,e+1),this._valueRange=Math.max(n.length-(i?0:1),1),this._startValue=this.min-(i?.5:0);for(let i=t;i<=e;i++)s.push({value:i});return s}getLabelForValue(t){return po.call(this,t)}configure(){super.configure(),this.isHorizontal()||(this._reversePixels=!this._reversePixels)}getPixelForValue(t){return"number"!=typeof t&&(t=this.parse(t)),null===t?NaN:this.getPixelForDecimal((t-this._startValue)/this._valueRange)}getPixelForTick(t){const e=this.ticks;return t<0||t>e.length-1?null:this.getPixelForValue(e[t].value)}getValueForPixel(t){return Math.round(this._startValue+this.getDecimalForPixel(t)*this._valueRange)}getBasePixel(){return this.bottom}},LinearScale:bo,LogarithmicScale:ko,RadialLinearScale:Eo,TimeScale:No,TimeSeriesScale:class extends No{static id="timeseries";static defaults=No.defaults;constructor(t){super(t),this._table=[],this._minPos=void 0,this._tableRange=void 0}initOffsets(){const t=this._getTimestampsForTable(),e=this._table=this.buildLookupTable(t);this._minPos=Ho(e,this.min),this._tableRange=Ho(e,this.max)-this._minPos,super.initOffsets(t)}buildLookupTable(t){const{min:e,max:i}=this,s=[],n=[];let o,a,r,l,h;for(o=0,a=t.length;o=e&&l<=i&&s.push(l);if(s.length<2)return[{time:e,pos:0},{time:i,pos:1}];for(o=0,a=s.length;ot-e))}_getTimestampsForTable(){let t=this._cache.all||[];if(t.length)return t;const e=this.getDataTimestamps(),i=this.getLabelTimestamps();return t=e.length&&i.length?this.normalize(e.concat(i)):e.length?e:i,t=this._cache.all=t,t}getDecimalForValue(t){return(Ho(this._table,t)-this._minPos)/this._tableRange}getValueForPixel(t){const e=this._offsets,i=this.getDecimalForPixel(t)/e.factor-e.end;return Ho(this._table,i*this._tableRange+this._minPos,!0)}}});const $o=["rgb(54, 162, 235)","rgb(255, 99, 132)","rgb(255, 159, 64)","rgb(255, 205, 86)","rgb(75, 192, 192)","rgb(153, 102, 255)","rgb(201, 203, 207)"],Yo=$o.map((t=>t.replace("rgb(","rgba(").replace(")",", 0.5)")));function Uo(t){return $o[t%$o.length]}function Xo(t){return Yo[t%Yo.length]}function qo(t){let e=0;return(i,s)=>{const n=t.getDatasetMeta(s).controller;n instanceof jn?e=function(t,e){return t.backgroundColor=t.data.map((()=>Uo(e++))),e}(i,e):n instanceof $n?e=function(t,e){return t.backgroundColor=t.data.map((()=>Xo(e++))),e}(i,e):n&&(e=function(t,e){return t.borderColor=Uo(e),t.backgroundColor=Xo(e),++e}(i,e))}}function Ko(t){let e;for(e in t)if(t[e].borderColor||t[e].backgroundColor)return!0;return!1}var Go={id:"colors",defaults:{enabled:!0,forceOverride:!1},beforeLayout(t,e,i){if(!i.enabled)return;const{data:{datasets:s},options:n}=t.config,{elements:o}=n;if(!i.forceOverride&&(Ko(s)||(a=n)&&(a.borderColor||a.backgroundColor)||o&&Ko(o)))return;var a;const r=qo(t);s.forEach(r)}};function Zo(t){if(t._decimated){const e=t._data;delete t._decimated,delete t._data,Object.defineProperty(t,"data",{configurable:!0,enumerable:!0,writable:!0,value:e})}}function Jo(t){t.data.datasets.forEach((t=>{Zo(t)}))}var Qo={id:"decimation",defaults:{algorithm:"min-max",enabled:!1},beforeElementsUpdate:(t,e,i)=>{if(!i.enabled)return void Jo(t);const n=t.width;t.data.datasets.forEach(((e,o)=>{const{_data:a,indexAxis:r}=e,l=t.getDatasetMeta(o),h=a||e.data;if("y"===Pi([r,t.options.indexAxis]))return;if(!l.controller.supportsDecimation)return;const c=t.scales[l.xAxisID];if("linear"!==c.type&&"time"!==c.type)return;if(t.options.parsing)return;let{start:d,count:u}=function(t,e){const i=e.length;let s,n=0;const{iScale:o}=t,{min:a,max:r,minDefined:l,maxDefined:h}=o.getUserBounds();return l&&(n=J(it(e,o.axis,a).lo,0,i-1)),s=h?J(it(e,o.axis,r).hi+1,n,i)-n:i-n,{start:n,count:s}}(l,h);if(u<=(i.threshold||4*n))return void Zo(e);let f;switch(s(a)&&(e._data=h,delete e.data,Object.defineProperty(e,"data",{configurable:!0,enumerable:!0,get:function(){return this._decimated},set:function(t){this._data=t}})),i.algorithm){case"lttb":f=function(t,e,i,s,n){const o=n.samples||s;if(o>=i)return t.slice(e,e+i);const a=[],r=(i-2)/(o-2);let l=0;const h=e+i-1;let c,d,u,f,g,p=e;for(a[l++]=t[p],c=0;cu&&(u=f,d=t[s],g=s);a[l++]=d,p=g}return a[l++]=t[h],a}(h,d,u,n,i);break;case"min-max":f=function(t,e,i,n){let o,a,r,l,h,c,d,u,f,g,p=0,m=0;const x=[],b=e+i-1,_=t[e].x,y=t[b].x-_;for(o=e;og&&(g=l,d=o),p=(m*p+a.x)/++m;else{const i=o-1;if(!s(c)&&!s(d)){const e=Math.min(c,d),s=Math.max(c,d);e!==u&&e!==i&&x.push({...t[e],x:p}),s!==u&&s!==i&&x.push({...t[s],x:p})}o>0&&i!==u&&x.push(t[i]),x.push(a),h=e,m=0,f=g=l,c=d=u=o}}return x}(h,d,u,n);break;default:throw new Error(`Unsupported decimation algorithm '${i.algorithm}'`)}e._decimated=f}))},destroy(t){Jo(t)}};function ta(t,e,i,s){if(s)return;let n=e[t],o=i[t];return"angle"===t&&(n=G(n),o=G(o)),{property:t,start:n,end:o}}function ea(t,e,i){for(;e>t;e--){const t=i[e];if(!isNaN(t.x)&&!isNaN(t.y))break}return e}function ia(t,e,i,s){return t&&e?s(t[i],e[i]):t?t[i]:e?e[i]:0}function sa(t,e){let i=[],s=!1;return n(t)?(s=!0,i=t):i=function(t,e){const{x:i=null,y:s=null}=t||{},n=e.points,o=[];return e.segments.forEach((({start:t,end:e})=>{e=ea(t,e,n);const a=n[t],r=n[e];null!==s?(o.push({x:a.x,y:s}),o.push({x:r.x,y:s})):null!==i&&(o.push({x:i,y:a.y}),o.push({x:i,y:r.y}))})),o}(t,e),i.length?new no({points:i,options:{tension:0},_loop:s,_fullLoop:s}):null}function na(t){return t&&!1!==t.fill}function oa(t,e,i){let s=t[e].fill;const n=[e];let o;if(!i)return s;for(;!1!==s&&-1===n.indexOf(s);){if(!a(s))return s;if(o=t[s],!o)return!1;if(o.visible)return s;n.push(s),s=o.fill}return!1}function aa(t,e,i){const s=function(t){const e=t.options,i=e.fill;let s=l(i&&i.target,i);void 0===s&&(s=!!e.backgroundColor);if(!1===s||null===s)return!1;if(!0===s)return"origin";return s}(t);if(o(s))return!isNaN(s.value)&&s;let n=parseFloat(s);return a(n)&&Math.floor(n)===n?function(t,e,i,s){"-"!==t&&"+"!==t||(i=e+i);if(i===e||i<0||i>=s)return!1;return i}(s[0],e,n,i):["origin","start","end","stack","shape"].indexOf(s)>=0&&s}function ra(t,e,i){const s=[];for(let n=0;n=0;--e){const i=n[e].$filler;i&&(i.line.updateControlPoints(o,i.axis),s&&i.fill&&da(t.ctx,i,o))}},beforeDatasetsDraw(t,e,i){if("beforeDatasetsDraw"!==i.drawTime)return;const s=t.getSortedVisibleDatasetMetas();for(let e=s.length-1;e>=0;--e){const i=s[e].$filler;na(i)&&da(t.ctx,i,t.chartArea)}},beforeDatasetDraw(t,e,i){const s=e.meta.$filler;na(s)&&"beforeDatasetDraw"===i.drawTime&&da(t.ctx,s,t.chartArea)},defaults:{propagate:!0,drawTime:"beforeDatasetDraw"}};const xa=(t,e)=>{let{boxHeight:i=e,boxWidth:s=e}=t;return t.usePointStyle&&(i=Math.min(i,e),s=t.pointStyleWidth||Math.min(s,e)),{boxWidth:s,boxHeight:i,itemHeight:Math.max(e,i)}};class ba extends Hs{constructor(t){super(),this._added=!1,this.legendHitBoxes=[],this._hoveredItem=null,this.doughnutMode=!1,this.chart=t.chart,this.options=t.options,this.ctx=t.ctx,this.legendItems=void 0,this.columnSizes=void 0,this.lineWidths=void 0,this.maxHeight=void 0,this.maxWidth=void 0,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.height=void 0,this.width=void 0,this._margins=void 0,this.position=void 0,this.weight=void 0,this.fullSize=void 0}update(t,e,i){this.maxWidth=t,this.maxHeight=e,this._margins=i,this.setDimensions(),this.buildLabels(),this.fit()}setDimensions(){this.isHorizontal()?(this.width=this.maxWidth,this.left=this._margins.left,this.right=this.width):(this.height=this.maxHeight,this.top=this._margins.top,this.bottom=this.height)}buildLabels(){const t=this.options.labels||{};let e=d(t.generateLabels,[this.chart],this)||[];t.filter&&(e=e.filter((e=>t.filter(e,this.chart.data)))),t.sort&&(e=e.sort(((e,i)=>t.sort(e,i,this.chart.data)))),this.options.reverse&&e.reverse(),this.legendItems=e}fit(){const{options:t,ctx:e}=this;if(!t.display)return void(this.width=this.height=0);const i=t.labels,s=Si(i.font),n=s.size,o=this._computeTitleHeight(),{boxWidth:a,itemHeight:r}=xa(i,n);let l,h;e.font=s.string,this.isHorizontal()?(l=this.maxWidth,h=this._fitRows(o,n,a,r)+10):(h=this.maxHeight,l=this._fitCols(o,s,a,r)+10),this.width=Math.min(l,t.maxWidth||this.maxWidth),this.height=Math.min(h,t.maxHeight||this.maxHeight)}_fitRows(t,e,i,s){const{ctx:n,maxWidth:o,options:{labels:{padding:a}}}=this,r=this.legendHitBoxes=[],l=this.lineWidths=[0],h=s+a;let c=t;n.textAlign="left",n.textBaseline="middle";let d=-1,u=-h;return this.legendItems.forEach(((t,f)=>{const g=i+e/2+n.measureText(t.text).width;(0===f||l[l.length-1]+g+2*a>o)&&(c+=h,l[l.length-(f>0?0:1)]=0,u+=h,d++),r[f]={left:0,top:u,row:d,width:g,height:s},l[l.length-1]+=g+a})),c}_fitCols(t,e,i,s){const{ctx:n,maxHeight:o,options:{labels:{padding:a}}}=this,r=this.legendHitBoxes=[],l=this.columnSizes=[],h=o-t;let c=a,d=0,u=0,f=0,g=0;return this.legendItems.forEach(((t,o)=>{const{itemWidth:p,itemHeight:m}=function(t,e,i,s,n){const o=function(t,e,i,s){let n=t.text;n&&"string"!=typeof n&&(n=n.reduce(((t,e)=>t.length>e.length?t:e)));return e+i.size/2+s.measureText(n).width}(s,t,e,i),a=function(t,e,i){let s=t;"string"!=typeof e.text&&(s=_a(e,i));return s}(n,s,e.lineHeight);return{itemWidth:o,itemHeight:a}}(i,e,n,t,s);o>0&&u+m+2*a>h&&(c+=d+a,l.push({width:d,height:u}),f+=d+a,g++,d=u=0),r[o]={left:f,top:u,col:g,width:p,height:m},d=Math.max(d,p),u+=m+a})),c+=d,l.push({width:d,height:u}),c}adjustHitBoxes(){if(!this.options.display)return;const t=this._computeTitleHeight(),{legendHitBoxes:e,options:{align:i,labels:{padding:s},rtl:n}}=this,o=Oi(n,this.left,this.width);if(this.isHorizontal()){let n=0,a=ft(i,this.left+s,this.right-this.lineWidths[n]);for(const r of e)n!==r.row&&(n=r.row,a=ft(i,this.left+s,this.right-this.lineWidths[n])),r.top+=this.top+t+s,r.left=o.leftForLtr(o.x(a),r.width),a+=r.width+s}else{let n=0,a=ft(i,this.top+t+s,this.bottom-this.columnSizes[n].height);for(const r of e)r.col!==n&&(n=r.col,a=ft(i,this.top+t+s,this.bottom-this.columnSizes[n].height)),r.top=a,r.left+=this.left+s,r.left=o.leftForLtr(o.x(r.left),r.width),a+=r.height+s}}isHorizontal(){return"top"===this.options.position||"bottom"===this.options.position}draw(){if(this.options.display){const t=this.ctx;Ie(t,this),this._draw(),ze(t)}}_draw(){const{options:t,columnSizes:e,lineWidths:i,ctx:s}=this,{align:n,labels:o}=t,a=ue.color,r=Oi(t.rtl,this.left,this.width),h=Si(o.font),{padding:c}=o,d=h.size,u=d/2;let f;this.drawTitle(),s.textAlign=r.textAlign("left"),s.textBaseline="middle",s.lineWidth=.5,s.font=h.string;const{boxWidth:g,boxHeight:p,itemHeight:m}=xa(o,d),x=this.isHorizontal(),b=this._computeTitleHeight();f=x?{x:ft(n,this.left+c,this.right-i[0]),y:this.top+c+b,line:0}:{x:this.left+c,y:ft(n,this.top+b+c,this.bottom-e[0].height),line:0},Ai(this.ctx,t.textDirection);const _=m+c;this.legendItems.forEach(((y,v)=>{s.strokeStyle=y.fontColor,s.fillStyle=y.fontColor;const M=s.measureText(y.text).width,w=r.textAlign(y.textAlign||(y.textAlign=o.textAlign)),k=g+u+M;let S=f.x,P=f.y;r.setWidth(this.width),x?v>0&&S+k+c>this.right&&(P=f.y+=_,f.line++,S=f.x=ft(n,this.left+c,this.right-i[f.line])):v>0&&P+_>this.bottom&&(S=f.x=S+e[f.line].width+c,f.line++,P=f.y=ft(n,this.top+b+c,this.bottom-e[f.line].height));if(function(t,e,i){if(isNaN(g)||g<=0||isNaN(p)||p<0)return;s.save();const n=l(i.lineWidth,1);if(s.fillStyle=l(i.fillStyle,a),s.lineCap=l(i.lineCap,"butt"),s.lineDashOffset=l(i.lineDashOffset,0),s.lineJoin=l(i.lineJoin,"miter"),s.lineWidth=n,s.strokeStyle=l(i.strokeStyle,a),s.setLineDash(l(i.lineDash,[])),o.usePointStyle){const a={radius:p*Math.SQRT2/2,pointStyle:i.pointStyle,rotation:i.rotation,borderWidth:n},l=r.xPlus(t,g/2);Ee(s,a,l,e+u,o.pointStyleWidth&&g)}else{const o=e+Math.max((d-p)/2,0),a=r.leftForLtr(t,g),l=wi(i.borderRadius);s.beginPath(),Object.values(l).some((t=>0!==t))?He(s,{x:a,y:o,w:g,h:p,radius:l}):s.rect(a,o,g,p),s.fill(),0!==n&&s.stroke()}s.restore()}(r.x(S),P,y),S=gt(w,S+g+u,x?S+k:this.right,t.rtl),function(t,e,i){Ne(s,i.text,t,e+m/2,h,{strikethrough:i.hidden,textAlign:r.textAlign(i.textAlign)})}(r.x(S),P,y),x)f.x+=k+c;else if("string"!=typeof y.text){const t=h.lineHeight;f.y+=_a(y,t)+c}else f.y+=_})),Ti(this.ctx,t.textDirection)}drawTitle(){const t=this.options,e=t.title,i=Si(e.font),s=ki(e.padding);if(!e.display)return;const n=Oi(t.rtl,this.left,this.width),o=this.ctx,a=e.position,r=i.size/2,l=s.top+r;let h,c=this.left,d=this.width;if(this.isHorizontal())d=Math.max(...this.lineWidths),h=this.top+l,c=ft(t.align,c,this.right-d);else{const e=this.columnSizes.reduce(((t,e)=>Math.max(t,e.height)),0);h=l+ft(t.align,this.top,this.bottom-e-t.labels.padding-this._computeTitleHeight())}const u=ft(a,c,c+d);o.textAlign=n.textAlign(ut(a)),o.textBaseline="middle",o.strokeStyle=e.color,o.fillStyle=e.color,o.font=i.string,Ne(o,e.text,u,h,i)}_computeTitleHeight(){const t=this.options.title,e=Si(t.font),i=ki(t.padding);return t.display?e.lineHeight+i.height:0}_getLegendItemAt(t,e){let i,s,n;if(tt(t,this.left,this.right)&&tt(e,this.top,this.bottom))for(n=this.legendHitBoxes,i=0;it.chart.options.color,boxWidth:40,padding:10,generateLabels(t){const e=t.data.datasets,{labels:{usePointStyle:i,pointStyle:s,textAlign:n,color:o,useBorderRadius:a,borderRadius:r}}=t.legend.options;return t._getSortedDatasetMetas().map((t=>{const l=t.controller.getStyle(i?0:void 0),h=ki(l.borderWidth);return{text:e[t.index].label,fillStyle:l.backgroundColor,fontColor:o,hidden:!t.visible,lineCap:l.borderCapStyle,lineDash:l.borderDash,lineDashOffset:l.borderDashOffset,lineJoin:l.borderJoinStyle,lineWidth:(h.width+h.height)/4,strokeStyle:l.borderColor,pointStyle:s||l.pointStyle,rotation:l.rotation,textAlign:n||l.textAlign,borderRadius:a&&(r||l.borderRadius),datasetIndex:t.index}}),this)}},title:{color:t=>t.chart.options.color,display:!1,position:"center",text:""}},descriptors:{_scriptable:t=>!t.startsWith("on"),labels:{_scriptable:t=>!["generateLabels","filter","sort"].includes(t)}}};class va extends Hs{constructor(t){super(),this.chart=t.chart,this.options=t.options,this.ctx=t.ctx,this._padding=void 0,this.top=void 0,this.bottom=void 0,this.left=void 0,this.right=void 0,this.width=void 0,this.height=void 0,this.position=void 0,this.weight=void 0,this.fullSize=void 0}update(t,e){const i=this.options;if(this.left=0,this.top=0,!i.display)return void(this.width=this.height=this.right=this.bottom=0);this.width=this.right=t,this.height=this.bottom=e;const s=n(i.text)?i.text.length:1;this._padding=ki(i.padding);const o=s*Si(i.font).lineHeight+this._padding.height;this.isHorizontal()?this.height=o:this.width=o}isHorizontal(){const t=this.options.position;return"top"===t||"bottom"===t}_drawArgs(t){const{top:e,left:i,bottom:s,right:n,options:o}=this,a=o.align;let r,l,h,c=0;return this.isHorizontal()?(l=ft(a,i,n),h=e+t,r=n-i):("left"===o.position?(l=i+t,h=ft(a,s,e),c=-.5*C):(l=n-t,h=ft(a,e,s),c=.5*C),r=s-e),{titleX:l,titleY:h,maxWidth:r,rotation:c}}draw(){const t=this.ctx,e=this.options;if(!e.display)return;const i=Si(e.font),s=i.lineHeight/2+this._padding.top,{titleX:n,titleY:o,maxWidth:a,rotation:r}=this._drawArgs(s);Ne(t,e.text,0,0,i,{color:e.color,maxWidth:a,rotation:r,textAlign:ut(e.align),textBaseline:"middle",translation:[n,o]})}}var Ma={id:"title",_element:va,start(t,e,i){!function(t,e){const i=new va({ctx:t.ctx,options:e,chart:t});as.configure(t,i,e),as.addBox(t,i),t.titleBlock=i}(t,i)},stop(t){const e=t.titleBlock;as.removeBox(t,e),delete t.titleBlock},beforeUpdate(t,e,i){const s=t.titleBlock;as.configure(t,s,i),s.options=i},defaults:{align:"center",display:!1,font:{weight:"bold"},fullSize:!0,padding:10,position:"top",text:"",weight:2e3},defaultRoutes:{color:"color"},descriptors:{_scriptable:!0,_indexable:!1}};const wa=new WeakMap;var ka={id:"subtitle",start(t,e,i){const s=new va({ctx:t.ctx,options:i,chart:t});as.configure(t,s,i),as.addBox(t,s),wa.set(t,s)},stop(t){as.removeBox(t,wa.get(t)),wa.delete(t)},beforeUpdate(t,e,i){const s=wa.get(t);as.configure(t,s,i),s.options=i},defaults:{align:"center",display:!1,font:{weight:"normal"},fullSize:!0,padding:0,position:"top",text:"",weight:1500},defaultRoutes:{color:"color"},descriptors:{_scriptable:!0,_indexable:!1}};const Sa={average(t){if(!t.length)return!1;let e,i,s=new Set,n=0,o=0;for(e=0,i=t.length;et+e))/s.size,y:n/o}},nearest(t,e){if(!t.length)return!1;let i,s,n,o=e.x,a=e.y,r=Number.POSITIVE_INFINITY;for(i=0,s=t.length;i-1?t.split("\n"):t}function Ca(t,e){const{element:i,datasetIndex:s,index:n}=e,o=t.getDatasetMeta(s).controller,{label:a,value:r}=o.getLabelAndValue(n);return{chart:t,label:a,parsed:o.getParsed(n),raw:t.data.datasets[s].data[n],formattedValue:r,dataset:o.getDataset(),dataIndex:n,datasetIndex:s,element:i}}function Oa(t,e){const i=t.chart.ctx,{body:s,footer:n,title:o}=t,{boxWidth:a,boxHeight:r}=e,l=Si(e.bodyFont),h=Si(e.titleFont),c=Si(e.footerFont),d=o.length,f=n.length,g=s.length,p=ki(e.padding);let m=p.height,x=0,b=s.reduce(((t,e)=>t+e.before.length+e.lines.length+e.after.length),0);if(b+=t.beforeBody.length+t.afterBody.length,d&&(m+=d*h.lineHeight+(d-1)*e.titleSpacing+e.titleMarginBottom),b){m+=g*(e.displayColors?Math.max(r,l.lineHeight):l.lineHeight)+(b-g)*l.lineHeight+(b-1)*e.bodySpacing}f&&(m+=e.footerMarginTop+f*c.lineHeight+(f-1)*e.footerSpacing);let _=0;const y=function(t){x=Math.max(x,i.measureText(t).width+_)};return i.save(),i.font=h.string,u(t.title,y),i.font=l.string,u(t.beforeBody.concat(t.afterBody),y),_=e.displayColors?a+2+e.boxPadding:0,u(s,(t=>{u(t.before,y),u(t.lines,y),u(t.after,y)})),_=0,i.font=c.string,u(t.footer,y),i.restore(),x+=p.width,{width:x,height:m}}function Aa(t,e,i,s){const{x:n,width:o}=i,{width:a,chartArea:{left:r,right:l}}=t;let h="center";return"center"===s?h=n<=(r+l)/2?"left":"right":n<=o/2?h="left":n>=a-o/2&&(h="right"),function(t,e,i,s){const{x:n,width:o}=s,a=i.caretSize+i.caretPadding;return"left"===t&&n+o+a>e.width||"right"===t&&n-o-a<0||void 0}(h,t,e,i)&&(h="center"),h}function Ta(t,e,i){const s=i.yAlign||e.yAlign||function(t,e){const{y:i,height:s}=e;return it.height-s/2?"bottom":"center"}(t,i);return{xAlign:i.xAlign||e.xAlign||Aa(t,e,i,s),yAlign:s}}function La(t,e,i,s){const{caretSize:n,caretPadding:o,cornerRadius:a}=t,{xAlign:r,yAlign:l}=i,h=n+o,{topLeft:c,topRight:d,bottomLeft:u,bottomRight:f}=wi(a);let g=function(t,e){let{x:i,width:s}=t;return"right"===e?i-=s:"center"===e&&(i-=s/2),i}(e,r);const p=function(t,e,i){let{y:s,height:n}=t;return"top"===e?s+=i:s-="bottom"===e?n+i:n/2,s}(e,l,h);return"center"===l?"left"===r?g+=h:"right"===r&&(g-=h):"left"===r?g-=Math.max(c,u)+n:"right"===r&&(g+=Math.max(d,f)+n),{x:J(g,0,s.width-e.width),y:J(p,0,s.height-e.height)}}function Ea(t,e,i){const s=ki(i.padding);return"center"===e?t.x+t.width/2:"right"===e?t.x+t.width-s.right:t.x+s.left}function Ra(t){return Pa([],Da(t))}function Ia(t,e){const i=e&&e.dataset&&e.dataset.tooltip&&e.dataset.tooltip.callbacks;return i?t.override(i):t}const za={beforeTitle:e,title(t){if(t.length>0){const e=t[0],i=e.chart.data.labels,s=i?i.length:0;if(this&&this.options&&"dataset"===this.options.mode)return e.dataset.label||"";if(e.label)return e.label;if(s>0&&e.dataIndex{const e={before:[],lines:[],after:[]},n=Ia(i,t);Pa(e.before,Da(Fa(n,"beforeLabel",this,t))),Pa(e.lines,Fa(n,"label",this,t)),Pa(e.after,Da(Fa(n,"afterLabel",this,t))),s.push(e)})),s}getAfterBody(t,e){return Ra(Fa(e.callbacks,"afterBody",this,t))}getFooter(t,e){const{callbacks:i}=e,s=Fa(i,"beforeFooter",this,t),n=Fa(i,"footer",this,t),o=Fa(i,"afterFooter",this,t);let a=[];return a=Pa(a,Da(s)),a=Pa(a,Da(n)),a=Pa(a,Da(o)),a}_createItems(t){const e=this._active,i=this.chart.data,s=[],n=[],o=[];let a,r,l=[];for(a=0,r=e.length;at.filter(e,s,n,i)))),t.itemSort&&(l=l.sort(((e,s)=>t.itemSort(e,s,i)))),u(l,(e=>{const i=Ia(t.callbacks,e);s.push(Fa(i,"labelColor",this,e)),n.push(Fa(i,"labelPointStyle",this,e)),o.push(Fa(i,"labelTextColor",this,e))})),this.labelColors=s,this.labelPointStyles=n,this.labelTextColors=o,this.dataPoints=l,l}update(t,e){const i=this.options.setContext(this.getContext()),s=this._active;let n,o=[];if(s.length){const t=Sa[i.position].call(this,s,this._eventPosition);o=this._createItems(i),this.title=this.getTitle(o,i),this.beforeBody=this.getBeforeBody(o,i),this.body=this.getBody(o,i),this.afterBody=this.getAfterBody(o,i),this.footer=this.getFooter(o,i);const e=this._size=Oa(this,i),a=Object.assign({},t,e),r=Ta(this.chart,i,a),l=La(i,a,r,this.chart);this.xAlign=r.xAlign,this.yAlign=r.yAlign,n={opacity:1,x:l.x,y:l.y,width:e.width,height:e.height,caretX:t.x,caretY:t.y}}else 0!==this.opacity&&(n={opacity:0});this._tooltipItems=o,this.$context=void 0,n&&this._resolveAnimations().update(this,n),t&&i.external&&i.external.call(this,{chart:this.chart,tooltip:this,replay:e})}drawCaret(t,e,i,s){const n=this.getCaretPosition(t,i,s);e.lineTo(n.x1,n.y1),e.lineTo(n.x2,n.y2),e.lineTo(n.x3,n.y3)}getCaretPosition(t,e,i){const{xAlign:s,yAlign:n}=this,{caretSize:o,cornerRadius:a}=i,{topLeft:r,topRight:l,bottomLeft:h,bottomRight:c}=wi(a),{x:d,y:u}=t,{width:f,height:g}=e;let p,m,x,b,_,y;return"center"===n?(_=u+g/2,"left"===s?(p=d,m=p-o,b=_+o,y=_-o):(p=d+f,m=p+o,b=_-o,y=_+o),x=p):(m="left"===s?d+Math.max(r,h)+o:"right"===s?d+f-Math.max(l,c)-o:this.caretX,"top"===n?(b=u,_=b-o,p=m-o,x=m+o):(b=u+g,_=b+o,p=m+o,x=m-o),y=b),{x1:p,x2:m,x3:x,y1:b,y2:_,y3:y}}drawTitle(t,e,i){const s=this.title,n=s.length;let o,a,r;if(n){const l=Oi(i.rtl,this.x,this.width);for(t.x=Ea(this,i.titleAlign,i),e.textAlign=l.textAlign(i.titleAlign),e.textBaseline="middle",o=Si(i.titleFont),a=i.titleSpacing,e.fillStyle=i.titleColor,e.font=o.string,r=0;r0!==t))?(t.beginPath(),t.fillStyle=n.multiKeyBackground,He(t,{x:e,y:g,w:h,h:l,radius:r}),t.fill(),t.stroke(),t.fillStyle=a.backgroundColor,t.beginPath(),He(t,{x:i,y:g+1,w:h-2,h:l-2,radius:r}),t.fill()):(t.fillStyle=n.multiKeyBackground,t.fillRect(e,g,h,l),t.strokeRect(e,g,h,l),t.fillStyle=a.backgroundColor,t.fillRect(i,g+1,h-2,l-2))}t.fillStyle=this.labelTextColors[i]}drawBody(t,e,i){const{body:s}=this,{bodySpacing:n,bodyAlign:o,displayColors:a,boxHeight:r,boxWidth:l,boxPadding:h}=i,c=Si(i.bodyFont);let d=c.lineHeight,f=0;const g=Oi(i.rtl,this.x,this.width),p=function(i){e.fillText(i,g.x(t.x+f),t.y+d/2),t.y+=d+n},m=g.textAlign(o);let x,b,_,y,v,M,w;for(e.textAlign=o,e.textBaseline="middle",e.font=c.string,t.x=Ea(this,m,i),e.fillStyle=i.bodyColor,u(this.beforeBody,p),f=a&&"right"!==m?"center"===o?l/2+h:l+2+h:0,y=0,M=s.length;y0&&e.stroke()}_updateAnimationTarget(t){const e=this.chart,i=this.$animations,s=i&&i.x,n=i&&i.y;if(s||n){const i=Sa[t.position].call(this,this._active,this._eventPosition);if(!i)return;const o=this._size=Oa(this,t),a=Object.assign({},i,this._size),r=Ta(e,t,a),l=La(t,a,r,e);s._to===l.x&&n._to===l.y||(this.xAlign=r.xAlign,this.yAlign=r.yAlign,this.width=o.width,this.height=o.height,this.caretX=i.x,this.caretY=i.y,this._resolveAnimations().update(this,l))}}_willRender(){return!!this.opacity}draw(t){const e=this.options.setContext(this.getContext());let i=this.opacity;if(!i)return;this._updateAnimationTarget(e);const s={width:this.width,height:this.height},n={x:this.x,y:this.y};i=Math.abs(i)<.001?0:i;const o=ki(e.padding),a=this.title.length||this.beforeBody.length||this.body.length||this.afterBody.length||this.footer.length;e.enabled&&a&&(t.save(),t.globalAlpha=i,this.drawBackground(n,t,s,e),Ai(t,e.textDirection),n.y+=o.top,this.drawTitle(n,t,e),this.drawBody(n,t,e),this.drawFooter(n,t,e),Ti(t,e.textDirection),t.restore())}getActiveElements(){return this._active||[]}setActiveElements(t,e){const i=this._active,s=t.map((({datasetIndex:t,index:e})=>{const i=this.chart.getDatasetMeta(t);if(!i)throw new Error("Cannot find a dataset at index "+t);return{datasetIndex:t,element:i.data[e],index:e}})),n=!f(i,s),o=this._positionChanged(s,e);(n||o)&&(this._active=s,this._eventPosition=e,this._ignoreReplayEvents=!0,this.update(!0))}handleEvent(t,e,i=!0){if(e&&this._ignoreReplayEvents)return!1;this._ignoreReplayEvents=!1;const s=this.options,n=this._active||[],o=this._getActiveElements(t,n,e,i),a=this._positionChanged(o,t),r=e||!f(o,n)||a;return r&&(this._active=o,(s.enabled||s.external)&&(this._eventPosition={x:t.x,y:t.y},this.update(!0,e))),r}_getActiveElements(t,e,i,s){const n=this.options;if("mouseout"===t.type)return[];if(!s)return e.filter((t=>this.chart.data.datasets[t.datasetIndex]&&void 0!==this.chart.getDatasetMeta(t.datasetIndex).controller.getParsed(t.index)));const o=this.chart.getElementsAtEventForMode(t,n.mode,n,i);return n.reverse&&o.reverse(),o}_positionChanged(t,e){const{caretX:i,caretY:s,options:n}=this,o=Sa[n.position].call(this,t,e);return!1!==o&&(i!==o.x||s!==o.y)}}var Ba={id:"tooltip",_element:Va,positioners:Sa,afterInit(t,e,i){i&&(t.tooltip=new Va({chart:t,options:i}))},beforeUpdate(t,e,i){t.tooltip&&t.tooltip.initialize(i)},reset(t,e,i){t.tooltip&&t.tooltip.initialize(i)},afterDraw(t){const e=t.tooltip;if(e&&e._willRender()){const i={tooltip:e};if(!1===t.notifyPlugins("beforeTooltipDraw",{...i,cancelable:!0}))return;e.draw(t.ctx),t.notifyPlugins("afterTooltipDraw",i)}},afterEvent(t,e){if(t.tooltip){const i=e.replay;t.tooltip.handleEvent(e.event,i,e.inChartArea)&&(e.changed=!0)}},defaults:{enabled:!0,external:null,position:"average",backgroundColor:"rgba(0,0,0,0.8)",titleColor:"#fff",titleFont:{weight:"bold"},titleSpacing:2,titleMarginBottom:6,titleAlign:"left",bodyColor:"#fff",bodySpacing:2,bodyFont:{},bodyAlign:"left",footerColor:"#fff",footerSpacing:2,footerMarginTop:6,footerFont:{weight:"bold"},footerAlign:"left",padding:6,caretPadding:2,caretSize:5,cornerRadius:6,boxHeight:(t,e)=>e.bodyFont.size,boxWidth:(t,e)=>e.bodyFont.size,multiKeyBackground:"#fff",displayColors:!0,boxPadding:0,borderColor:"rgba(0,0,0,0)",borderWidth:0,animation:{duration:400,easing:"easeOutQuart"},animations:{numbers:{type:"number",properties:["x","y","width","height","caretX","caretY"]},opacity:{easing:"linear",duration:200}},callbacks:za},defaultRoutes:{bodyFont:"font",footerFont:"font",titleFont:"font"},descriptors:{_scriptable:t=>"filter"!==t&&"itemSort"!==t&&"external"!==t,_indexable:!1,callbacks:{_scriptable:!1,_indexable:!1},animation:{_fallback:!1},animations:{_fallback:"animation"}},additionalOptionScopes:["interaction"]};return An.register(Yn,jo,fo,t),An.helpers={...Wi},An._adapters=Rn,An.Animation=Cs,An.Animations=Os,An.animator=bt,An.controllers=en.controllers.items,An.DatasetController=Ns,An.Element=Hs,An.elements=fo,An.Interaction=Xi,An.layouts=as,An.platforms=Ss,An.Scale=Js,An.Ticks=ae,Object.assign(An,Yn,jo,fo,t,Ss),An.Chart=An,"undefined"!=typeof window&&(window.Chart=An),An})); +//# sourceMappingURL=chart.umd.js.map diff --git a/tests/smoke_abhi_mis_report.php b/tests/smoke_abhi_mis_report.php new file mode 100644 index 00000000..f37fb38d --- /dev/null +++ b/tests/smoke_abhi_mis_report.php @@ -0,0 +1,72 @@ +systemDirectory, '\\/ ') . DIRECTORY_SEPARATOR . 'bootstrap.php'; +require_once SYSTEMPATH . 'Config/DotEnv.php'; +(new CodeIgniter\Config\DotEnv(ROOTPATH))->load(); + +defined('ENVIRONMENT') || define('ENVIRONMENT', env('CI_ENVIRONMENT', 'development')); + +$boot = APPPATH . 'Config/Boot/' . ENVIRONMENT . '.php'; +if (is_file($boot)) { + require_once $boot; +} + +require_once APPPATH . 'Config/Constants.php'; + +$policyId = (int) ($argv[1] ?? 0); + +$db = \Config\Database::connect(); + +if ($policyId <= 0) { + $row = $db->query( + "SELECT cr.client_policy_id, COUNT(*) AS cnt + FROM claim_report cr + WHERE cr.source_table = 'claims_dump_abhi' + AND cr.is_active = 1 + AND cr.source_row_id IS NOT NULL + GROUP BY cr.client_policy_id + ORDER BY cnt DESC + LIMIT 1" + )->getRowArray(); + $policyId = (int) ($row['client_policy_id'] ?? 0); + echo "Auto-selected policy_id: {$policyId}\n"; +} + +if ($policyId <= 0) { + echo "FAIL: No policy with ABHI claim_report linkage found.\n"; + exit(1); +} + +$service = new \App\Libraries\AbhiMisReportService(); +$built = $service->build($policyId); + +if (!$built['status']) { + echo 'FAIL: ' . ($built['message'] ?? 'unknown') . "\n"; + exit(1); +} + +$data = $built['data']; +$status = $data['status_breakdown']['buckets'] ?? []; + +echo "OK policy_id={$policyId}\n"; +echo 'Policy: ' . ($data['header']['policy_number'] ?? '') . "\n"; +echo 'Dump rows: ' . ($data['dump_row_count'] ?? 0) . "\n"; +echo 'Reported: ' . ($status['Reported']['count'] ?? 0) . "\n"; +echo 'Settled: ' . ($status['Settled']['count'] ?? 0) . "\n"; +echo 'Outstanding: ' . ($status['Outstanding']['count'] ?? 0) . "\n"; +echo 'Rejected: ' . ($status['Rejected']['count'] ?? 0) . "\n"; +echo 'ICR: ' . ($data['summary']['icr_pct'] ?? 0) . "%\n"; +echo 'Incurred: ' . ($data['summary']['claim_paid_outstanding'] ?? 0) . "\n"; + +exit(0); diff --git a/tests/smoke_icici_mis_report.php b/tests/smoke_icici_mis_report.php new file mode 100644 index 00000000..e3922c6b --- /dev/null +++ b/tests/smoke_icici_mis_report.php @@ -0,0 +1,140 @@ +systemDirectory, '\\/ ') . DIRECTORY_SEPARATOR . 'bootstrap.php'; +require_once SYSTEMPATH . 'Config/DotEnv.php'; +(new CodeIgniter\Config\DotEnv(ROOTPATH))->load(); + +defined('ENVIRONMENT') || define('ENVIRONMENT', env('CI_ENVIRONMENT', 'development')); + +$boot = APPPATH . 'Config/Boot/' . ENVIRONMENT . '.php'; +if (is_file($boot)) { + require_once $boot; +} + +require_once APPPATH . 'Config/Constants.php'; + +$policyId = (int) ($argv[1] ?? 0); + +$db = \Config\Database::connect(); + +if ($policyId <= 0) { + $row = $db->query( + "SELECT cr.client_policy_id, COUNT(*) AS cnt + FROM claim_report cr + WHERE cr.source_table = 'claims_dump_icici' + AND cr.is_active = 1 + AND cr.source_row_id IS NOT NULL + GROUP BY cr.client_policy_id + ORDER BY cnt DESC + LIMIT 1" + )->getRowArray(); + $policyId = (int) ($row['client_policy_id'] ?? 0); + echo "Auto-selected policy_id: {$policyId}\n"; +} + +if ($policyId <= 0) { + echo "FAIL: No policy with ICICI claim_report linkage found.\n"; + exit(1); +} + +$service = new \App\Libraries\IciciMisReportService(); +$built = $service->build($policyId); + +if (!$built['status']) { + echo 'FAIL: ' . ($built['message'] ?? 'unknown') . "\n"; + exit(1); +} + +$data = $built['data']; +$vm = $data['view_model'] ?? []; + +$requiredSections = [ + 'meta', 'premium_lr', 'claims_summary', 'iltc_summary', 'enrollment', + 'age_analysis', 'relation_acs', 'amount_bands', 'si_bands', 'iltc_app', + 'utilization_employees', 'utilization_dependents', 'disease', + 'hospitals', 'cities', 'tat', 'takeaways', +]; + +foreach ($requiredSections as $key) { + if (!array_key_exists($key, $vm)) { + echo "FAIL: missing view_model.{$key}\n"; + exit(1); + } +} + +echo "OK policy_id={$policyId}\n"; +echo 'Policy: ' . ($data['header']['policy_number'] ?? '') . "\n"; +echo 'Client: ' . ($vm['meta']['client_name'] ?? '') . "\n"; +echo 'Dump rows: ' . ($data['dump_row_count'] ?? 0) . "\n"; +echo 'Claims summary rows: ' . count($vm['claims_summary']['rows'] ?? []) . "\n"; +echo 'Age rows: ' . count($vm['age_analysis']['rows'] ?? []) . "\n"; +echo 'Disease rows: ' . count($vm['disease']['rows'] ?? []) . "\n"; +echo 'Hospitals: ' . count($vm['hospitals']['rows'] ?? []) . "\n"; +echo 'Cities: ' . count($vm['cities']['rows'] ?? []) . "\n"; +echo 'TAT months: ' . count($vm['tat'] ?? []) . "\n"; + +$html = view('claims_mis_icici', [ + 'report' => $data, + 'view_model' => $vm, + 'policy_id' => $policyId, + 'pdf_url' => '', + 'embed' => true, +]); + +$sectionMarkers = [ + 'Portfolio Analysis', + 'Enrollment Summary', + 'Age-wise Analysis', + 'Relation ACS', + 'Amount Band-wise Analysis', + 'SI Band-wise Analysis', + 'IL Take Care', + 'Disease-Analysis', + 'Claim Utilization report', + 'Top Hospitals', + 'Top Cities', + 'TAT Analysis', +]; + +foreach ($sectionMarkers as $marker) { + if (stripos($html, $marker) === false) { + echo "FAIL: HTML missing section '{$marker}'\n"; + exit(1); + } +} + +if (stripos($html, 'icici_lambard_new') === false && stripos($html, 'data:image') === false) { + if (stripos($html, 'icici_lambard_new.png') === false) { + echo "FAIL: HTML missing ICICI logo reference\n"; + exit(1); + } +} + +echo "OK HTML sections present (" . strlen($html) . " bytes)\n"; + +$pdf = (new \App\Libraries\IciciMisPdfService())->generateFromReport($data, $policyId); +if (!$pdf['status']) { + echo 'FAIL PDF: ' . ($pdf['message'] ?? 'unknown') . "\n"; + exit(1); +} + +$outDir = WRITEPATH . 'uploads/'; +if (!is_dir($outDir)) { + @mkdir($outDir, 0775, true); +} +$outFile = $outDir . ($pdf['filename'] ?? 'ICICI_MIS_smoke.pdf'); +file_put_contents($outFile, $pdf['content']); +echo 'OK PDF: ' . $outFile . ' (' . strlen((string) $pdf['content']) . " bytes)\n"; + +exit(0); diff --git a/tests/smoke_medi_assist_mis_report.php b/tests/smoke_medi_assist_mis_report.php new file mode 100644 index 00000000..ab14c255 --- /dev/null +++ b/tests/smoke_medi_assist_mis_report.php @@ -0,0 +1,128 @@ +systemDirectory, '\\/ ') . DIRECTORY_SEPARATOR . 'bootstrap.php'; +require_once SYSTEMPATH . 'Config/DotEnv.php'; +(new CodeIgniter\Config\DotEnv(ROOTPATH))->load(); + +defined('ENVIRONMENT') || define('ENVIRONMENT', env('CI_ENVIRONMENT', 'development')); + +$boot = APPPATH . 'Config/Boot/' . ENVIRONMENT . '.php'; +if (is_file($boot)) { + require_once $boot; +} + +require_once APPPATH . 'Config/Constants.php'; + +$policyId = (int) ($argv[1] ?? 0); + +$db = \Config\Database::connect(); + +if ($policyId <= 0) { + $row = $db->query( + "SELECT cr.client_policy_id, COUNT(*) AS cnt + FROM claim_report cr + WHERE cr.source_table = 'claims_dump_medi_assist' + AND cr.is_active = 1 + AND cr.source_row_id IS NOT NULL + GROUP BY cr.client_policy_id + ORDER BY cnt DESC + LIMIT 1" + )->getRowArray(); + $policyId = (int) ($row['client_policy_id'] ?? 0); + echo "Auto-selected policy_id: {$policyId}\n"; +} + +if ($policyId <= 0) { + echo "FAIL: No policy with Medi Assist claim_report linkage found.\n"; + exit(1); +} + +$service = new \App\Libraries\MediAssistMisReportService(); +$built = $service->build($policyId); + +if (!$built['status']) { + echo 'FAIL: ' . ($built['message'] ?? 'unknown') . "\n"; + exit(1); +} + +$data = $built['data']; +$vm = $data['view_model'] ?? []; + +$required = [ + 'meta', 'header', 'index_policies', 'portfolio_summary', 'policy_lives', 'policy_premium', + 'claim_status_rows', 'claim_type_sections', 'savings', 'top_providers', 'top_ailments', + 'beneficiary', 'age_bands', 'utilization_employees', 'utilization_dependents', + 'amount_bands_cashless', 'amount_bands_reimbursement', 'glossary', +]; + +foreach ($required as $key) { + if (!array_key_exists($key, $vm)) { + echo "FAIL: missing view_model.{$key}\n"; + exit(1); + } +} + +echo "OK policy_id={$policyId}\n"; +echo 'Policy: ' . ($data['header']['policy_number'] ?? '') . "\n"; +echo 'Dump rows: ' . ($data['dump_row_count'] ?? 0) . "\n"; +echo 'Claims: ' . ($vm['portfolio_summary']['claims_count'] ?? 0) . "\n"; + +$html = view('claims_mis_medi_assist', [ + 'report' => $data, + 'view_model' => $vm, + 'policy_id' => $policyId, + 'pdf_url' => '', + 'embed' => true, +]); + +$markers = [ + 'Portfolio Analysis Report', + 'Portfolio Report', + 'Savings Summary', + 'Top 10 Distribution Across Providers', + 'Distribution Across Beneficiary', + 'Utilization Report for Employees', + 'Distribution Across Amount Bands', + 'Glossary', +]; + +foreach ($markers as $m) { + if (stripos($html, $m) === false) { + echo "FAIL: HTML missing '{$m}'\n"; + exit(1); + } +} + +if (stripos($html, 'medi_assist.png') === false && stripos($html, 'data:image') === false) { + echo "FAIL: logo missing\n"; + exit(1); +} + +echo 'OK HTML (' . strlen($html) . " bytes)\n"; + +$pdf = (new \App\Libraries\MediAssistMisPdfService())->generateFromReport($data, $policyId); +if (!$pdf['status']) { + echo 'FAIL PDF: ' . ($pdf['message'] ?? '') . "\n"; + exit(1); +} + +$outDir = WRITEPATH . 'uploads/'; +if (!is_dir($outDir)) { + @mkdir($outDir, 0775, true); +} +$outFile = $outDir . ($pdf['filename'] ?? 'MA_MIS_smoke.pdf'); +file_put_contents($outFile, $pdf['content']); +echo 'OK PDF: ' . $outFile . ' (' . strlen((string) $pdf['content']) . " bytes)\n"; + +exit(0); diff --git a/tests/smoke_vidal_mis_report.php b/tests/smoke_vidal_mis_report.php new file mode 100644 index 00000000..c1532428 --- /dev/null +++ b/tests/smoke_vidal_mis_report.php @@ -0,0 +1,133 @@ +systemDirectory, '\\/ ') . DIRECTORY_SEPARATOR . 'bootstrap.php'; +require_once SYSTEMPATH . 'Config/DotEnv.php'; +(new CodeIgniter\Config\DotEnv(ROOTPATH))->load(); + +defined('ENVIRONMENT') || define('ENVIRONMENT', env('CI_ENVIRONMENT', 'development')); + +$boot = APPPATH . 'Config/Boot/' . ENVIRONMENT . '.php'; +if (is_file($boot)) { + require_once $boot; +} + +require_once APPPATH . 'Config/Constants.php'; + +$policyId = (int) ($argv[1] ?? 0); +$db = \Config\Database::connect(); + +if ($policyId <= 0) { + $row = $db->query( + "SELECT cr.client_policy_id, COUNT(*) AS cnt + FROM claim_report cr + WHERE cr.source_table = 'claims_dump_vidal' + AND cr.is_active = 1 + AND cr.source_row_id IS NOT NULL + GROUP BY cr.client_policy_id + ORDER BY cnt DESC + LIMIT 1" + )->getRowArray(); + $policyId = (int) ($row['client_policy_id'] ?? 0); + echo "Auto-selected policy_id: {$policyId}\n"; +} + +if ($policyId <= 0) { + echo "FAIL: No policy with Vidal claim_report linkage found.\n"; + exit(1); +} + +$service = new \App\Libraries\VidalMisReportService(); +$built = $service->build($policyId); + +if (!$built['status']) { + echo 'FAIL: ' . ($built['message'] ?? 'unknown') . "\n"; + exit(1); +} + +$data = $built['data']; +$vm = $data['view_model'] ?? []; + +$required = [ + 'meta', 'header', 'toc', 'icr', 'hospitalization', 'member_gender', 'member_age', + 'claims_age', 'claims_amount', 'ailments', 'hospitals', 'cashless_member_summary', + 'tat', 'month_on_month', 'payout', 'chart_gender', 'chart_age', +]; + +foreach ($required as $key) { + if (!array_key_exists($key, $vm)) { + echo "FAIL: missing view_model.{$key}\n"; + exit(1); + } +} + +echo "OK policy_id={$policyId}\n"; +echo 'Policy: ' . ($data['header']['policy_number'] ?? '') . "\n"; +echo 'Dump rows: ' . ($data['dump_row_count'] ?? 0) . "\n"; + +$html = view('claims_mis_vidal', [ + 'report' => $data, + 'view_model' => $vm, + 'policy_id' => $policyId, + 'pdf_url' => '', + 'embed' => true, +]); + +$markers = [ + 'Corporate Analysis Report', + 'Incurred Claims Ratio', + 'Hospitalisation Type Details', + 'Member Details - Relationship', + 'Claims Approved - Age Band', + 'Claims Approved - Amount Band', + 'Ailment', + 'Hospital', + 'Turn Around Time', + 'Month on Month', + 'Payout Ratio', + 'DISCLAIMER', +]; + +foreach ($markers as $m) { + if (stripos($html, $m) === false) { + echo "FAIL: HTML missing '{$m}'\n"; + exit(1); + } +} + +if ( + stripos($html, 'vidal.png') === false + && stripos($html, 'vidal_mis.png') === false + && stripos($html, 'data:image') === false +) { + echo "FAIL: logo missing\n"; + exit(1); +} + +echo 'OK HTML (' . strlen($html) . " bytes)\n"; + +$pdf = (new \App\Libraries\VidalMisPdfService())->generateFromReport($data, $policyId); +if (!$pdf['status']) { + echo 'FAIL PDF: ' . ($pdf['message'] ?? '') . "\n"; + exit(1); +} + +$outDir = WRITEPATH . 'uploads/'; +if (!is_dir($outDir)) { + @mkdir($outDir, 0775, true); +} +$outFile = $outDir . ($pdf['filename'] ?? 'VIDAL_MIS_smoke.pdf'); +file_put_contents($outFile, $pdf['content']); +echo 'OK PDF: ' . $outFile . ' (' . strlen((string) $pdf['content']) . " bytes)\n"; + +exit(0);