From 64a576d638cea38ae874994b4b97e17dd19d6c17 Mon Sep 17 00:00:00 2001 From: Martin Folkerts Date: Tue, 20 Aug 2024 17:01:58 +0200 Subject: [PATCH] okay --- build_report.sh | 2 +- .../app/Jobs/ProjectReportGeneratorJob.php | 9 +- .../app/Livewire/Projects/Tabs/Report.php | 22 +- laravel_app/app/Models/Project.php | 86 +- laravel_app/app/Models/ProjectMosaic.php | 1 + .../{app-d3f21131.css => app-36af0ee7.css} | 2 +- laravel_app/public/build/manifest.json | 2 +- .../views/components/icon/trash.blade.php | 3 + .../components/project-manager-grid.blade.php | 28 +- ...report-manager-test-report-modal.blade.php | 29 + .../livewire/projects/tabs/report.blade.php | 8 + .../livewire/reports/report-manager.blade.php | 1 - python_app/planet_download.ipynb | 908 +++--------------- r_app/CI_report_dashboard_planet.Rmd | 6 +- r_app/Rplots.pdf | Bin 149318 -> 8065 bytes r_app/ci_extraction.R | 6 +- r_app/mosaic_creation.R | 121 +-- r_app/parameters_project.R | 24 +- 18 files changed, 378 insertions(+), 880 deletions(-) rename laravel_app/public/build/assets/{app-d3f21131.css => app-36af0ee7.css} (80%) create mode 100644 laravel_app/resources/views/components/icon/trash.blade.php create mode 100644 laravel_app/resources/views/components/report-manager-test-report-modal.blade.php diff --git a/build_report.sh b/build_report.sh index 53300bd..533db87 100755 --- a/build_report.sh +++ b/build_report.sh @@ -24,7 +24,7 @@ done # Check if required arguments are set if [ -z "$filename" ] || [ -z "$report_date" ]|| [ -z "$mail_day" ] || [ -z "$data_dir" ]; then - echo "Missing arguments. Use: build_reports.sh --filename=hello.txt --report_date=2020-01-01 --data_dir=chemba" + echo "Missing arguments. Use: build_reports.sh --filename=hello.txt --report_date=2020-01-01 --mail_day=Friday --data_dir=chemba" exit 1 fi diff --git a/laravel_app/app/Jobs/ProjectReportGeneratorJob.php b/laravel_app/app/Jobs/ProjectReportGeneratorJob.php index b87a1a0..a16c8c0 100644 --- a/laravel_app/app/Jobs/ProjectReportGeneratorJob.php +++ b/laravel_app/app/Jobs/ProjectReportGeneratorJob.php @@ -11,6 +11,7 @@ use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\SerializesModels; +use Illuminate\Support\Carbon; use Symfony\Component\Process\Process; class ProjectReportGeneratorJob implements ShouldQueue @@ -21,13 +22,16 @@ class ProjectReportGeneratorJob implements ShouldQueue private ProjectReport $projectReport; private bool $sendMail; + private bool $isTestReport; + /** * Create a new job instance. */ - public function __construct(ProjectReport $projectReport, $sendMail = false) + public function __construct(ProjectReport $projectReport, $sendMail = false, $isTestReport = false) { $this->projectReport = $projectReport; $this->sendMail = $sendMail; + $this->isTestReport = $isTestReport; } /** @@ -42,7 +46,7 @@ public function handle() sprintf('%sbuild_report.sh', $projectFolder), sprintf('--filename=%s', $this->projectReport->getFullPathName()), sprintf('--report_date=%s', $this->projectReport->getReportDate()), - sprintf('--mail_day=%s',$this->projectReport->project->mail_day), + sprintf('--mail_day=%s', $this->isTestReport? Carbon::yesterday()->dayName: $this->projectReport->project->mail_day), sprintf('--data_dir=%s', $this->projectReport->project->download_path), ]; logger('command:'. print_r($command, true)); @@ -54,7 +58,6 @@ public function handle() $currentPath = '/usr/bin:/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin/Users/mfolkerts/anaconda3/bin:/Library/Apple/usr/bin'; $process->setEnv(['PATH' => $currentPath.':/usr/local/Cellar/pandoc/3.1.8/bin/pandoc']); -// $process->setTimeout(36000); // stel een geschikte timeout in $process->start(); try { $myOutput = []; diff --git a/laravel_app/app/Livewire/Projects/Tabs/Report.php b/laravel_app/app/Livewire/Projects/Tabs/Report.php index 3fcf8b6..5c374c4 100644 --- a/laravel_app/app/Livewire/Projects/Tabs/Report.php +++ b/laravel_app/app/Livewire/Projects/Tabs/Report.php @@ -2,12 +2,10 @@ namespace App\Livewire\Projects\Tabs; -use App\Jobs\ProjectMosiacGeneratorJob; use App\Jobs\ProjectReportGeneratorJob; +use App\Jobs\ProjectTestReportGeneratorJob; use App\Models\Project; -use App\Models\ProjectMosaic; use App\Models\ProjectReport; -use App\Rules\AllMosaicsPresentRule; use Carbon\Carbon; use Illuminate\Support\Str; use Livewire\Attributes\Reactive; @@ -28,6 +26,7 @@ class Report extends Component public $showReportModal = false; + public $showTestReportModal = false; public function mount() { @@ -39,6 +38,13 @@ public function openCreateReportModal() $this->resetFormData(); $this->showReportModal = true; } + + public function openCreateTestReportModal() + { + $this->showTestReportModal = true; + } + + private function resetFormData() { $this->formData['end_date'] = Carbon::yesterday()->toDateString(); @@ -68,6 +74,16 @@ public function saveProjectReport() } + public function createProjectTestReport() + { + $this->project->scheduleTestReport(); + + $this->dispatch('refresh'); + + $this->showTestReportModal = false; + + } + public function getDateRangeProperty() { if (!$this->formData['end_date'] || !$this->formData['offset']) { diff --git a/laravel_app/app/Models/Project.php b/laravel_app/app/Models/Project.php index 68d31b4..bf14122 100644 --- a/laravel_app/app/Models/Project.php +++ b/laravel_app/app/Models/Project.php @@ -309,6 +309,14 @@ public function scheduleReport(?Carbon $endDate = null, ?int $offset = null) $endDate ??= Carbon::yesterday(); $offset ??= 7; + + for ($step = 0; $step<=3; $step++) { + $latestMosaicToDelete = ProjectMosaic::projectMosaicNameFormat($endDate->clone(), $offset*$step); + logger('Deleting mosaic: '.$latestMosaicToDelete); + $this->mosaics()->where('name', $latestMosaicToDelete)->first()?->delete(); + } + + logger('Scheduling report for '.$endDate->format('d-m-Y').' with offset '.$offset.' days'); Bus::chain([ Bus::batch($this->getFileDownloadsFor($endDate->clone(), $offset)), @@ -323,6 +331,33 @@ public function scheduleReport(?Carbon $endDate = null, ?int $offset = null) return "done"; } + public function scheduleTestReport() + { + $endDate = Carbon::yesterday(); + $offset = 7; + + for ($step = 0; $step<=3; $step++) { + $latestMosaicToDelete = ProjectMosaic::projectMosaicNameFormat($endDate->clone(), $offset*$step); + logger('Deleting mosaic: '.$latestMosaicToDelete); + $this->mosaics()->where('name', $latestMosaicToDelete)->first()?->delete(); + } + + + logger('Scheduling test report for '.$endDate->format('d-m-Y').' with offset '.$offset.' days'); + + Bus::chain([ + Bus::batch($this->getFileDownloadsFor($endDate->clone(), $offset)), + Bus::batch($this->getTestMosaicsFor($endDate->clone())), + Bus::batch( + [ + new ProjectInterpolateGrowthModelJob($this), + $this->getTestReportFor($endDate->clone(), $offset, true) + ]), + ]) + ->dispatch(); + return "done"; + } + public function getReportFor(Carbon $endDate, int $offset = 7, $sendMail = false): ProjectReportGeneratorJob { $report = $this->reports()->create([ @@ -335,6 +370,18 @@ public function getReportFor(Carbon $endDate, int $offset = 7, $sendMail = false return (new ProjectReportGeneratorJob($report, $sendMail)); } + public function getTestReportFor(Carbon $endDate, int $offset = 7, $sendMail = false): ProjectReportGeneratorJob + { + $report = $this->reports()->create([ + 'name' => 'Test Report of the '.$endDate->format('d-m-Y').' from the past '.$offset.' days', + 'end_date' => $endDate, + 'offset' => $offset, + 'path' => 'reports/'.ProjectReport::getFileName($endDate, $offset).'.docx', + ]); + + return (new ProjectReportGeneratorJob($report, $sendMail, true)); + } + public function getFileDownloadsFor(Carbon $endDate, int $offset = 7): array { $startOfRange = (clone $endDate)->subdays(4 * $offset - 1); @@ -363,6 +410,19 @@ public function getMosaicsFor(Carbon $endDate, int $offset = 7): array ->toArray(); } + public function getTestMosaicsFor(Carbon $endDate) + { + return collect(range(0, 3)) + ->map(function () use ($endDate) { + $currentEndDate = $endDate->clone(); + $endDate->subWeek(); + + return ProjectMosiacGeneratorJob::handleFor($this, $currentEndDate, 7); + }) + ->filter() + ->toArray(); + } + public function handleMissingDownloads() { $this->getMissingDownloads() @@ -414,7 +474,9 @@ public function newDownloadsUploaded() dispatch_sync(new ProjectDownloadRDSJob($this, Carbon::yesterday(), $offset)); dispatch_sync(new ProjectInterpolateGrowthModelJob($this)); } - public function getRdsAsDownload() { + + public function getRdsAsDownload() + { $path = $this->download_path.'/Data/extracted_ci/cumulative_vals/combined_CI_data.rds'; @@ -423,7 +485,8 @@ public function getRdsAsDownload() { ); } - public function getTifsAsZip(Carbon $startDate, Carbon $endDate) { + public function getTifsAsZip(Carbon $startDate, Carbon $endDate) + { $path = $this->download_path.'/merged_final_tif'; $files = collect(Storage::files($path)) ->filter(fn($file) => Str::endsWith($file, '.tif')) @@ -436,12 +499,13 @@ public function getTifsAsZip(Carbon $startDate, Carbon $endDate) { return $this->createZipArchiveAndReturn($files); } - public function getMosaicsAsZip(Carbon $startDate, Carbon $endDate) { + public function getMosaicsAsZip(Carbon $startDate, Carbon $endDate) + { $path = $this->download_path.'/weekly_mosaic'; // create a collection of all week numbers and years for given date range $allowedFiles = collect(CarbonPeriod::create($startDate, $endDate)->toArray()) - ->map(fn($date) => sprintf('week_%s_%s.tif',$date->weekOfYear, $date->year)) + ->map(fn($date) => sprintf('week_%s_%s.tif', $date->weekOfYear, $date->year)) ->unique(); @@ -492,12 +556,12 @@ public function createDownloadRecordsInDatabaseAndUpdateStatusForAllDownloadedIm public function createAllMosaicsInDatabaseAndUpdateStatusForAllDownloadedImages() { - $list_of_desired_mosaics = $this->getMergedTiffList() - ->map(fn($file) => str_replace('.tif', '', basename($file) )) - ->map(function($date) { - $carbon = Carbon::parse($date); - return sprintf('week_%s_%s', $carbon->format('W'), $carbon->year); - }) - ->unique(); + $list_of_desired_mosaics = $this->getMergedTiffList() + ->map(fn($file) => str_replace('.tif', '', basename($file))) + ->map(function ($date) { + $carbon = Carbon::parse($date); + return sprintf('week_%s_%s', $carbon->format('W'), $carbon->year); + }) + ->unique(); } } diff --git a/laravel_app/app/Models/ProjectMosaic.php b/laravel_app/app/Models/ProjectMosaic.php index 8fc2048..7dbb358 100644 --- a/laravel_app/app/Models/ProjectMosaic.php +++ b/laravel_app/app/Models/ProjectMosaic.php @@ -34,6 +34,7 @@ public static function getFilenameByPeriod(Carbon $endDate, int $offset) public static function projectMosaicNameFormat(Carbon $endDate, int $offset): string { + $paddedWeek = str_pad($endDate->clone()->subDays($offset)->week, 2, '0', STR_PAD_LEFT); return sprintf('Week_%s_%s', diff --git a/laravel_app/public/build/assets/app-d3f21131.css b/laravel_app/public/build/assets/app-36af0ee7.css similarity index 80% rename from laravel_app/public/build/assets/app-d3f21131.css rename to laravel_app/public/build/assets/app-36af0ee7.css index 4554d8d..19d356a 100644 --- a/laravel_app/public/build/assets/app-d3f21131.css +++ b/laravel_app/public/build/assets/app-36af0ee7.css @@ -2,4 +2,4 @@ @import"https://rsms.me/inter/inter.css";@import"https://viglino.github.io/font- * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2024 Fonticons, Inc. - */.fa{font-family:var(--fa-style-family, "Font Awesome 6 Free");font-weight:var(--fa-style, 900)}.fa,.fa-classic,.fa-sharp,.fas,.fa-solid,.far,.fa-regular,.fab,.fa-brands{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display, inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fas,.fa-classic,.fa-solid,.far,.fa-regular{font-family:"Font Awesome 6 Free"}.fab,.fa-brands{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin, 2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em) * -1);position:absolute;text-align:center;width:var(--fa-li-width, 2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color, #eee);border-radius:var(--fa-border-radius, .1em);border-style:var(--fa-border-style, solid);border-width:var(--fa-border-width, .08em);padding:var(--fa-border-padding, .2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin, .3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin, .3em)}.fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1))}.fa-fade{animation-name:fa-fade;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))}.fa-beat-fade{animation-name:fa-beat-fade;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))}.fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.fa-shake{animation-name:fa-shake;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin{animation-name:fa-spin;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 2s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin-reverse{--fa-animation-direction: reverse}.fa-pulse,.fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, steps(8))}@media (prefers-reduced-motion: reduce){.fa-beat,.fa-bounce,.fa-fade,.fa-beat-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale, 1.25))}}@keyframes fa-bounce{0%{transform:scale(1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x, 1.1),var(--fa-bounce-start-scale-y, .9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x, .9),var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x, 1.05),var(--fa-bounce-land-scale-y, .95)) translateY(0)}57%{transform:scale(1) translateY(var(--fa-bounce-rebound, -.125em))}64%{transform:scale(1) translateY(0)}to{transform:scale(1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity, .4)}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity, .4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale, 1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x, 0),var(--fa-flip-y, 1),var(--fa-flip-z, 0),var(--fa-flip-angle, -180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}8%,24%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}40%,to{transform:rotate(0)}}@keyframes fa-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}.fa-rotate-by{transform:rotate(var(--fa-rotate-angle, 0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index, auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse, #fff)}.fa-0:before{content:"0"}.fa-1:before{content:"1"}.fa-2:before{content:"2"}.fa-3:before{content:"3"}.fa-4:before{content:"4"}.fa-5:before{content:"5"}.fa-6:before{content:"6"}.fa-7:before{content:"7"}.fa-8:before{content:"8"}.fa-9:before{content:"9"}.fa-fill-drip:before{content:""}.fa-arrows-to-circle:before{content:""}.fa-circle-chevron-right:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-at:before{content:"@"}.fa-trash-can:before{content:""}.fa-trash-alt:before{content:""}.fa-text-height:before{content:""}.fa-user-xmark:before{content:""}.fa-user-times:before{content:""}.fa-stethoscope:before{content:""}.fa-message:before{content:""}.fa-comment-alt:before{content:""}.fa-info:before{content:""}.fa-down-left-and-up-right-to-center:before{content:""}.fa-compress-alt:before{content:""}.fa-explosion:before{content:""}.fa-file-lines:before{content:""}.fa-file-alt:before{content:""}.fa-file-text:before{content:""}.fa-wave-square:before{content:""}.fa-ring:before{content:""}.fa-building-un:before{content:""}.fa-dice-three:before{content:""}.fa-calendar-days:before{content:""}.fa-calendar-alt:before{content:""}.fa-anchor-circle-check:before{content:""}.fa-building-circle-arrow-right:before{content:""}.fa-volleyball:before{content:""}.fa-volleyball-ball:before{content:""}.fa-arrows-up-to-line:before{content:""}.fa-sort-down:before{content:""}.fa-sort-desc:before{content:""}.fa-circle-minus:before{content:""}.fa-minus-circle:before{content:""}.fa-door-open:before{content:""}.fa-right-from-bracket:before{content:""}.fa-sign-out-alt:before{content:""}.fa-atom:before{content:""}.fa-soap:before{content:""}.fa-icons:before{content:""}.fa-heart-music-camera-bolt:before{content:""}.fa-microphone-lines-slash:before{content:""}.fa-microphone-alt-slash:before{content:""}.fa-bridge-circle-check:before{content:""}.fa-pump-medical:before{content:""}.fa-fingerprint:before{content:""}.fa-hand-point-right:before{content:""}.fa-magnifying-glass-location:before{content:""}.fa-search-location:before{content:""}.fa-forward-step:before{content:""}.fa-step-forward:before{content:""}.fa-face-smile-beam:before{content:""}.fa-smile-beam:before{content:""}.fa-flag-checkered:before{content:""}.fa-football:before{content:""}.fa-football-ball:before{content:""}.fa-school-circle-exclamation:before{content:""}.fa-crop:before{content:""}.fa-angles-down:before{content:""}.fa-angle-double-down:before{content:""}.fa-users-rectangle:before{content:""}.fa-people-roof:before{content:""}.fa-people-line:before{content:""}.fa-beer-mug-empty:before{content:""}.fa-beer:before{content:""}.fa-diagram-predecessor:before{content:""}.fa-arrow-up-long:before{content:""}.fa-long-arrow-up:before{content:""}.fa-fire-flame-simple:before{content:""}.fa-burn:before{content:""}.fa-person:before{content:""}.fa-male:before{content:""}.fa-laptop:before{content:""}.fa-file-csv:before{content:""}.fa-menorah:before{content:""}.fa-truck-plane:before{content:""}.fa-record-vinyl:before{content:""}.fa-face-grin-stars:before{content:""}.fa-grin-stars:before{content:""}.fa-bong:before{content:""}.fa-spaghetti-monster-flying:before{content:""}.fa-pastafarianism:before{content:""}.fa-arrow-down-up-across-line:before{content:""}.fa-spoon:before{content:""}.fa-utensil-spoon:before{content:""}.fa-jar-wheat:before{content:""}.fa-envelopes-bulk:before{content:""}.fa-mail-bulk:before{content:""}.fa-file-circle-exclamation:before{content:""}.fa-circle-h:before{content:""}.fa-hospital-symbol:before{content:""}.fa-pager:before{content:""}.fa-address-book:before{content:""}.fa-contact-book:before{content:""}.fa-strikethrough:before{content:""}.fa-k:before{content:"K"}.fa-landmark-flag:before{content:""}.fa-pencil:before{content:""}.fa-pencil-alt:before{content:""}.fa-backward:before{content:""}.fa-caret-right:before{content:""}.fa-comments:before{content:""}.fa-paste:before{content:""}.fa-file-clipboard:before{content:""}.fa-code-pull-request:before{content:""}.fa-clipboard-list:before{content:""}.fa-truck-ramp-box:before{content:""}.fa-truck-loading:before{content:""}.fa-user-check:before{content:""}.fa-vial-virus:before{content:""}.fa-sheet-plastic:before{content:""}.fa-blog:before{content:""}.fa-user-ninja:before{content:""}.fa-person-arrow-up-from-line:before{content:""}.fa-scroll-torah:before{content:""}.fa-torah:before{content:""}.fa-broom-ball:before{content:""}.fa-quidditch:before{content:""}.fa-quidditch-broom-ball:before{content:""}.fa-toggle-off:before{content:""}.fa-box-archive:before{content:""}.fa-archive:before{content:""}.fa-person-drowning:before{content:""}.fa-arrow-down-9-1:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-sort-numeric-down-alt:before{content:""}.fa-face-grin-tongue-squint:before{content:""}.fa-grin-tongue-squint:before{content:""}.fa-spray-can:before{content:""}.fa-truck-monster:before{content:""}.fa-w:before{content:"W"}.fa-earth-africa:before{content:""}.fa-globe-africa:before{content:""}.fa-rainbow:before{content:""}.fa-circle-notch:before{content:""}.fa-tablet-screen-button:before{content:""}.fa-tablet-alt:before{content:""}.fa-paw:before{content:""}.fa-cloud:before{content:""}.fa-trowel-bricks:before{content:""}.fa-face-flushed:before{content:""}.fa-flushed:before{content:""}.fa-hospital-user:before{content:""}.fa-tent-arrow-left-right:before{content:""}.fa-gavel:before{content:""}.fa-legal:before{content:""}.fa-binoculars:before{content:""}.fa-microphone-slash:before{content:""}.fa-box-tissue:before{content:""}.fa-motorcycle:before{content:""}.fa-bell-concierge:before{content:""}.fa-concierge-bell:before{content:""}.fa-pen-ruler:before{content:""}.fa-pencil-ruler:before{content:""}.fa-people-arrows:before{content:""}.fa-people-arrows-left-right:before{content:""}.fa-mars-and-venus-burst:before{content:""}.fa-square-caret-right:before{content:""}.fa-caret-square-right:before{content:""}.fa-scissors:before{content:""}.fa-cut:before{content:""}.fa-sun-plant-wilt:before{content:""}.fa-toilets-portable:before{content:""}.fa-hockey-puck:before{content:""}.fa-table:before{content:""}.fa-magnifying-glass-arrow-right:before{content:""}.fa-tachograph-digital:before{content:""}.fa-digital-tachograph:before{content:""}.fa-users-slash:before{content:""}.fa-clover:before{content:""}.fa-reply:before{content:""}.fa-mail-reply:before{content:""}.fa-star-and-crescent:before{content:""}.fa-house-fire:before{content:""}.fa-square-minus:before{content:""}.fa-minus-square:before{content:""}.fa-helicopter:before{content:""}.fa-compass:before{content:""}.fa-square-caret-down:before{content:""}.fa-caret-square-down:before{content:""}.fa-file-circle-question:before{content:""}.fa-laptop-code:before{content:""}.fa-swatchbook:before{content:""}.fa-prescription-bottle:before{content:""}.fa-bars:before{content:""}.fa-navicon:before{content:""}.fa-people-group:before{content:""}.fa-hourglass-end:before{content:""}.fa-hourglass-3:before{content:""}.fa-heart-crack:before{content:""}.fa-heart-broken:before{content:""}.fa-square-up-right:before{content:""}.fa-external-link-square-alt:before{content:""}.fa-face-kiss-beam:before{content:""}.fa-kiss-beam:before{content:""}.fa-film:before{content:""}.fa-ruler-horizontal:before{content:""}.fa-people-robbery:before{content:""}.fa-lightbulb:before{content:""}.fa-caret-left:before{content:""}.fa-circle-exclamation:before{content:""}.fa-exclamation-circle:before{content:""}.fa-school-circle-xmark:before{content:""}.fa-arrow-right-from-bracket:before{content:""}.fa-sign-out:before{content:""}.fa-circle-chevron-down:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-unlock-keyhole:before{content:""}.fa-unlock-alt:before{content:""}.fa-cloud-showers-heavy:before{content:""}.fa-headphones-simple:before{content:""}.fa-headphones-alt:before{content:""}.fa-sitemap:before{content:""}.fa-circle-dollar-to-slot:before{content:""}.fa-donate:before{content:""}.fa-memory:before{content:""}.fa-road-spikes:before{content:""}.fa-fire-burner:before{content:""}.fa-flag:before{content:""}.fa-hanukiah:before{content:""}.fa-feather:before{content:""}.fa-volume-low:before{content:""}.fa-volume-down:before{content:""}.fa-comment-slash:before{content:""}.fa-cloud-sun-rain:before{content:""}.fa-compress:before{content:""}.fa-wheat-awn:before{content:""}.fa-wheat-alt:before{content:""}.fa-ankh:before{content:""}.fa-hands-holding-child:before{content:""}.fa-asterisk:before{content:"*"}.fa-square-check:before{content:""}.fa-check-square:before{content:""}.fa-peseta-sign:before{content:""}.fa-heading:before{content:""}.fa-header:before{content:""}.fa-ghost:before{content:""}.fa-list:before{content:""}.fa-list-squares:before{content:""}.fa-square-phone-flip:before{content:""}.fa-phone-square-alt:before{content:""}.fa-cart-plus:before{content:""}.fa-gamepad:before{content:""}.fa-circle-dot:before{content:""}.fa-dot-circle:before{content:""}.fa-face-dizzy:before{content:""}.fa-dizzy:before{content:""}.fa-egg:before{content:""}.fa-house-medical-circle-xmark:before{content:""}.fa-campground:before{content:""}.fa-folder-plus:before{content:""}.fa-futbol:before{content:""}.fa-futbol-ball:before{content:""}.fa-soccer-ball:before{content:""}.fa-paintbrush:before{content:""}.fa-paint-brush:before{content:""}.fa-lock:before{content:""}.fa-gas-pump:before{content:""}.fa-hot-tub-person:before{content:""}.fa-hot-tub:before{content:""}.fa-map-location:before{content:""}.fa-map-marked:before{content:""}.fa-house-flood-water:before{content:""}.fa-tree:before{content:""}.fa-bridge-lock:before{content:""}.fa-sack-dollar:before{content:""}.fa-pen-to-square:before{content:""}.fa-edit:before{content:""}.fa-car-side:before{content:""}.fa-share-nodes:before{content:""}.fa-share-alt:before{content:""}.fa-heart-circle-minus:before{content:""}.fa-hourglass-half:before{content:""}.fa-hourglass-2:before{content:""}.fa-microscope:before{content:""}.fa-sink:before{content:""}.fa-bag-shopping:before{content:""}.fa-shopping-bag:before{content:""}.fa-arrow-down-z-a:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-alpha-down-alt:before{content:""}.fa-mitten:before{content:""}.fa-person-rays:before{content:""}.fa-users:before{content:""}.fa-eye-slash:before{content:""}.fa-flask-vial:before{content:""}.fa-hand:before{content:""}.fa-hand-paper:before{content:""}.fa-om:before{content:""}.fa-worm:before{content:""}.fa-house-circle-xmark:before{content:""}.fa-plug:before{content:""}.fa-chevron-up:before{content:""}.fa-hand-spock:before{content:""}.fa-stopwatch:before{content:""}.fa-face-kiss:before{content:""}.fa-kiss:before{content:""}.fa-bridge-circle-xmark:before{content:""}.fa-face-grin-tongue:before{content:""}.fa-grin-tongue:before{content:""}.fa-chess-bishop:before{content:""}.fa-face-grin-wink:before{content:""}.fa-grin-wink:before{content:""}.fa-ear-deaf:before{content:""}.fa-deaf:before{content:""}.fa-deafness:before{content:""}.fa-hard-of-hearing:before{content:""}.fa-road-circle-check:before{content:""}.fa-dice-five:before{content:""}.fa-square-rss:before{content:""}.fa-rss-square:before{content:""}.fa-land-mine-on:before{content:""}.fa-i-cursor:before{content:""}.fa-stamp:before{content:""}.fa-stairs:before{content:""}.fa-i:before{content:"I"}.fa-hryvnia-sign:before{content:""}.fa-hryvnia:before{content:""}.fa-pills:before{content:""}.fa-face-grin-wide:before{content:""}.fa-grin-alt:before{content:""}.fa-tooth:before{content:""}.fa-v:before{content:"V"}.fa-bangladeshi-taka-sign:before{content:""}.fa-bicycle:before{content:""}.fa-staff-snake:before{content:""}.fa-rod-asclepius:before{content:""}.fa-rod-snake:before{content:""}.fa-staff-aesculapius:before{content:""}.fa-head-side-cough-slash:before{content:""}.fa-truck-medical:before{content:""}.fa-ambulance:before{content:""}.fa-wheat-awn-circle-exclamation:before{content:""}.fa-snowman:before{content:""}.fa-mortar-pestle:before{content:""}.fa-road-barrier:before{content:""}.fa-school:before{content:""}.fa-igloo:before{content:""}.fa-joint:before{content:""}.fa-angle-right:before{content:""}.fa-horse:before{content:""}.fa-q:before{content:"Q"}.fa-g:before{content:"G"}.fa-notes-medical:before{content:""}.fa-temperature-half:before{content:""}.fa-temperature-2:before{content:""}.fa-thermometer-2:before{content:""}.fa-thermometer-half:before{content:""}.fa-dong-sign:before{content:""}.fa-capsules:before{content:""}.fa-poo-storm:before{content:""}.fa-poo-bolt:before{content:""}.fa-face-frown-open:before{content:""}.fa-frown-open:before{content:""}.fa-hand-point-up:before{content:""}.fa-money-bill:before{content:""}.fa-bookmark:before{content:""}.fa-align-justify:before{content:""}.fa-umbrella-beach:before{content:""}.fa-helmet-un:before{content:""}.fa-bullseye:before{content:""}.fa-bacon:before{content:""}.fa-hand-point-down:before{content:""}.fa-arrow-up-from-bracket:before{content:""}.fa-folder:before{content:""}.fa-folder-blank:before{content:""}.fa-file-waveform:before{content:""}.fa-file-medical-alt:before{content:""}.fa-radiation:before{content:""}.fa-chart-simple:before{content:""}.fa-mars-stroke:before{content:""}.fa-vial:before{content:""}.fa-gauge:before{content:""}.fa-dashboard:before{content:""}.fa-gauge-med:before{content:""}.fa-tachometer-alt-average:before{content:""}.fa-wand-magic-sparkles:before{content:""}.fa-magic-wand-sparkles:before{content:""}.fa-e:before{content:"E"}.fa-pen-clip:before{content:""}.fa-pen-alt:before{content:""}.fa-bridge-circle-exclamation:before{content:""}.fa-user:before{content:""}.fa-school-circle-check:before{content:""}.fa-dumpster:before{content:""}.fa-van-shuttle:before{content:""}.fa-shuttle-van:before{content:""}.fa-building-user:before{content:""}.fa-square-caret-left:before{content:""}.fa-caret-square-left:before{content:""}.fa-highlighter:before{content:""}.fa-key:before{content:""}.fa-bullhorn:before{content:""}.fa-globe:before{content:""}.fa-synagogue:before{content:""}.fa-person-half-dress:before{content:""}.fa-road-bridge:before{content:""}.fa-location-arrow:before{content:""}.fa-c:before{content:"C"}.fa-tablet-button:before{content:""}.fa-building-lock:before{content:""}.fa-pizza-slice:before{content:""}.fa-money-bill-wave:before{content:""}.fa-chart-area:before{content:""}.fa-area-chart:before{content:""}.fa-house-flag:before{content:""}.fa-person-circle-minus:before{content:""}.fa-ban:before{content:""}.fa-cancel:before{content:""}.fa-camera-rotate:before{content:""}.fa-spray-can-sparkles:before{content:""}.fa-air-freshener:before{content:""}.fa-star:before{content:""}.fa-repeat:before{content:""}.fa-cross:before{content:""}.fa-box:before{content:""}.fa-venus-mars:before{content:""}.fa-arrow-pointer:before{content:""}.fa-mouse-pointer:before{content:""}.fa-maximize:before{content:""}.fa-expand-arrows-alt:before{content:""}.fa-charging-station:before{content:""}.fa-shapes:before{content:""}.fa-triangle-circle-square:before{content:""}.fa-shuffle:before{content:""}.fa-random:before{content:""}.fa-person-running:before{content:""}.fa-running:before{content:""}.fa-mobile-retro:before{content:""}.fa-grip-lines-vertical:before{content:""}.fa-spider:before{content:""}.fa-hands-bound:before{content:""}.fa-file-invoice-dollar:before{content:""}.fa-plane-circle-exclamation:before{content:""}.fa-x-ray:before{content:""}.fa-spell-check:before{content:""}.fa-slash:before{content:""}.fa-computer-mouse:before{content:""}.fa-mouse:before{content:""}.fa-arrow-right-to-bracket:before{content:""}.fa-sign-in:before{content:""}.fa-shop-slash:before{content:""}.fa-store-alt-slash:before{content:""}.fa-server:before{content:""}.fa-virus-covid-slash:before{content:""}.fa-shop-lock:before{content:""}.fa-hourglass-start:before{content:""}.fa-hourglass-1:before{content:""}.fa-blender-phone:before{content:""}.fa-building-wheat:before{content:""}.fa-person-breastfeeding:before{content:""}.fa-right-to-bracket:before{content:""}.fa-sign-in-alt:before{content:""}.fa-venus:before{content:""}.fa-passport:before{content:""}.fa-heart-pulse:before{content:""}.fa-heartbeat:before{content:""}.fa-people-carry-box:before{content:""}.fa-people-carry:before{content:""}.fa-temperature-high:before{content:""}.fa-microchip:before{content:""}.fa-crown:before{content:""}.fa-weight-hanging:before{content:""}.fa-xmarks-lines:before{content:""}.fa-file-prescription:before{content:""}.fa-weight-scale:before{content:""}.fa-weight:before{content:""}.fa-user-group:before{content:""}.fa-user-friends:before{content:""}.fa-arrow-up-a-z:before{content:""}.fa-sort-alpha-up:before{content:""}.fa-chess-knight:before{content:""}.fa-face-laugh-squint:before{content:""}.fa-laugh-squint:before{content:""}.fa-wheelchair:before{content:""}.fa-circle-arrow-up:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-toggle-on:before{content:""}.fa-person-walking:before{content:""}.fa-walking:before{content:""}.fa-l:before{content:"L"}.fa-fire:before{content:""}.fa-bed-pulse:before{content:""}.fa-procedures:before{content:""}.fa-shuttle-space:before{content:""}.fa-space-shuttle:before{content:""}.fa-face-laugh:before{content:""}.fa-laugh:before{content:""}.fa-folder-open:before{content:""}.fa-heart-circle-plus:before{content:""}.fa-code-fork:before{content:""}.fa-city:before{content:""}.fa-microphone-lines:before{content:""}.fa-microphone-alt:before{content:""}.fa-pepper-hot:before{content:""}.fa-unlock:before{content:""}.fa-colon-sign:before{content:""}.fa-headset:before{content:""}.fa-store-slash:before{content:""}.fa-road-circle-xmark:before{content:""}.fa-user-minus:before{content:""}.fa-mars-stroke-up:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-champagne-glasses:before{content:""}.fa-glass-cheers:before{content:""}.fa-clipboard:before{content:""}.fa-house-circle-exclamation:before{content:""}.fa-file-arrow-up:before{content:""}.fa-file-upload:before{content:""}.fa-wifi:before{content:""}.fa-wifi-3:before{content:""}.fa-wifi-strong:before{content:""}.fa-bath:before{content:""}.fa-bathtub:before{content:""}.fa-underline:before{content:""}.fa-user-pen:before{content:""}.fa-user-edit:before{content:""}.fa-signature:before{content:""}.fa-stroopwafel:before{content:""}.fa-bold:before{content:""}.fa-anchor-lock:before{content:""}.fa-building-ngo:before{content:""}.fa-manat-sign:before{content:""}.fa-not-equal:before{content:""}.fa-border-top-left:before{content:""}.fa-border-style:before{content:""}.fa-map-location-dot:before{content:""}.fa-map-marked-alt:before{content:""}.fa-jedi:before{content:""}.fa-square-poll-vertical:before{content:""}.fa-poll:before{content:""}.fa-mug-hot:before{content:""}.fa-car-battery:before{content:""}.fa-battery-car:before{content:""}.fa-gift:before{content:""}.fa-dice-two:before{content:""}.fa-chess-queen:before{content:""}.fa-glasses:before{content:""}.fa-chess-board:before{content:""}.fa-building-circle-check:before{content:""}.fa-person-chalkboard:before{content:""}.fa-mars-stroke-right:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-hand-back-fist:before{content:""}.fa-hand-rock:before{content:""}.fa-square-caret-up:before{content:""}.fa-caret-square-up:before{content:""}.fa-cloud-showers-water:before{content:""}.fa-chart-bar:before{content:""}.fa-bar-chart:before{content:""}.fa-hands-bubbles:before{content:""}.fa-hands-wash:before{content:""}.fa-less-than-equal:before{content:""}.fa-train:before{content:""}.fa-eye-low-vision:before{content:""}.fa-low-vision:before{content:""}.fa-crow:before{content:""}.fa-sailboat:before{content:""}.fa-window-restore:before{content:""}.fa-square-plus:before{content:""}.fa-plus-square:before{content:""}.fa-torii-gate:before{content:""}.fa-frog:before{content:""}.fa-bucket:before{content:""}.fa-image:before{content:""}.fa-microphone:before{content:""}.fa-cow:before{content:""}.fa-caret-up:before{content:""}.fa-screwdriver:before{content:""}.fa-folder-closed:before{content:""}.fa-house-tsunami:before{content:""}.fa-square-nfi:before{content:""}.fa-arrow-up-from-ground-water:before{content:""}.fa-martini-glass:before{content:""}.fa-glass-martini-alt:before{content:""}.fa-rotate-left:before{content:""}.fa-rotate-back:before{content:""}.fa-rotate-backward:before{content:""}.fa-undo-alt:before{content:""}.fa-table-columns:before{content:""}.fa-columns:before{content:""}.fa-lemon:before{content:""}.fa-head-side-mask:before{content:""}.fa-handshake:before{content:""}.fa-gem:before{content:""}.fa-dolly:before{content:""}.fa-dolly-box:before{content:""}.fa-smoking:before{content:""}.fa-minimize:before{content:""}.fa-compress-arrows-alt:before{content:""}.fa-monument:before{content:""}.fa-snowplow:before{content:""}.fa-angles-right:before{content:""}.fa-angle-double-right:before{content:""}.fa-cannabis:before{content:""}.fa-circle-play:before{content:""}.fa-play-circle:before{content:""}.fa-tablets:before{content:""}.fa-ethernet:before{content:""}.fa-euro-sign:before{content:""}.fa-eur:before{content:""}.fa-euro:before{content:""}.fa-chair:before{content:""}.fa-circle-check:before{content:""}.fa-check-circle:before{content:""}.fa-circle-stop:before{content:""}.fa-stop-circle:before{content:""}.fa-compass-drafting:before{content:""}.fa-drafting-compass:before{content:""}.fa-plate-wheat:before{content:""}.fa-icicles:before{content:""}.fa-person-shelter:before{content:""}.fa-neuter:before{content:""}.fa-id-badge:before{content:""}.fa-marker:before{content:""}.fa-face-laugh-beam:before{content:""}.fa-laugh-beam:before{content:""}.fa-helicopter-symbol:before{content:""}.fa-universal-access:before{content:""}.fa-circle-chevron-up:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-lari-sign:before{content:""}.fa-volcano:before{content:""}.fa-person-walking-dashed-line-arrow-right:before{content:""}.fa-sterling-sign:before{content:""}.fa-gbp:before{content:""}.fa-pound-sign:before{content:""}.fa-viruses:before{content:""}.fa-square-person-confined:before{content:""}.fa-user-tie:before{content:""}.fa-arrow-down-long:before{content:""}.fa-long-arrow-down:before{content:""}.fa-tent-arrow-down-to-line:before{content:""}.fa-certificate:before{content:""}.fa-reply-all:before{content:""}.fa-mail-reply-all:before{content:""}.fa-suitcase:before{content:""}.fa-person-skating:before{content:""}.fa-skating:before{content:""}.fa-filter-circle-dollar:before{content:""}.fa-funnel-dollar:before{content:""}.fa-camera-retro:before{content:""}.fa-circle-arrow-down:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-file-import:before{content:""}.fa-arrow-right-to-file:before{content:""}.fa-square-arrow-up-right:before{content:""}.fa-external-link-square:before{content:""}.fa-box-open:before{content:""}.fa-scroll:before{content:""}.fa-spa:before{content:""}.fa-location-pin-lock:before{content:""}.fa-pause:before{content:""}.fa-hill-avalanche:before{content:""}.fa-temperature-empty:before{content:""}.fa-temperature-0:before{content:""}.fa-thermometer-0:before{content:""}.fa-thermometer-empty:before{content:""}.fa-bomb:before{content:""}.fa-registered:before{content:""}.fa-address-card:before{content:""}.fa-contact-card:before{content:""}.fa-vcard:before{content:""}.fa-scale-unbalanced-flip:before{content:""}.fa-balance-scale-right:before{content:""}.fa-subscript:before{content:""}.fa-diamond-turn-right:before{content:""}.fa-directions:before{content:""}.fa-burst:before{content:""}.fa-house-laptop:before{content:""}.fa-laptop-house:before{content:""}.fa-face-tired:before{content:""}.fa-tired:before{content:""}.fa-money-bills:before{content:""}.fa-smog:before{content:""}.fa-crutch:before{content:""}.fa-cloud-arrow-up:before{content:""}.fa-cloud-upload:before{content:""}.fa-cloud-upload-alt:before{content:""}.fa-palette:before{content:""}.fa-arrows-turn-right:before{content:""}.fa-vest:before{content:""}.fa-ferry:before{content:""}.fa-arrows-down-to-people:before{content:""}.fa-seedling:before{content:""}.fa-sprout:before{content:""}.fa-left-right:before{content:""}.fa-arrows-alt-h:before{content:""}.fa-boxes-packing:before{content:""}.fa-circle-arrow-left:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-group-arrows-rotate:before{content:""}.fa-bowl-food:before{content:""}.fa-candy-cane:before{content:""}.fa-arrow-down-wide-short:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-down:before{content:""}.fa-cloud-bolt:before{content:""}.fa-thunderstorm:before{content:""}.fa-text-slash:before{content:""}.fa-remove-format:before{content:""}.fa-face-smile-wink:before{content:""}.fa-smile-wink:before{content:""}.fa-file-word:before{content:""}.fa-file-powerpoint:before{content:""}.fa-arrows-left-right:before{content:""}.fa-arrows-h:before{content:""}.fa-house-lock:before{content:""}.fa-cloud-arrow-down:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-download-alt:before{content:""}.fa-children:before{content:""}.fa-chalkboard:before{content:""}.fa-blackboard:before{content:""}.fa-user-large-slash:before{content:""}.fa-user-alt-slash:before{content:""}.fa-envelope-open:before{content:""}.fa-handshake-simple-slash:before{content:""}.fa-handshake-alt-slash:before{content:""}.fa-mattress-pillow:before{content:""}.fa-guarani-sign:before{content:""}.fa-arrows-rotate:before{content:""}.fa-refresh:before{content:""}.fa-sync:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-cruzeiro-sign:before{content:""}.fa-greater-than-equal:before{content:""}.fa-shield-halved:before{content:""}.fa-shield-alt:before{content:""}.fa-book-atlas:before{content:""}.fa-atlas:before{content:""}.fa-virus:before{content:""}.fa-envelope-circle-check:before{content:""}.fa-layer-group:before{content:""}.fa-arrows-to-dot:before{content:""}.fa-archway:before{content:""}.fa-heart-circle-check:before{content:""}.fa-house-chimney-crack:before{content:""}.fa-house-damage:before{content:""}.fa-file-zipper:before{content:""}.fa-file-archive:before{content:""}.fa-square:before{content:""}.fa-martini-glass-empty:before{content:""}.fa-glass-martini:before{content:""}.fa-couch:before{content:""}.fa-cedi-sign:before{content:""}.fa-italic:before{content:""}.fa-table-cells-column-lock:before{content:""}.fa-church:before{content:""}.fa-comments-dollar:before{content:""}.fa-democrat:before{content:""}.fa-z:before{content:"Z"}.fa-person-skiing:before{content:""}.fa-skiing:before{content:""}.fa-road-lock:before{content:""}.fa-a:before{content:"A"}.fa-temperature-arrow-down:before{content:""}.fa-temperature-down:before{content:""}.fa-feather-pointed:before{content:""}.fa-feather-alt:before{content:""}.fa-p:before{content:"P"}.fa-snowflake:before{content:""}.fa-newspaper:before{content:""}.fa-rectangle-ad:before{content:""}.fa-ad:before{content:""}.fa-circle-arrow-right:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-filter-circle-xmark:before{content:""}.fa-locust:before{content:""}.fa-sort:before{content:""}.fa-unsorted:before{content:""}.fa-list-ol:before{content:""}.fa-list-1-2:before{content:""}.fa-list-numeric:before{content:""}.fa-person-dress-burst:before{content:""}.fa-money-check-dollar:before{content:""}.fa-money-check-alt:before{content:""}.fa-vector-square:before{content:""}.fa-bread-slice:before{content:""}.fa-language:before{content:""}.fa-face-kiss-wink-heart:before{content:""}.fa-kiss-wink-heart:before{content:""}.fa-filter:before{content:""}.fa-question:before{content:"?"}.fa-file-signature:before{content:""}.fa-up-down-left-right:before{content:""}.fa-arrows-alt:before{content:""}.fa-house-chimney-user:before{content:""}.fa-hand-holding-heart:before{content:""}.fa-puzzle-piece:before{content:""}.fa-money-check:before{content:""}.fa-star-half-stroke:before{content:""}.fa-star-half-alt:before{content:""}.fa-code:before{content:""}.fa-whiskey-glass:before{content:""}.fa-glass-whiskey:before{content:""}.fa-building-circle-exclamation:before{content:""}.fa-magnifying-glass-chart:before{content:""}.fa-arrow-up-right-from-square:before{content:""}.fa-external-link:before{content:""}.fa-cubes-stacked:before{content:""}.fa-won-sign:before{content:""}.fa-krw:before{content:""}.fa-won:before{content:""}.fa-virus-covid:before{content:""}.fa-austral-sign:before{content:""}.fa-f:before{content:"F"}.fa-leaf:before{content:""}.fa-road:before{content:""}.fa-taxi:before{content:""}.fa-cab:before{content:""}.fa-person-circle-plus:before{content:""}.fa-chart-pie:before{content:""}.fa-pie-chart:before{content:""}.fa-bolt-lightning:before{content:""}.fa-sack-xmark:before{content:""}.fa-file-excel:before{content:""}.fa-file-contract:before{content:""}.fa-fish-fins:before{content:""}.fa-building-flag:before{content:""}.fa-face-grin-beam:before{content:""}.fa-grin-beam:before{content:""}.fa-object-ungroup:before{content:""}.fa-poop:before{content:""}.fa-location-pin:before{content:""}.fa-map-marker:before{content:""}.fa-kaaba:before{content:""}.fa-toilet-paper:before{content:""}.fa-helmet-safety:before{content:""}.fa-hard-hat:before{content:""}.fa-hat-hard:before{content:""}.fa-eject:before{content:""}.fa-circle-right:before{content:""}.fa-arrow-alt-circle-right:before{content:""}.fa-plane-circle-check:before{content:""}.fa-face-rolling-eyes:before{content:""}.fa-meh-rolling-eyes:before{content:""}.fa-object-group:before{content:""}.fa-chart-line:before{content:""}.fa-line-chart:before{content:""}.fa-mask-ventilator:before{content:""}.fa-arrow-right:before{content:""}.fa-signs-post:before{content:""}.fa-map-signs:before{content:""}.fa-cash-register:before{content:""}.fa-person-circle-question:before{content:""}.fa-h:before{content:"H"}.fa-tarp:before{content:""}.fa-screwdriver-wrench:before{content:""}.fa-tools:before{content:""}.fa-arrows-to-eye:before{content:""}.fa-plug-circle-bolt:before{content:""}.fa-heart:before{content:""}.fa-mars-and-venus:before{content:""}.fa-house-user:before{content:""}.fa-home-user:before{content:""}.fa-dumpster-fire:before{content:""}.fa-house-crack:before{content:""}.fa-martini-glass-citrus:before{content:""}.fa-cocktail:before{content:""}.fa-face-surprise:before{content:""}.fa-surprise:before{content:""}.fa-bottle-water:before{content:""}.fa-circle-pause:before{content:""}.fa-pause-circle:before{content:""}.fa-toilet-paper-slash:before{content:""}.fa-apple-whole:before{content:""}.fa-apple-alt:before{content:""}.fa-kitchen-set:before{content:""}.fa-r:before{content:"R"}.fa-temperature-quarter:before{content:""}.fa-temperature-1:before{content:""}.fa-thermometer-1:before{content:""}.fa-thermometer-quarter:before{content:""}.fa-cube:before{content:""}.fa-bitcoin-sign:before{content:""}.fa-shield-dog:before{content:""}.fa-solar-panel:before{content:""}.fa-lock-open:before{content:""}.fa-elevator:before{content:""}.fa-money-bill-transfer:before{content:""}.fa-money-bill-trend-up:before{content:""}.fa-house-flood-water-circle-arrow-right:before{content:""}.fa-square-poll-horizontal:before{content:""}.fa-poll-h:before{content:""}.fa-circle:before{content:""}.fa-backward-fast:before{content:""}.fa-fast-backward:before{content:""}.fa-recycle:before{content:""}.fa-user-astronaut:before{content:""}.fa-plane-slash:before{content:""}.fa-trademark:before{content:""}.fa-basketball:before{content:""}.fa-basketball-ball:before{content:""}.fa-satellite-dish:before{content:""}.fa-circle-up:before{content:""}.fa-arrow-alt-circle-up:before{content:""}.fa-mobile-screen-button:before{content:""}.fa-mobile-alt:before{content:""}.fa-volume-high:before{content:""}.fa-volume-up:before{content:""}.fa-users-rays:before{content:""}.fa-wallet:before{content:""}.fa-clipboard-check:before{content:""}.fa-file-audio:before{content:""}.fa-burger:before{content:""}.fa-hamburger:before{content:""}.fa-wrench:before{content:""}.fa-bugs:before{content:""}.fa-rupee-sign:before{content:""}.fa-rupee:before{content:""}.fa-file-image:before{content:""}.fa-circle-question:before{content:""}.fa-question-circle:before{content:""}.fa-plane-departure:before{content:""}.fa-handshake-slash:before{content:""}.fa-book-bookmark:before{content:""}.fa-code-branch:before{content:""}.fa-hat-cowboy:before{content:""}.fa-bridge:before{content:""}.fa-phone-flip:before{content:""}.fa-phone-alt:before{content:""}.fa-truck-front:before{content:""}.fa-cat:before{content:""}.fa-anchor-circle-exclamation:before{content:""}.fa-truck-field:before{content:""}.fa-route:before{content:""}.fa-clipboard-question:before{content:""}.fa-panorama:before{content:""}.fa-comment-medical:before{content:""}.fa-teeth-open:before{content:""}.fa-file-circle-minus:before{content:""}.fa-tags:before{content:""}.fa-wine-glass:before{content:""}.fa-forward-fast:before{content:""}.fa-fast-forward:before{content:""}.fa-face-meh-blank:before{content:""}.fa-meh-blank:before{content:""}.fa-square-parking:before{content:""}.fa-parking:before{content:""}.fa-house-signal:before{content:""}.fa-bars-progress:before{content:""}.fa-tasks-alt:before{content:""}.fa-faucet-drip:before{content:""}.fa-cart-flatbed:before{content:""}.fa-dolly-flatbed:before{content:""}.fa-ban-smoking:before{content:""}.fa-smoking-ban:before{content:""}.fa-terminal:before{content:""}.fa-mobile-button:before{content:""}.fa-house-medical-flag:before{content:""}.fa-basket-shopping:before{content:""}.fa-shopping-basket:before{content:""}.fa-tape:before{content:""}.fa-bus-simple:before{content:""}.fa-bus-alt:before{content:""}.fa-eye:before{content:""}.fa-face-sad-cry:before{content:""}.fa-sad-cry:before{content:""}.fa-audio-description:before{content:""}.fa-person-military-to-person:before{content:""}.fa-file-shield:before{content:""}.fa-user-slash:before{content:""}.fa-pen:before{content:""}.fa-tower-observation:before{content:""}.fa-file-code:before{content:""}.fa-signal:before{content:""}.fa-signal-5:before{content:""}.fa-signal-perfect:before{content:""}.fa-bus:before{content:""}.fa-heart-circle-xmark:before{content:""}.fa-house-chimney:before{content:""}.fa-home-lg:before{content:""}.fa-window-maximize:before{content:""}.fa-face-frown:before{content:""}.fa-frown:before{content:""}.fa-prescription:before{content:""}.fa-shop:before{content:""}.fa-store-alt:before{content:""}.fa-floppy-disk:before{content:""}.fa-save:before{content:""}.fa-vihara:before{content:""}.fa-scale-unbalanced:before{content:""}.fa-balance-scale-left:before{content:""}.fa-sort-up:before{content:""}.fa-sort-asc:before{content:""}.fa-comment-dots:before{content:""}.fa-commenting:before{content:""}.fa-plant-wilt:before{content:""}.fa-diamond:before{content:""}.fa-face-grin-squint:before{content:""}.fa-grin-squint:before{content:""}.fa-hand-holding-dollar:before{content:""}.fa-hand-holding-usd:before{content:""}.fa-bacterium:before{content:""}.fa-hand-pointer:before{content:""}.fa-drum-steelpan:before{content:""}.fa-hand-scissors:before{content:""}.fa-hands-praying:before{content:""}.fa-praying-hands:before{content:""}.fa-arrow-rotate-right:before{content:""}.fa-arrow-right-rotate:before{content:""}.fa-arrow-rotate-forward:before{content:""}.fa-redo:before{content:""}.fa-biohazard:before{content:""}.fa-location-crosshairs:before{content:""}.fa-location:before{content:""}.fa-mars-double:before{content:""}.fa-child-dress:before{content:""}.fa-users-between-lines:before{content:""}.fa-lungs-virus:before{content:""}.fa-face-grin-tears:before{content:""}.fa-grin-tears:before{content:""}.fa-phone:before{content:""}.fa-calendar-xmark:before{content:""}.fa-calendar-times:before{content:""}.fa-child-reaching:before{content:""}.fa-head-side-virus:before{content:""}.fa-user-gear:before{content:""}.fa-user-cog:before{content:""}.fa-arrow-up-1-9:before{content:""}.fa-sort-numeric-up:before{content:""}.fa-door-closed:before{content:""}.fa-shield-virus:before{content:""}.fa-dice-six:before{content:""}.fa-mosquito-net:before{content:""}.fa-bridge-water:before{content:""}.fa-person-booth:before{content:""}.fa-text-width:before{content:""}.fa-hat-wizard:before{content:""}.fa-pen-fancy:before{content:""}.fa-person-digging:before{content:""}.fa-digging:before{content:""}.fa-trash:before{content:""}.fa-gauge-simple:before{content:""}.fa-gauge-simple-med:before{content:""}.fa-tachometer-average:before{content:""}.fa-book-medical:before{content:""}.fa-poo:before{content:""}.fa-quote-right:before{content:""}.fa-quote-right-alt:before{content:""}.fa-shirt:before{content:""}.fa-t-shirt:before{content:""}.fa-tshirt:before{content:""}.fa-cubes:before{content:""}.fa-divide:before{content:""}.fa-tenge-sign:before{content:""}.fa-tenge:before{content:""}.fa-headphones:before{content:""}.fa-hands-holding:before{content:""}.fa-hands-clapping:before{content:""}.fa-republican:before{content:""}.fa-arrow-left:before{content:""}.fa-person-circle-xmark:before{content:""}.fa-ruler:before{content:""}.fa-align-left:before{content:""}.fa-dice-d6:before{content:""}.fa-restroom:before{content:""}.fa-j:before{content:"J"}.fa-users-viewfinder:before{content:""}.fa-file-video:before{content:""}.fa-up-right-from-square:before{content:""}.fa-external-link-alt:before{content:""}.fa-table-cells:before{content:""}.fa-th:before{content:""}.fa-file-pdf:before{content:""}.fa-book-bible:before{content:""}.fa-bible:before{content:""}.fa-o:before{content:"O"}.fa-suitcase-medical:before{content:""}.fa-medkit:before{content:""}.fa-user-secret:before{content:""}.fa-otter:before{content:""}.fa-person-dress:before{content:""}.fa-female:before{content:""}.fa-comment-dollar:before{content:""}.fa-business-time:before{content:""}.fa-briefcase-clock:before{content:""}.fa-table-cells-large:before{content:""}.fa-th-large:before{content:""}.fa-book-tanakh:before{content:""}.fa-tanakh:before{content:""}.fa-phone-volume:before{content:""}.fa-volume-control-phone:before{content:""}.fa-hat-cowboy-side:before{content:""}.fa-clipboard-user:before{content:""}.fa-child:before{content:""}.fa-lira-sign:before{content:""}.fa-satellite:before{content:""}.fa-plane-lock:before{content:""}.fa-tag:before{content:""}.fa-comment:before{content:""}.fa-cake-candles:before{content:""}.fa-birthday-cake:before{content:""}.fa-cake:before{content:""}.fa-envelope:before{content:""}.fa-angles-up:before{content:""}.fa-angle-double-up:before{content:""}.fa-paperclip:before{content:""}.fa-arrow-right-to-city:before{content:""}.fa-ribbon:before{content:""}.fa-lungs:before{content:""}.fa-arrow-up-9-1:before{content:""}.fa-sort-numeric-up-alt:before{content:""}.fa-litecoin-sign:before{content:""}.fa-border-none:before{content:""}.fa-circle-nodes:before{content:""}.fa-parachute-box:before{content:""}.fa-indent:before{content:""}.fa-truck-field-un:before{content:""}.fa-hourglass:before{content:""}.fa-hourglass-empty:before{content:""}.fa-mountain:before{content:""}.fa-user-doctor:before{content:""}.fa-user-md:before{content:""}.fa-circle-info:before{content:""}.fa-info-circle:before{content:""}.fa-cloud-meatball:before{content:""}.fa-camera:before{content:""}.fa-camera-alt:before{content:""}.fa-square-virus:before{content:""}.fa-meteor:before{content:""}.fa-car-on:before{content:""}.fa-sleigh:before{content:""}.fa-arrow-down-1-9:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-down:before{content:""}.fa-hand-holding-droplet:before{content:""}.fa-hand-holding-water:before{content:""}.fa-water:before{content:""}.fa-calendar-check:before{content:""}.fa-braille:before{content:""}.fa-prescription-bottle-medical:before{content:""}.fa-prescription-bottle-alt:before{content:""}.fa-landmark:before{content:""}.fa-truck:before{content:""}.fa-crosshairs:before{content:""}.fa-person-cane:before{content:""}.fa-tent:before{content:""}.fa-vest-patches:before{content:""}.fa-check-double:before{content:""}.fa-arrow-down-a-z:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-down:before{content:""}.fa-money-bill-wheat:before{content:""}.fa-cookie:before{content:""}.fa-arrow-rotate-left:before{content:""}.fa-arrow-left-rotate:before{content:""}.fa-arrow-rotate-back:before{content:""}.fa-arrow-rotate-backward:before{content:""}.fa-undo:before{content:""}.fa-hard-drive:before{content:""}.fa-hdd:before{content:""}.fa-face-grin-squint-tears:before{content:""}.fa-grin-squint-tears:before{content:""}.fa-dumbbell:before{content:""}.fa-rectangle-list:before{content:""}.fa-list-alt:before{content:""}.fa-tarp-droplet:before{content:""}.fa-house-medical-circle-check:before{content:""}.fa-person-skiing-nordic:before{content:""}.fa-skiing-nordic:before{content:""}.fa-calendar-plus:before{content:""}.fa-plane-arrival:before{content:""}.fa-circle-left:before{content:""}.fa-arrow-alt-circle-left:before{content:""}.fa-train-subway:before{content:""}.fa-subway:before{content:""}.fa-chart-gantt:before{content:""}.fa-indian-rupee-sign:before{content:""}.fa-indian-rupee:before{content:""}.fa-inr:before{content:""}.fa-crop-simple:before{content:""}.fa-crop-alt:before{content:""}.fa-money-bill-1:before{content:""}.fa-money-bill-alt:before{content:""}.fa-left-long:before{content:""}.fa-long-arrow-alt-left:before{content:""}.fa-dna:before{content:""}.fa-virus-slash:before{content:""}.fa-minus:before{content:""}.fa-subtract:before{content:""}.fa-chess:before{content:""}.fa-arrow-left-long:before{content:""}.fa-long-arrow-left:before{content:""}.fa-plug-circle-check:before{content:""}.fa-street-view:before{content:""}.fa-franc-sign:before{content:""}.fa-volume-off:before{content:""}.fa-hands-asl-interpreting:before{content:""}.fa-american-sign-language-interpreting:before{content:""}.fa-asl-interpreting:before{content:""}.fa-hands-american-sign-language-interpreting:before{content:""}.fa-gear:before{content:""}.fa-cog:before{content:""}.fa-droplet-slash:before{content:""}.fa-tint-slash:before{content:""}.fa-mosque:before{content:""}.fa-mosquito:before{content:""}.fa-star-of-david:before{content:""}.fa-person-military-rifle:before{content:""}.fa-cart-shopping:before{content:""}.fa-shopping-cart:before{content:""}.fa-vials:before{content:""}.fa-plug-circle-plus:before{content:""}.fa-place-of-worship:before{content:""}.fa-grip-vertical:before{content:""}.fa-arrow-turn-up:before{content:""}.fa-level-up:before{content:""}.fa-u:before{content:"U"}.fa-square-root-variable:before{content:""}.fa-square-root-alt:before{content:""}.fa-clock:before{content:""}.fa-clock-four:before{content:""}.fa-backward-step:before{content:""}.fa-step-backward:before{content:""}.fa-pallet:before{content:""}.fa-faucet:before{content:""}.fa-baseball-bat-ball:before{content:""}.fa-s:before{content:"S"}.fa-timeline:before{content:""}.fa-keyboard:before{content:""}.fa-caret-down:before{content:""}.fa-house-chimney-medical:before{content:""}.fa-clinic-medical:before{content:""}.fa-temperature-three-quarters:before{content:""}.fa-temperature-3:before{content:""}.fa-thermometer-3:before{content:""}.fa-thermometer-three-quarters:before{content:""}.fa-mobile-screen:before{content:""}.fa-mobile-android-alt:before{content:""}.fa-plane-up:before{content:""}.fa-piggy-bank:before{content:""}.fa-battery-half:before{content:""}.fa-battery-3:before{content:""}.fa-mountain-city:before{content:""}.fa-coins:before{content:""}.fa-khanda:before{content:""}.fa-sliders:before{content:""}.fa-sliders-h:before{content:""}.fa-folder-tree:before{content:""}.fa-network-wired:before{content:""}.fa-map-pin:before{content:""}.fa-hamsa:before{content:""}.fa-cent-sign:before{content:""}.fa-flask:before{content:""}.fa-person-pregnant:before{content:""}.fa-wand-sparkles:before{content:""}.fa-ellipsis-vertical:before{content:""}.fa-ellipsis-v:before{content:""}.fa-ticket:before{content:""}.fa-power-off:before{content:""}.fa-right-long:before{content:""}.fa-long-arrow-alt-right:before{content:""}.fa-flag-usa:before{content:""}.fa-laptop-file:before{content:""}.fa-tty:before{content:""}.fa-teletype:before{content:""}.fa-diagram-next:before{content:""}.fa-person-rifle:before{content:""}.fa-house-medical-circle-exclamation:before{content:""}.fa-closed-captioning:before{content:""}.fa-person-hiking:before{content:""}.fa-hiking:before{content:""}.fa-venus-double:before{content:""}.fa-images:before{content:""}.fa-calculator:before{content:""}.fa-people-pulling:before{content:""}.fa-n:before{content:"N"}.fa-cable-car:before{content:""}.fa-tram:before{content:""}.fa-cloud-rain:before{content:""}.fa-building-circle-xmark:before{content:""}.fa-ship:before{content:""}.fa-arrows-down-to-line:before{content:""}.fa-download:before{content:""}.fa-face-grin:before{content:""}.fa-grin:before{content:""}.fa-delete-left:before{content:""}.fa-backspace:before{content:""}.fa-eye-dropper:before{content:""}.fa-eye-dropper-empty:before{content:""}.fa-eyedropper:before{content:""}.fa-file-circle-check:before{content:""}.fa-forward:before{content:""}.fa-mobile:before{content:""}.fa-mobile-android:before{content:""}.fa-mobile-phone:before{content:""}.fa-face-meh:before{content:""}.fa-meh:before{content:""}.fa-align-center:before{content:""}.fa-book-skull:before{content:""}.fa-book-dead:before{content:""}.fa-id-card:before{content:""}.fa-drivers-license:before{content:""}.fa-outdent:before{content:""}.fa-dedent:before{content:""}.fa-heart-circle-exclamation:before{content:""}.fa-house:before{content:""}.fa-home:before{content:""}.fa-home-alt:before{content:""}.fa-home-lg-alt:before{content:""}.fa-calendar-week:before{content:""}.fa-laptop-medical:before{content:""}.fa-b:before{content:"B"}.fa-file-medical:before{content:""}.fa-dice-one:before{content:""}.fa-kiwi-bird:before{content:""}.fa-arrow-right-arrow-left:before{content:""}.fa-exchange:before{content:""}.fa-rotate-right:before{content:""}.fa-redo-alt:before{content:""}.fa-rotate-forward:before{content:""}.fa-utensils:before{content:""}.fa-cutlery:before{content:""}.fa-arrow-up-wide-short:before{content:""}.fa-sort-amount-up:before{content:""}.fa-mill-sign:before{content:""}.fa-bowl-rice:before{content:""}.fa-skull:before{content:""}.fa-tower-broadcast:before{content:""}.fa-broadcast-tower:before{content:""}.fa-truck-pickup:before{content:""}.fa-up-long:before{content:""}.fa-long-arrow-alt-up:before{content:""}.fa-stop:before{content:""}.fa-code-merge:before{content:""}.fa-upload:before{content:""}.fa-hurricane:before{content:""}.fa-mound:before{content:""}.fa-toilet-portable:before{content:""}.fa-compact-disc:before{content:""}.fa-file-arrow-down:before{content:""}.fa-file-download:before{content:""}.fa-caravan:before{content:""}.fa-shield-cat:before{content:""}.fa-bolt:before{content:""}.fa-zap:before{content:""}.fa-glass-water:before{content:""}.fa-oil-well:before{content:""}.fa-vault:before{content:""}.fa-mars:before{content:""}.fa-toilet:before{content:""}.fa-plane-circle-xmark:before{content:""}.fa-yen-sign:before{content:""}.fa-cny:before{content:""}.fa-jpy:before{content:""}.fa-rmb:before{content:""}.fa-yen:before{content:""}.fa-ruble-sign:before{content:""}.fa-rouble:before{content:""}.fa-rub:before{content:""}.fa-ruble:before{content:""}.fa-sun:before{content:""}.fa-guitar:before{content:""}.fa-face-laugh-wink:before{content:""}.fa-laugh-wink:before{content:""}.fa-horse-head:before{content:""}.fa-bore-hole:before{content:""}.fa-industry:before{content:""}.fa-circle-down:before{content:""}.fa-arrow-alt-circle-down:before{content:""}.fa-arrows-turn-to-dots:before{content:""}.fa-florin-sign:before{content:""}.fa-arrow-down-short-wide:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-amount-down-alt:before{content:""}.fa-less-than:before{content:"<"}.fa-angle-down:before{content:""}.fa-car-tunnel:before{content:""}.fa-head-side-cough:before{content:""}.fa-grip-lines:before{content:""}.fa-thumbs-down:before{content:""}.fa-user-lock:before{content:""}.fa-arrow-right-long:before{content:""}.fa-long-arrow-right:before{content:""}.fa-anchor-circle-xmark:before{content:""}.fa-ellipsis:before{content:""}.fa-ellipsis-h:before{content:""}.fa-chess-pawn:before{content:""}.fa-kit-medical:before{content:""}.fa-first-aid:before{content:""}.fa-person-through-window:before{content:""}.fa-toolbox:before{content:""}.fa-hands-holding-circle:before{content:""}.fa-bug:before{content:""}.fa-credit-card:before{content:""}.fa-credit-card-alt:before{content:""}.fa-car:before{content:""}.fa-automobile:before{content:""}.fa-hand-holding-hand:before{content:""}.fa-book-open-reader:before{content:""}.fa-book-reader:before{content:""}.fa-mountain-sun:before{content:""}.fa-arrows-left-right-to-line:before{content:""}.fa-dice-d20:before{content:""}.fa-truck-droplet:before{content:""}.fa-file-circle-xmark:before{content:""}.fa-temperature-arrow-up:before{content:""}.fa-temperature-up:before{content:""}.fa-medal:before{content:""}.fa-bed:before{content:""}.fa-square-h:before{content:""}.fa-h-square:before{content:""}.fa-podcast:before{content:""}.fa-temperature-full:before{content:""}.fa-temperature-4:before{content:""}.fa-thermometer-4:before{content:""}.fa-thermometer-full:before{content:""}.fa-bell:before{content:""}.fa-superscript:before{content:""}.fa-plug-circle-xmark:before{content:""}.fa-star-of-life:before{content:""}.fa-phone-slash:before{content:""}.fa-paint-roller:before{content:""}.fa-handshake-angle:before{content:""}.fa-hands-helping:before{content:""}.fa-location-dot:before{content:""}.fa-map-marker-alt:before{content:""}.fa-file:before{content:""}.fa-greater-than:before{content:">"}.fa-person-swimming:before{content:""}.fa-swimmer:before{content:""}.fa-arrow-down:before{content:""}.fa-droplet:before{content:""}.fa-tint:before{content:""}.fa-eraser:before{content:""}.fa-earth-americas:before{content:""}.fa-earth:before{content:""}.fa-earth-america:before{content:""}.fa-globe-americas:before{content:""}.fa-person-burst:before{content:""}.fa-dove:before{content:""}.fa-battery-empty:before{content:""}.fa-battery-0:before{content:""}.fa-socks:before{content:""}.fa-inbox:before{content:""}.fa-section:before{content:""}.fa-gauge-high:before{content:""}.fa-tachometer-alt:before{content:""}.fa-tachometer-alt-fast:before{content:""}.fa-envelope-open-text:before{content:""}.fa-hospital:before{content:""}.fa-hospital-alt:before{content:""}.fa-hospital-wide:before{content:""}.fa-wine-bottle:before{content:""}.fa-chess-rook:before{content:""}.fa-bars-staggered:before{content:""}.fa-reorder:before{content:""}.fa-stream:before{content:""}.fa-dharmachakra:before{content:""}.fa-hotdog:before{content:""}.fa-person-walking-with-cane:before{content:""}.fa-blind:before{content:""}.fa-drum:before{content:""}.fa-ice-cream:before{content:""}.fa-heart-circle-bolt:before{content:""}.fa-fax:before{content:""}.fa-paragraph:before{content:""}.fa-check-to-slot:before{content:""}.fa-vote-yea:before{content:""}.fa-star-half:before{content:""}.fa-boxes-stacked:before{content:""}.fa-boxes:before{content:""}.fa-boxes-alt:before{content:""}.fa-link:before{content:""}.fa-chain:before{content:""}.fa-ear-listen:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-tree-city:before{content:""}.fa-play:before{content:""}.fa-font:before{content:""}.fa-table-cells-row-lock:before{content:""}.fa-rupiah-sign:before{content:""}.fa-magnifying-glass:before{content:""}.fa-search:before{content:""}.fa-table-tennis-paddle-ball:before{content:""}.fa-ping-pong-paddle-ball:before{content:""}.fa-table-tennis:before{content:""}.fa-person-dots-from-line:before{content:""}.fa-diagnoses:before{content:""}.fa-trash-can-arrow-up:before{content:""}.fa-trash-restore-alt:before{content:""}.fa-naira-sign:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-walkie-talkie:before{content:""}.fa-file-pen:before{content:""}.fa-file-edit:before{content:""}.fa-receipt:before{content:""}.fa-square-pen:before{content:""}.fa-pen-square:before{content:""}.fa-pencil-square:before{content:""}.fa-suitcase-rolling:before{content:""}.fa-person-circle-exclamation:before{content:""}.fa-chevron-down:before{content:""}.fa-battery-full:before{content:""}.fa-battery:before{content:""}.fa-battery-5:before{content:""}.fa-skull-crossbones:before{content:""}.fa-code-compare:before{content:""}.fa-list-ul:before{content:""}.fa-list-dots:before{content:""}.fa-school-lock:before{content:""}.fa-tower-cell:before{content:""}.fa-down-long:before{content:""}.fa-long-arrow-alt-down:before{content:""}.fa-ranking-star:before{content:""}.fa-chess-king:before{content:""}.fa-person-harassing:before{content:""}.fa-brazilian-real-sign:before{content:""}.fa-landmark-dome:before{content:""}.fa-landmark-alt:before{content:""}.fa-arrow-up:before{content:""}.fa-tv:before{content:""}.fa-television:before{content:""}.fa-tv-alt:before{content:""}.fa-shrimp:before{content:""}.fa-list-check:before{content:""}.fa-tasks:before{content:""}.fa-jug-detergent:before{content:""}.fa-circle-user:before{content:""}.fa-user-circle:before{content:""}.fa-user-shield:before{content:""}.fa-wind:before{content:""}.fa-car-burst:before{content:""}.fa-car-crash:before{content:""}.fa-y:before{content:"Y"}.fa-person-snowboarding:before{content:""}.fa-snowboarding:before{content:""}.fa-truck-fast:before{content:""}.fa-shipping-fast:before{content:""}.fa-fish:before{content:""}.fa-user-graduate:before{content:""}.fa-circle-half-stroke:before{content:""}.fa-adjust:before{content:""}.fa-clapperboard:before{content:""}.fa-circle-radiation:before{content:""}.fa-radiation-alt:before{content:""}.fa-baseball:before{content:""}.fa-baseball-ball:before{content:""}.fa-jet-fighter-up:before{content:""}.fa-diagram-project:before{content:""}.fa-project-diagram:before{content:""}.fa-copy:before{content:""}.fa-volume-xmark:before{content:""}.fa-volume-mute:before{content:""}.fa-volume-times:before{content:""}.fa-hand-sparkles:before{content:""}.fa-grip:before{content:""}.fa-grip-horizontal:before{content:""}.fa-share-from-square:before{content:""}.fa-share-square:before{content:""}.fa-child-combatant:before{content:""}.fa-child-rifle:before{content:""}.fa-gun:before{content:""}.fa-square-phone:before{content:""}.fa-phone-square:before{content:""}.fa-plus:before{content:"+"}.fa-add:before{content:"+"}.fa-expand:before{content:""}.fa-computer:before{content:""}.fa-xmark:before{content:""}.fa-close:before{content:""}.fa-multiply:before{content:""}.fa-remove:before{content:""}.fa-times:before{content:""}.fa-arrows-up-down-left-right:before{content:""}.fa-arrows:before{content:""}.fa-chalkboard-user:before{content:""}.fa-chalkboard-teacher:before{content:""}.fa-peso-sign:before{content:""}.fa-building-shield:before{content:""}.fa-baby:before{content:""}.fa-users-line:before{content:""}.fa-quote-left:before{content:""}.fa-quote-left-alt:before{content:""}.fa-tractor:before{content:""}.fa-trash-arrow-up:before{content:""}.fa-trash-restore:before{content:""}.fa-arrow-down-up-lock:before{content:""}.fa-lines-leaning:before{content:""}.fa-ruler-combined:before{content:""}.fa-copyright:before{content:""}.fa-equals:before{content:"="}.fa-blender:before{content:""}.fa-teeth:before{content:""}.fa-shekel-sign:before{content:""}.fa-ils:before{content:""}.fa-shekel:before{content:""}.fa-sheqel:before{content:""}.fa-sheqel-sign:before{content:""}.fa-map:before{content:""}.fa-rocket:before{content:""}.fa-photo-film:before{content:""}.fa-photo-video:before{content:""}.fa-folder-minus:before{content:""}.fa-store:before{content:""}.fa-arrow-trend-up:before{content:""}.fa-plug-circle-minus:before{content:""}.fa-sign-hanging:before{content:""}.fa-sign:before{content:""}.fa-bezier-curve:before{content:""}.fa-bell-slash:before{content:""}.fa-tablet:before{content:""}.fa-tablet-android:before{content:""}.fa-school-flag:before{content:""}.fa-fill:before{content:""}.fa-angle-up:before{content:""}.fa-drumstick-bite:before{content:""}.fa-holly-berry:before{content:""}.fa-chevron-left:before{content:""}.fa-bacteria:before{content:""}.fa-hand-lizard:before{content:""}.fa-notdef:before{content:""}.fa-disease:before{content:""}.fa-briefcase-medical:before{content:""}.fa-genderless:before{content:""}.fa-chevron-right:before{content:""}.fa-retweet:before{content:""}.fa-car-rear:before{content:""}.fa-car-alt:before{content:""}.fa-pump-soap:before{content:""}.fa-video-slash:before{content:""}.fa-battery-quarter:before{content:""}.fa-battery-2:before{content:""}.fa-radio:before{content:""}.fa-baby-carriage:before{content:""}.fa-carriage-baby:before{content:""}.fa-traffic-light:before{content:""}.fa-thermometer:before{content:""}.fa-vr-cardboard:before{content:""}.fa-hand-middle-finger:before{content:""}.fa-percent:before{content:"%"}.fa-percentage:before{content:"%"}.fa-truck-moving:before{content:""}.fa-glass-water-droplet:before{content:""}.fa-display:before{content:""}.fa-face-smile:before{content:""}.fa-smile:before{content:""}.fa-thumbtack:before{content:""}.fa-thumb-tack:before{content:""}.fa-trophy:before{content:""}.fa-person-praying:before{content:""}.fa-pray:before{content:""}.fa-hammer:before{content:""}.fa-hand-peace:before{content:""}.fa-rotate:before{content:""}.fa-sync-alt:before{content:""}.fa-spinner:before{content:""}.fa-robot:before{content:""}.fa-peace:before{content:""}.fa-gears:before{content:""}.fa-cogs:before{content:""}.fa-warehouse:before{content:""}.fa-arrow-up-right-dots:before{content:""}.fa-splotch:before{content:""}.fa-face-grin-hearts:before{content:""}.fa-grin-hearts:before{content:""}.fa-dice-four:before{content:""}.fa-sim-card:before{content:""}.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-mercury:before{content:""}.fa-arrow-turn-down:before{content:""}.fa-level-down:before{content:""}.fa-person-falling-burst:before{content:""}.fa-award:before{content:""}.fa-ticket-simple:before{content:""}.fa-ticket-alt:before{content:""}.fa-building:before{content:""}.fa-angles-left:before{content:""}.fa-angle-double-left:before{content:""}.fa-qrcode:before{content:""}.fa-clock-rotate-left:before{content:""}.fa-history:before{content:""}.fa-face-grin-beam-sweat:before{content:""}.fa-grin-beam-sweat:before{content:""}.fa-file-export:before{content:""}.fa-arrow-right-from-file:before{content:""}.fa-shield:before{content:""}.fa-shield-blank:before{content:""}.fa-arrow-up-short-wide:before{content:""}.fa-sort-amount-up-alt:before{content:""}.fa-house-medical:before{content:""}.fa-golf-ball-tee:before{content:""}.fa-golf-ball:before{content:""}.fa-circle-chevron-left:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-house-chimney-window:before{content:""}.fa-pen-nib:before{content:""}.fa-tent-arrow-turn-left:before{content:""}.fa-tents:before{content:""}.fa-wand-magic:before{content:""}.fa-magic:before{content:""}.fa-dog:before{content:""}.fa-carrot:before{content:""}.fa-moon:before{content:""}.fa-wine-glass-empty:before{content:""}.fa-wine-glass-alt:before{content:""}.fa-cheese:before{content:""}.fa-yin-yang:before{content:""}.fa-music:before{content:""}.fa-code-commit:before{content:""}.fa-temperature-low:before{content:""}.fa-person-biking:before{content:""}.fa-biking:before{content:""}.fa-broom:before{content:""}.fa-shield-heart:before{content:""}.fa-gopuram:before{content:""}.fa-earth-oceania:before{content:""}.fa-globe-oceania:before{content:""}.fa-square-xmark:before{content:""}.fa-times-square:before{content:""}.fa-xmark-square:before{content:""}.fa-hashtag:before{content:"#"}.fa-up-right-and-down-left-from-center:before{content:""}.fa-expand-alt:before{content:""}.fa-oil-can:before{content:""}.fa-t:before{content:"T"}.fa-hippo:before{content:""}.fa-chart-column:before{content:""}.fa-infinity:before{content:""}.fa-vial-circle-check:before{content:""}.fa-person-arrow-down-to-line:before{content:""}.fa-voicemail:before{content:""}.fa-fan:before{content:""}.fa-person-walking-luggage:before{content:""}.fa-up-down:before{content:""}.fa-arrows-alt-v:before{content:""}.fa-cloud-moon-rain:before{content:""}.fa-calendar:before{content:""}.fa-trailer:before{content:""}.fa-bahai:before{content:""}.fa-haykal:before{content:""}.fa-sd-card:before{content:""}.fa-dragon:before{content:""}.fa-shoe-prints:before{content:""}.fa-circle-plus:before{content:""}.fa-plus-circle:before{content:""}.fa-face-grin-tongue-wink:before{content:""}.fa-grin-tongue-wink:before{content:""}.fa-hand-holding:before{content:""}.fa-plug-circle-exclamation:before{content:""}.fa-link-slash:before{content:""}.fa-chain-broken:before{content:""}.fa-chain-slash:before{content:""}.fa-unlink:before{content:""}.fa-clone:before{content:""}.fa-person-walking-arrow-loop-left:before{content:""}.fa-arrow-up-z-a:before{content:""}.fa-sort-alpha-up-alt:before{content:""}.fa-fire-flame-curved:before{content:""}.fa-fire-alt:before{content:""}.fa-tornado:before{content:""}.fa-file-circle-plus:before{content:""}.fa-book-quran:before{content:""}.fa-quran:before{content:""}.fa-anchor:before{content:""}.fa-border-all:before{content:""}.fa-face-angry:before{content:""}.fa-angry:before{content:""}.fa-cookie-bite:before{content:""}.fa-arrow-trend-down:before{content:""}.fa-rss:before{content:""}.fa-feed:before{content:""}.fa-draw-polygon:before{content:""}.fa-scale-balanced:before{content:""}.fa-balance-scale:before{content:""}.fa-gauge-simple-high:before{content:""}.fa-tachometer:before{content:""}.fa-tachometer-fast:before{content:""}.fa-shower:before{content:""}.fa-desktop:before{content:""}.fa-desktop-alt:before{content:""}.fa-m:before{content:"M"}.fa-table-list:before{content:""}.fa-th-list:before{content:""}.fa-comment-sms:before{content:""}.fa-sms:before{content:""}.fa-book:before{content:""}.fa-user-plus:before{content:""}.fa-check:before{content:""}.fa-battery-three-quarters:before{content:""}.fa-battery-4:before{content:""}.fa-house-circle-check:before{content:""}.fa-angle-left:before{content:""}.fa-diagram-successor:before{content:""}.fa-truck-arrow-right:before{content:""}.fa-arrows-split-up-and-left:before{content:""}.fa-hand-fist:before{content:""}.fa-fist-raised:before{content:""}.fa-cloud-moon:before{content:""}.fa-briefcase:before{content:""}.fa-person-falling:before{content:""}.fa-image-portrait:before{content:""}.fa-portrait:before{content:""}.fa-user-tag:before{content:""}.fa-rug:before{content:""}.fa-earth-europe:before{content:""}.fa-globe-europe:before{content:""}.fa-cart-flatbed-suitcase:before{content:""}.fa-luggage-cart:before{content:""}.fa-rectangle-xmark:before{content:""}.fa-rectangle-times:before{content:""}.fa-times-rectangle:before{content:""}.fa-window-close:before{content:""}.fa-baht-sign:before{content:""}.fa-book-open:before{content:""}.fa-book-journal-whills:before{content:""}.fa-journal-whills:before{content:""}.fa-handcuffs:before{content:""}.fa-triangle-exclamation:before{content:""}.fa-exclamation-triangle:before{content:""}.fa-warning:before{content:""}.fa-database:before{content:""}.fa-share:before{content:""}.fa-mail-forward:before{content:""}.fa-bottle-droplet:before{content:""}.fa-mask-face:before{content:""}.fa-hill-rockslide:before{content:""}.fa-right-left:before{content:""}.fa-exchange-alt:before{content:""}.fa-paper-plane:before{content:""}.fa-road-circle-exclamation:before{content:""}.fa-dungeon:before{content:""}.fa-align-right:before{content:""}.fa-money-bill-1-wave:before{content:""}.fa-money-bill-wave-alt:before{content:""}.fa-life-ring:before{content:""}.fa-hands:before{content:""}.fa-sign-language:before{content:""}.fa-signing:before{content:""}.fa-calendar-day:before{content:""}.fa-water-ladder:before{content:""}.fa-ladder-water:before{content:""}.fa-swimming-pool:before{content:""}.fa-arrows-up-down:before{content:""}.fa-arrows-v:before{content:""}.fa-face-grimace:before{content:""}.fa-grimace:before{content:""}.fa-wheelchair-move:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-turn-down:before{content:""}.fa-level-down-alt:before{content:""}.fa-person-walking-arrow-right:before{content:""}.fa-square-envelope:before{content:""}.fa-envelope-square:before{content:""}.fa-dice:before{content:""}.fa-bowling-ball:before{content:""}.fa-brain:before{content:""}.fa-bandage:before{content:""}.fa-band-aid:before{content:""}.fa-calendar-minus:before{content:""}.fa-circle-xmark:before{content:""}.fa-times-circle:before{content:""}.fa-xmark-circle:before{content:""}.fa-gifts:before{content:""}.fa-hotel:before{content:""}.fa-earth-asia:before{content:""}.fa-globe-asia:before{content:""}.fa-id-card-clip:before{content:""}.fa-id-card-alt:before{content:""}.fa-magnifying-glass-plus:before{content:""}.fa-search-plus:before{content:""}.fa-thumbs-up:before{content:""}.fa-user-clock:before{content:""}.fa-hand-dots:before{content:""}.fa-allergies:before{content:""}.fa-file-invoice:before{content:""}.fa-window-minimize:before{content:""}.fa-mug-saucer:before{content:""}.fa-coffee:before{content:""}.fa-brush:before{content:""}.fa-mask:before{content:""}.fa-magnifying-glass-minus:before{content:""}.fa-search-minus:before{content:""}.fa-ruler-vertical:before{content:""}.fa-user-large:before{content:""}.fa-user-alt:before{content:""}.fa-train-tram:before{content:""}.fa-user-nurse:before{content:""}.fa-syringe:before{content:""}.fa-cloud-sun:before{content:""}.fa-stopwatch-20:before{content:""}.fa-square-full:before{content:""}.fa-magnet:before{content:""}.fa-jar:before{content:""}.fa-note-sticky:before{content:""}.fa-sticky-note:before{content:""}.fa-bug-slash:before{content:""}.fa-arrow-up-from-water-pump:before{content:""}.fa-bone:before{content:""}.fa-user-injured:before{content:""}.fa-face-sad-tear:before{content:""}.fa-sad-tear:before{content:""}.fa-plane:before{content:""}.fa-tent-arrows-down:before{content:""}.fa-exclamation:before{content:"!"}.fa-arrows-spin:before{content:""}.fa-print:before{content:""}.fa-turkish-lira-sign:before{content:""}.fa-try:before{content:""}.fa-turkish-lira:before{content:""}.fa-dollar-sign:before{content:"$"}.fa-dollar:before{content:"$"}.fa-usd:before{content:"$"}.fa-x:before{content:"X"}.fa-magnifying-glass-dollar:before{content:""}.fa-search-dollar:before{content:""}.fa-users-gear:before{content:""}.fa-users-cog:before{content:""}.fa-person-military-pointing:before{content:""}.fa-building-columns:before{content:""}.fa-bank:before{content:""}.fa-institution:before{content:""}.fa-museum:before{content:""}.fa-university:before{content:""}.fa-umbrella:before{content:""}.fa-trowel:before{content:""}.fa-d:before{content:"D"}.fa-stapler:before{content:""}.fa-masks-theater:before{content:""}.fa-theater-masks:before{content:""}.fa-kip-sign:before{content:""}.fa-hand-point-left:before{content:""}.fa-handshake-simple:before{content:""}.fa-handshake-alt:before{content:""}.fa-jet-fighter:before{content:""}.fa-fighter-jet:before{content:""}.fa-square-share-nodes:before{content:""}.fa-share-alt-square:before{content:""}.fa-barcode:before{content:""}.fa-plus-minus:before{content:""}.fa-video:before{content:""}.fa-video-camera:before{content:""}.fa-graduation-cap:before{content:""}.fa-mortar-board:before{content:""}.fa-hand-holding-medical:before{content:""}.fa-person-circle-check:before{content:""}.fa-turn-up:before{content:""}.fa-level-up-alt:before{content:""}.sr-only,.fa-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.sr-only-focusable:not(:focus),.fa-sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:root,:host{--fa-style-family-brands: "Font Awesome 6 Brands";--fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(/build/assets/fa-brands-400-232c6f6a.woff2) format("woff2"),url(/build/assets/fa-brands-400-e28096fa.ttf) format("truetype")}.fab,.fa-brands{font-weight:400}.fa-monero:before{content:""}.fa-hooli:before{content:""}.fa-yelp:before{content:""}.fa-cc-visa:before{content:""}.fa-lastfm:before{content:""}.fa-shopware:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-aws:before{content:""}.fa-redhat:before{content:""}.fa-yoast:before{content:""}.fa-cloudflare:before{content:""}.fa-ups:before{content:""}.fa-pixiv:before{content:""}.fa-wpexplorer:before{content:""}.fa-dyalog:before{content:""}.fa-bity:before{content:""}.fa-stackpath:before{content:""}.fa-buysellads:before{content:""}.fa-first-order:before{content:""}.fa-modx:before{content:""}.fa-guilded:before{content:""}.fa-vnv:before{content:""}.fa-square-js:before{content:""}.fa-js-square:before{content:""}.fa-microsoft:before{content:""}.fa-qq:before{content:""}.fa-orcid:before{content:""}.fa-java:before{content:""}.fa-invision:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-centercode:before{content:""}.fa-glide-g:before{content:""}.fa-drupal:before{content:""}.fa-jxl:before{content:""}.fa-hire-a-helper:before{content:""}.fa-creative-commons-by:before{content:""}.fa-unity:before{content:""}.fa-whmcs:before{content:""}.fa-rocketchat:before{content:""}.fa-vk:before{content:""}.fa-untappd:before{content:""}.fa-mailchimp:before{content:""}.fa-css3-alt:before{content:""}.fa-square-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-vimeo-v:before{content:""}.fa-contao:before{content:""}.fa-square-font-awesome:before{content:""}.fa-deskpro:before{content:""}.fa-brave:before{content:""}.fa-sistrix:before{content:""}.fa-square-instagram:before{content:""}.fa-instagram-square:before{content:""}.fa-battle-net:before{content:""}.fa-the-red-yeti:before{content:""}.fa-square-hacker-news:before{content:""}.fa-hacker-news-square:before{content:""}.fa-edge:before{content:""}.fa-threads:before{content:""}.fa-napster:before{content:""}.fa-square-snapchat:before{content:""}.fa-snapchat-square:before{content:""}.fa-google-plus-g:before{content:""}.fa-artstation:before{content:""}.fa-markdown:before{content:""}.fa-sourcetree:before{content:""}.fa-google-plus:before{content:""}.fa-diaspora:before{content:""}.fa-foursquare:before{content:""}.fa-stack-overflow:before{content:""}.fa-github-alt:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-pagelines:before{content:""}.fa-algolia:before{content:""}.fa-red-river:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-safari:before{content:""}.fa-google:before{content:""}.fa-square-font-awesome-stroke:before{content:""}.fa-font-awesome-alt:before{content:""}.fa-atlassian:before{content:""}.fa-linkedin-in:before{content:""}.fa-digital-ocean:before{content:""}.fa-nimblr:before{content:""}.fa-chromecast:before{content:""}.fa-evernote:before{content:""}.fa-hacker-news:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-adversal:before{content:""}.fa-creative-commons:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-fonticons:before{content:""}.fa-weixin:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-codepen:before{content:""}.fa-git-alt:before{content:""}.fa-lyft:before{content:""}.fa-rev:before{content:""}.fa-windows:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-square-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-meetup:before{content:""}.fa-centos:before{content:""}.fa-adn:before{content:""}.fa-cloudsmith:before{content:""}.fa-opensuse:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-square-dribbble:before{content:""}.fa-dribbble-square:before{content:""}.fa-codiepie:before{content:""}.fa-node:before{content:""}.fa-mix:before{content:""}.fa-steam:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-scribd:before{content:""}.fa-debian:before{content:""}.fa-openid:before{content:""}.fa-instalod:before{content:""}.fa-expeditedssl:before{content:""}.fa-sellcast:before{content:""}.fa-square-twitter:before{content:""}.fa-twitter-square:before{content:""}.fa-r-project:before{content:""}.fa-delicious:before{content:""}.fa-freebsd:before{content:""}.fa-vuejs:before{content:""}.fa-accusoft:before{content:""}.fa-ioxhost:before{content:""}.fa-fonticons-fi:before{content:""}.fa-app-store:before{content:""}.fa-cc-mastercard:before{content:""}.fa-itunes-note:before{content:""}.fa-golang:before{content:""}.fa-kickstarter:before{content:""}.fa-square-kickstarter:before{content:""}.fa-grav:before{content:""}.fa-weibo:before{content:""}.fa-uncharted:before{content:""}.fa-firstdraft:before{content:""}.fa-square-youtube:before{content:""}.fa-youtube-square:before{content:""}.fa-wikipedia-w:before{content:""}.fa-wpressr:before{content:""}.fa-rendact:before{content:""}.fa-angellist:before{content:""}.fa-galactic-republic:before{content:""}.fa-nfc-directional:before{content:""}.fa-skype:before{content:""}.fa-joget:before{content:""}.fa-fedora:before{content:""}.fa-stripe-s:before{content:""}.fa-meta:before{content:""}.fa-laravel:before{content:""}.fa-hotjar:before{content:""}.fa-bluetooth-b:before{content:""}.fa-square-letterboxd:before{content:""}.fa-sticker-mule:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-hips:before{content:""}.fa-behance:before{content:""}.fa-reddit:before{content:""}.fa-discord:before{content:""}.fa-chrome:before{content:""}.fa-app-store-ios:before{content:""}.fa-cc-discover:before{content:""}.fa-wpbeginner:before{content:""}.fa-confluence:before{content:""}.fa-shoelace:before{content:""}.fa-mdb:before{content:""}.fa-dochub:before{content:""}.fa-accessible-icon:before{content:""}.fa-ebay:before{content:""}.fa-amazon:before{content:""}.fa-unsplash:before{content:""}.fa-yarn:before{content:""}.fa-square-steam:before{content:""}.fa-steam-square:before{content:""}.fa-500px:before{content:""}.fa-square-vimeo:before{content:""}.fa-vimeo-square:before{content:""}.fa-asymmetrik:before{content:""}.fa-font-awesome:before{content:""}.fa-font-awesome-flag:before{content:""}.fa-font-awesome-logo-full:before{content:""}.fa-gratipay:before{content:""}.fa-apple:before{content:""}.fa-hive:before{content:""}.fa-gitkraken:before{content:""}.fa-keybase:before{content:""}.fa-apple-pay:before{content:""}.fa-padlet:before{content:""}.fa-amazon-pay:before{content:""}.fa-square-github:before{content:""}.fa-github-square:before{content:""}.fa-stumbleupon:before{content:""}.fa-fedex:before{content:""}.fa-phoenix-framework:before{content:""}.fa-shopify:before{content:""}.fa-neos:before{content:""}.fa-square-threads:before{content:""}.fa-hackerrank:before{content:""}.fa-researchgate:before{content:""}.fa-swift:before{content:""}.fa-angular:before{content:""}.fa-speakap:before{content:""}.fa-angrycreative:before{content:""}.fa-y-combinator:before{content:""}.fa-empire:before{content:""}.fa-envira:before{content:""}.fa-google-scholar:before{content:""}.fa-square-gitlab:before{content:""}.fa-gitlab-square:before{content:""}.fa-studiovinari:before{content:""}.fa-pied-piper:before{content:""}.fa-wordpress:before{content:""}.fa-product-hunt:before{content:""}.fa-firefox:before{content:""}.fa-linode:before{content:""}.fa-goodreads:before{content:""}.fa-square-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-jsfiddle:before{content:""}.fa-sith:before{content:""}.fa-themeisle:before{content:""}.fa-page4:before{content:""}.fa-hashnode:before{content:""}.fa-react:before{content:""}.fa-cc-paypal:before{content:""}.fa-squarespace:before{content:""}.fa-cc-stripe:before{content:""}.fa-creative-commons-share:before{content:""}.fa-bitcoin:before{content:""}.fa-keycdn:before{content:""}.fa-opera:before{content:""}.fa-itch-io:before{content:""}.fa-umbraco:before{content:""}.fa-galactic-senate:before{content:""}.fa-ubuntu:before{content:""}.fa-draft2digital:before{content:""}.fa-stripe:before{content:""}.fa-houzz:before{content:""}.fa-gg:before{content:""}.fa-dhl:before{content:""}.fa-square-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-xing:before{content:""}.fa-blackberry:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-playstation:before{content:""}.fa-quinscape:before{content:""}.fa-less:before{content:""}.fa-blogger-b:before{content:""}.fa-opencart:before{content:""}.fa-vine:before{content:""}.fa-signal-messenger:before{content:""}.fa-paypal:before{content:""}.fa-gitlab:before{content:""}.fa-typo3:before{content:""}.fa-reddit-alien:before{content:""}.fa-yahoo:before{content:""}.fa-dailymotion:before{content:""}.fa-affiliatetheme:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-bootstrap:before{content:""}.fa-odnoklassniki:before{content:""}.fa-nfc-symbol:before{content:""}.fa-mintbit:before{content:""}.fa-ethereum:before{content:""}.fa-speaker-deck:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-patreon:before{content:""}.fa-avianex:before{content:""}.fa-ello:before{content:""}.fa-gofore:before{content:""}.fa-bimobject:before{content:""}.fa-brave-reverse:before{content:""}.fa-facebook-f:before{content:""}.fa-square-google-plus:before{content:""}.fa-google-plus-square:before{content:""}.fa-web-awesome:before{content:""}.fa-mandalorian:before{content:""}.fa-first-order-alt:before{content:""}.fa-osi:before{content:""}.fa-google-wallet:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-periscope:before{content:""}.fa-fulcrum:before{content:""}.fa-cloudscale:before{content:""}.fa-forumbee:before{content:""}.fa-mizuni:before{content:""}.fa-schlix:before{content:""}.fa-square-xing:before{content:""}.fa-xing-square:before{content:""}.fa-bandcamp:before{content:""}.fa-wpforms:before{content:""}.fa-cloudversify:before{content:""}.fa-usps:before{content:""}.fa-megaport:before{content:""}.fa-magento:before{content:""}.fa-spotify:before{content:""}.fa-optin-monster:before{content:""}.fa-fly:before{content:""}.fa-aviato:before{content:""}.fa-itunes:before{content:""}.fa-cuttlefish:before{content:""}.fa-blogger:before{content:""}.fa-flickr:before{content:""}.fa-viber:before{content:""}.fa-soundcloud:before{content:""}.fa-digg:before{content:""}.fa-tencent-weibo:before{content:""}.fa-letterboxd:before{content:""}.fa-symfony:before{content:""}.fa-maxcdn:before{content:""}.fa-etsy:before{content:""}.fa-facebook-messenger:before{content:""}.fa-audible:before{content:""}.fa-think-peaks:before{content:""}.fa-bilibili:before{content:""}.fa-erlang:before{content:""}.fa-x-twitter:before{content:""}.fa-cotton-bureau:before{content:""}.fa-dashcube:before{content:""}.fa-42-group:before{content:""}.fa-innosoft:before{content:""}.fa-stack-exchange:before{content:""}.fa-elementor:before{content:""}.fa-square-pied-piper:before{content:""}.fa-pied-piper-square:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-palfed:before{content:""}.fa-superpowers:before{content:""}.fa-resolving:before{content:""}.fa-xbox:before{content:""}.fa-square-web-awesome-stroke:before{content:""}.fa-searchengin:before{content:""}.fa-tiktok:before{content:""}.fa-square-facebook:before{content:""}.fa-facebook-square:before{content:""}.fa-renren:before{content:""}.fa-linux:before{content:""}.fa-glide:before{content:""}.fa-linkedin:before{content:""}.fa-hubspot:before{content:""}.fa-deploydog:before{content:""}.fa-twitch:before{content:""}.fa-ravelry:before{content:""}.fa-mixer:before{content:""}.fa-square-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-vimeo:before{content:""}.fa-mendeley:before{content:""}.fa-uniregistry:before{content:""}.fa-figma:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-dropbox:before{content:""}.fa-instagram:before{content:""}.fa-cmplid:before{content:""}.fa-upwork:before{content:""}.fa-facebook:before{content:""}.fa-gripfire:before{content:""}.fa-jedi-order:before{content:""}.fa-uikit:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-phabricator:before{content:""}.fa-ussunnah:before{content:""}.fa-earlybirds:before{content:""}.fa-trade-federation:before{content:""}.fa-autoprefixer:before{content:""}.fa-whatsapp:before{content:""}.fa-square-upwork:before{content:""}.fa-slideshare:before{content:""}.fa-google-play:before{content:""}.fa-viadeo:before{content:""}.fa-line:before{content:""}.fa-google-drive:before{content:""}.fa-servicestack:before{content:""}.fa-simplybuilt:before{content:""}.fa-bitbucket:before{content:""}.fa-imdb:before{content:""}.fa-deezer:before{content:""}.fa-raspberry-pi:before{content:""}.fa-jira:before{content:""}.fa-docker:before{content:""}.fa-screenpal:before{content:""}.fa-bluetooth:before{content:""}.fa-gitter:before{content:""}.fa-d-and-d:before{content:""}.fa-microblog:before{content:""}.fa-cc-diners-club:before{content:""}.fa-gg-circle:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-kickstarter-k:before{content:""}.fa-yandex:before{content:""}.fa-readme:before{content:""}.fa-html5:before{content:""}.fa-sellsy:before{content:""}.fa-square-web-awesome:before{content:""}.fa-sass:before{content:""}.fa-wirsindhandwerk:before{content:""}.fa-wsh:before{content:""}.fa-buromobelexperte:before{content:""}.fa-salesforce:before{content:""}.fa-octopus-deploy:before{content:""}.fa-medapps:before{content:""}.fa-ns8:before{content:""}.fa-pinterest-p:before{content:""}.fa-apper:before{content:""}.fa-fort-awesome:before{content:""}.fa-waze:before{content:""}.fa-bluesky:before{content:""}.fa-cc-jcb:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-rust:before{content:""}.fa-wix:before{content:""}.fa-square-behance:before{content:""}.fa-behance-square:before{content:""}.fa-supple:before{content:""}.fa-webflow:before{content:""}.fa-rebel:before{content:""}.fa-css3:before{content:""}.fa-staylinked:before{content:""}.fa-kaggle:before{content:""}.fa-space-awesome:before{content:""}.fa-deviantart:before{content:""}.fa-cpanel:before{content:""}.fa-goodreads-g:before{content:""}.fa-square-git:before{content:""}.fa-git-square:before{content:""}.fa-square-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-trello:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-get-pocket:before{content:""}.fa-perbyte:before{content:""}.fa-grunt:before{content:""}.fa-weebly:before{content:""}.fa-connectdevelop:before{content:""}.fa-leanpub:before{content:""}.fa-black-tie:before{content:""}.fa-themeco:before{content:""}.fa-python:before{content:""}.fa-android:before{content:""}.fa-bots:before{content:""}.fa-free-code-camp:before{content:""}.fa-hornbill:before{content:""}.fa-js:before{content:""}.fa-ideal:before{content:""}.fa-git:before{content:""}.fa-dev:before{content:""}.fa-sketch:before{content:""}.fa-yandex-international:before{content:""}.fa-cc-amex:before{content:""}.fa-uber:before{content:""}.fa-github:before{content:""}.fa-php:before{content:""}.fa-alipay:before{content:""}.fa-youtube:before{content:""}.fa-skyatlas:before{content:""}.fa-firefox-browser:before{content:""}.fa-replyd:before{content:""}.fa-suse:before{content:""}.fa-jenkins:before{content:""}.fa-twitter:before{content:""}.fa-rockrms:before{content:""}.fa-pinterest:before{content:""}.fa-buffer:before{content:""}.fa-npm:before{content:""}.fa-yammer:before{content:""}.fa-btc:before{content:""}.fa-dribbble:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-internet-explorer:before{content:""}.fa-stubber:before{content:""}.fa-telegram:before{content:""}.fa-telegram-plane:before{content:""}.fa-old-republic:before{content:""}.fa-odysee:before{content:""}.fa-square-whatsapp:before{content:""}.fa-whatsapp-square:before{content:""}.fa-node-js:before{content:""}.fa-edge-legacy:before{content:""}.fa-slack:before{content:""}.fa-slack-hash:before{content:""}.fa-medrt:before{content:""}.fa-usb:before{content:""}.fa-tumblr:before{content:""}.fa-vaadin:before{content:""}.fa-quora:before{content:""}.fa-square-x-twitter:before{content:""}.fa-reacteurope:before{content:""}.fa-medium:before{content:""}.fa-medium-m:before{content:""}.fa-amilia:before{content:""}.fa-mixcloud:before{content:""}.fa-flipboard:before{content:""}.fa-viacoin:before{content:""}.fa-critical-role:before{content:""}.fa-sitrox:before{content:""}.fa-discourse:before{content:""}.fa-joomla:before{content:""}.fa-mastodon:before{content:""}.fa-airbnb:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-buy-n-large:before{content:""}.fa-gulp:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-strava:before{content:""}.fa-ember:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-teamspeak:before{content:""}.fa-pushed:before{content:""}.fa-wordpress-simple:before{content:""}.fa-nutritionix:before{content:""}.fa-wodu:before{content:""}.fa-google-pay:before{content:""}.fa-intercom:before{content:""}.fa-zhihu:before{content:""}.fa-korvue:before{content:""}.fa-pix:before{content:""}.fa-steam-symbol:before{content:""}:root,:host{--fa-style-family-classic: "Font Awesome 6 Free";--fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(/build/assets/fa-regular-400-c27da6f8.woff2) format("woff2"),url(/build/assets/fa-regular-400-9174757e.ttf) format("truetype")}.far,.fa-regular{font-weight:400}:root,:host{--fa-style-family-classic: "Font Awesome 6 Free";--fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(/build/assets/fa-solid-900-ae17c16a.woff2) format("woff2"),url(/build/assets/fa-solid-900-b4990d0d.ttf) format("truetype")}.fas,.fa-solid{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(/build/assets/fa-brands-400-232c6f6a.woff2) format("woff2"),url(/build/assets/fa-brands-400-e28096fa.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(/build/assets/fa-solid-900-ae17c16a.woff2) format("woff2"),url(/build/assets/fa-solid-900-b4990d0d.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(/build/assets/fa-regular-400-c27da6f8.woff2) format("woff2"),url(/build/assets/fa-regular-400-9174757e.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-solid-900-ae17c16a.woff2) format("woff2"),url(/build/assets/fa-solid-900-b4990d0d.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-brands-400-232c6f6a.woff2) format("woff2"),url(/build/assets/fa-brands-400-e28096fa.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-regular-400-c27da6f8.woff2) format("woff2"),url(/build/assets/fa-regular-400-9174757e.ttf) format("truetype");unicode-range:U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-v4compatibility-c7a869fa.woff2) format("woff2"),url(/build/assets/fa-v4compatibility-ff8f525f.ttf) format("truetype");unicode-range:U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A}/*! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}progress{vertical-align:initial}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}[role=button],button{cursor:pointer}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.dz-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.dz-mb-2{margin-bottom:.5rem}.dz-mb-4{margin-bottom:1rem}.dz-mr-3{margin-right:.75rem}.dz-mt-2{margin-top:.5rem}.dz-mt-5{margin-top:1.25rem}.dz-flex{display:flex}.dz-hidden{display:none}.dz-h-14{height:3.5rem}.dz-h-5{height:1.25rem}.dz-h-6{height:1.5rem}.dz-h-8{height:2rem}.dz-h-auto{height:auto}.dz-h-full{height:100%}.dz-w-14{width:3.5rem}.dz-w-5{width:1.25rem}.dz-w-6{width:1.5rem}.dz-w-8{width:2rem}.dz-w-full{width:100%}.dz-max-w-2xl{max-width:42rem}.dz-flex-none{flex:none}@keyframes dz-spin{to{transform:rotate(1turn)}}.dz-animate-spin{animation:dz-spin 1s linear infinite}.dz-cursor-pointer{cursor:pointer}.dz-flex-col{flex-direction:column}.dz-flex-wrap{flex-wrap:wrap}.dz-items-start{align-items:flex-start}.dz-items-center{align-items:center}.dz-justify-start{justify-content:flex-start}.dz-justify-center{justify-content:center}.dz-justify-between{justify-content:space-between}.dz-gap-1{gap:.25rem}.dz-gap-2{gap:.5rem}.dz-gap-3{gap:.75rem}.dz-gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.dz-gap-y-2{row-gap:.5rem}.dz-overflow-hidden{overflow:hidden}.dz-rounded{border-radius:.25rem}.dz-border{border-width:1px}.dz-border-dashed{border-style:dashed}.dz-border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.dz-border-gray-500{--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}.dz-bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.dz-bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.dz-bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.dz-bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.dz-fill-blue-600{fill:#2563eb}.dz-object-fill{-o-object-fit:fill;object-fit:fill}.dz-p-10{padding:2.5rem}.dz-p-4{padding:1rem}.dz-py-8{padding-top:2rem;padding-bottom:2rem}.dz-text-center{text-align:center}.dz-text-lg{font-size:1.125rem;line-height:1.75rem}.dz-text-sm{font-size:.875rem;line-height:1.25rem}.dz-font-medium{font-weight:500}.dz-font-semibold{font-weight:600}.dz-text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.dz-text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.dz-text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.dz-text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.dz-text-red-400{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.dz-text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.dz-text-red-800{--tw-text-opacity:1;color:rgb(153 27 27/var(--tw-text-opacity))}.dz-text-slate-900{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dz-antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (prefers-color-scheme:dark){.dark\:dz-border-gray-600{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.dark\:dz-border-gray-700{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.dark\:dz-bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark\:dz-bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.dark\:dz-bg-red-600{--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.dark\:dz-text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.dark\:dz-text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.dark\:dz-text-red-100{--tw-text-opacity:1;color:rgb(254 226 226/var(--tw-text-opacity))}.dark\:dz-text-red-200{--tw-text-opacity:1;color:rgb(254 202 202/var(--tw-text-opacity))}.dark\:dz-text-slate-100{--tw-text-opacity:1;color:rgb(241 245 249/var(--tw-text-opacity))}.dark\:dz-text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark\:hover\:dz-border-gray-500:hover{--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}}.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::-moz-selection{background:transparent}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px #000000a6;border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px #0006;background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(/build/assets/layers-1dbbe9d0.png);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(/build/assets/layers-2x-066daca8.png);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(/build/assets/marker-icon-574c3a5c.png)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:white;color:#333;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}[type=text],input:where(:not([type])),[type=email],[type=url],[type=password],[type=number],[type=date],[type=datetime-local],[type=month],[type=search],[type=tel],[type=time],[type=week],[multiple],textarea,select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--tw-shadow: 0 0 #0000}[type=text]:focus,input:where(:not([type])):focus,[type=email]:focus,[type=url]:focus,[type=password]:focus,[type=number]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=month]:focus,[type=search]:focus,[type=tel]:focus,[type=time]:focus,[type=week]:focus,[multiple]:focus,textarea:focus,select:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-color:#2563eb}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple],[size]:where(select:not([size="1"])){background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow: 0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 2px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}@media (forced-colors: active){[type=checkbox]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=radio]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}@media (forced-colors: active){[type=radio]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:checked:hover,[type=checkbox]:checked:focus,[type=radio]:checked:hover,[type=radio]:checked:focus{border-color:transparent;background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}@media (forced-colors: active){[type=checkbox]:indeterminate{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:indeterminate:hover,[type=checkbox]:indeterminate:focus{border-color:transparent;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.prose{color:var(--tw-prose-body);max-width:65ch}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);text-decoration:underline;font-weight:500}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal;margin-top:1.25em;margin-bottom:1.25em;padding-left:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:disc;margin-top:1.25em;margin-bottom:1.25em;padding-left:1.625em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{font-weight:400;color:var(--tw-prose-counters)}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-style:italic;color:var(--tw-prose-quotes);border-left-width:.25rem;border-left-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-left:1em}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:900;color:inherit}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:800;color:inherit}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){display:block;margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-family:inherit;color:var(--tw-prose-kbd);box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);font-size:.875em;border-radius:.3125rem;padding:.1875em .375em}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-weight:600;font-size:.875em}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);overflow-x:auto;font-weight:400;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding:.8571429em 1.1428571em}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){width:100%;table-layout:auto;text-align:left;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;vertical-align:bottom;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose{--tw-prose-body: #374151;--tw-prose-headings: #111827;--tw-prose-lead: #4b5563;--tw-prose-links: #111827;--tw-prose-bold: #111827;--tw-prose-counters: #6b7280;--tw-prose-bullets: #d1d5db;--tw-prose-hr: #e5e7eb;--tw-prose-quotes: #111827;--tw-prose-quote-borders: #e5e7eb;--tw-prose-captions: #6b7280;--tw-prose-kbd: #111827;--tw-prose-kbd-shadows: 17 24 39;--tw-prose-code: #111827;--tw-prose-pre-code: #e5e7eb;--tw-prose-pre-bg: #1f2937;--tw-prose-th-borders: #d1d5db;--tw-prose-td-borders: #e5e7eb;--tw-prose-invert-body: #d1d5db;--tw-prose-invert-headings: #fff;--tw-prose-invert-lead: #9ca3af;--tw-prose-invert-links: #fff;--tw-prose-invert-bold: #fff;--tw-prose-invert-counters: #9ca3af;--tw-prose-invert-bullets: #4b5563;--tw-prose-invert-hr: #374151;--tw-prose-invert-quotes: #f3f4f6;--tw-prose-invert-quote-borders: #374151;--tw-prose-invert-captions: #9ca3af;--tw-prose-invert-kbd: #fff;--tw-prose-invert-kbd-shadows: 255 255 255;--tw-prose-invert-code: #fff;--tw-prose-invert-pre-code: #d1d5db;--tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);--tw-prose-invert-th-borders: #4b5563;--tw-prose-invert-td-borders: #374151;font-size:1rem;line-height:1.75}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:.375em}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>*:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>*:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>*:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>*:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-left:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{top:0;right:0;bottom:0;left:0}.bottom-0{bottom:0}.end-0{inset-inline-end:0px}.left-0{left:0}.right-0{right:0}.start-0{inset-inline-start:0px}.top-0{top:0}.z-0{z-index:0}.z-10{z-index:10}.z-50{z-index:50}.col-span-1{grid-column:span 1 / span 1}.col-span-2{grid-column:span 2 / span 2}.col-span-3{grid-column:span 3 / span 3}.col-span-6{grid-column:span 6 / span 6}.m-2{margin:.5rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.-mx-8{margin-left:-2rem;margin-right:-2rem}.-my-2{margin-top:-.5rem;margin-bottom:-.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-top:.25rem;margin-bottom:.25rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.my-4{margin-top:1rem;margin-bottom:1rem}.-mb-8{margin-bottom:-2rem}.-me-0{margin-inline-end:-0px}.-me-0\.5{margin-inline-end:-.125rem}.-me-1{margin-inline-end:-.25rem}.-me-2{margin-inline-end:-.5rem}.-ml-px{margin-left:-1px}.-mr-0{margin-right:-0px}.-mr-0\.5{margin-right:-.125rem}.-mr-1{margin-right:-.25rem}.-mr-2{margin-right:-.5rem}.-mt-px{margin-top:-1px}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-10{margin-bottom:2.5rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.me-2{margin-inline-end:.5rem}.me-3{margin-inline-end:.75rem}.ml-1{margin-left:.25rem}.ml-12{margin-left:3rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.ml-6{margin-left:1.5rem}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.ms-1{margin-inline-start:.25rem}.ms-2{margin-inline-start:.5rem}.ms-3{margin-inline-start:.75rem}.ms-4{margin-inline-start:1rem}.ms-6{margin-inline-start:1.5rem}.mt-1{margin-top:.25rem}.mt-10{margin-top:2.5rem}.mt-16{margin-top:4rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.flow-root{display:flow-root}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-1{height:.25rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-20{height:5rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[200px\]{height:200px}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.min-h-screen{min-height:100vh}.w-0{width:0px}.w-1{width:.25rem}.w-1\/2{width:50%}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-12{width:3rem}.w-14{width:3.5rem}.w-16{width:4rem}.w-20{width:5rem}.w-3\/4{width:75%}.w-4{width:1rem}.w-48{width:12rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-60{width:15rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-\[75\%\]{width:75%}.w-auto{width:auto}.w-fit{width:-moz-fit-content;width:fit-content}.w-full{width:100%}.min-w-0{min-width:0px}.min-w-full{min-width:100%}.max-w-6xl{max-width:72rem}.max-w-7xl{max-width:80rem}.max-w-\[250px\]{max-width:250px}.max-w-\[300px\]{max-width:300px}.max-w-screen-xl{max-width:1280px}.max-w-sm{max-width:24rem}.max-w-xl{max-width:36rem}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-none{flex:none}.flex-shrink-0,.shrink-0{flex-shrink:0}.origin-top{transform-origin:top}.origin-top-left{transform-origin:top left}.origin-top-right{transform-origin:top right}.translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-2{--tw-translate-y: .5rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-4{--tw-translate-y: 1rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.list-inside{list-style-position:inside}.list-disc{list-style-type:disc}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-items-center{justify-items:center}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-x-1\.5{-moz-column-gap:.375rem;column-gap:.375rem}.gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.gap-y-2{row-gap:.5rem}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(2rem * var(--tw-space-x-reverse));margin-left:calc(2rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse: 0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.divide-dashed>:not([hidden])~:not([hidden]){border-style:dashed}.divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(243 244 246 / var(--tw-divide-opacity))}.divide-gray-200>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(229 231 235 / var(--tw-divide-opacity))}.divide-gray-300>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(209 213 219 / var(--tw-divide-opacity))}.divide-indigo-200>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(199 210 254 / var(--tw-divide-opacity))}.self-end{align-self:flex-end}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-scroll{overflow-x:scroll}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-xl{border-radius:.75rem}.rounded-b-none{border-bottom-right-radius:0;border-bottom-left-radius:0}.rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.border{border-width:1px}.border-0{border-width:0px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-l-4{border-left-width:4px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-dashed{border-style:dashed}.border-gray-100{--tw-border-opacity: 1;border-color:rgb(243 244 246 / var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity: 1;border-color:rgb(229 231 235 / var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.border-gray-400{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.border-indigo-400{--tw-border-opacity: 1;border-color:rgb(129 140 248 / var(--tw-border-opacity))}.border-indigo-500{--tw-border-opacity: 1;border-color:rgb(99 102 241 / var(--tw-border-opacity))}.border-slate-300{--tw-border-opacity: 1;border-color:rgb(203 213 225 / var(--tw-border-opacity))}.border-transparent{border-color:transparent}.bg-black\/25{background-color:#00000040}.bg-blue-500{--tw-bg-opacity: 1;background-color:rgb(59 130 246 / var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity))}.bg-gray-400{--tw-bg-opacity: 1;background-color:rgb(156 163 175 / var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity: 1;background-color:rgb(107 114 128 / var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.bg-green-100{--tw-bg-opacity: 1;background-color:rgb(220 252 231 / var(--tw-bg-opacity))}.bg-indigo-50{--tw-bg-opacity: 1;background-color:rgb(238 242 255 / var(--tw-bg-opacity))}.bg-indigo-500{--tw-bg-opacity: 1;background-color:rgb(99 102 241 / var(--tw-bg-opacity))}.bg-indigo-600{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity: 1;background-color:rgb(254 226 226 / var(--tw-bg-opacity))}.bg-red-200{--tw-bg-opacity: 1;background-color:rgb(254 202 202 / var(--tw-bg-opacity))}.bg-red-50{--tw-bg-opacity: 1;background-color:rgb(254 242 242 / var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.bg-red-600{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.bg-red-700{--tw-bg-opacity: 1;background-color:rgb(185 28 28 / var(--tw-bg-opacity))}.bg-red-800{--tw-bg-opacity: 1;background-color:rgb(153 27 27 / var(--tw-bg-opacity))}.bg-slate-100{--tw-bg-opacity: 1;background-color:rgb(241 245 249 / var(--tw-bg-opacity))}.bg-slate-300{--tw-bg-opacity: 1;background-color:rgb(203 213 225 / var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-yellow-500{--tw-bg-opacity: 1;background-color:rgb(234 179 8 / var(--tw-bg-opacity))}.bg-yellow-600{--tw-bg-opacity: 1;background-color:rgb(202 138 4 / var(--tw-bg-opacity))}.bg-opacity-25{--tw-bg-opacity: .25}.from-gray-700{--tw-gradient-from: #374151 var(--tw-gradient-from-position);--tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-gray-700\/50{--tw-gradient-from: rgb(55 65 81 / .5) var(--tw-gradient-from-position);--tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.via-transparent{--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to)}.bg-cover{background-size:cover}.bg-center{background-position:center}.bg-no-repeat{background-repeat:no-repeat}.fill-black{fill:#000}.fill-blue-600{fill:#2563eb}.fill-current{fill:currentColor}.fill-indigo-500{fill:#6366f1}.fill-red-100{fill:#fee2e2}.stroke-gray-400{stroke:#9ca3af}.stroke-gray-600{stroke:#4b5563}.stroke-red-500{stroke:#ef4444}.object-cover{-o-object-fit:cover;object-fit:cover}.object-fill{-o-object-fit:fill;object-fit:fill}.p-0{padding:0}.p-0\.5{padding:.125rem}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-0{padding-left:0;padding-right:0}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-0{padding-top:0;padding-bottom:0}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-8{padding-top:2rem;padding-bottom:2rem}.pb-1{padding-bottom:.25rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pe-4{padding-inline-end:1rem}.pl-10{padding-left:2.5rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pr-3{padding-right:.75rem}.pr-4{padding-right:1rem}.ps-3{padding-inline-start:.75rem}.pt-0{padding-top:0}.pt-0\.5{padding-top:.125rem}.pt-1{padding-top:.25rem}.pt-2{padding-top:.5rem}.pt-4{padding-top:1rem}.pt-5{padding-top:1.25rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-start{text-align:start}.text-end{text-align:end}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-relaxed{line-height:1.625}.leading-tight{line-height:1.25}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.text-black{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.text-green-400{--tw-text-opacity: 1;color:rgb(74 222 128 / var(--tw-text-opacity))}.text-green-500{--tw-text-opacity: 1;color:rgb(34 197 94 / var(--tw-text-opacity))}.text-green-600{--tw-text-opacity: 1;color:rgb(22 163 74 / var(--tw-text-opacity))}.text-green-700{--tw-text-opacity: 1;color:rgb(21 128 61 / var(--tw-text-opacity))}.text-indigo-500{--tw-text-opacity: 1;color:rgb(99 102 241 / var(--tw-text-opacity))}.text-indigo-600{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.text-indigo-700{--tw-text-opacity: 1;color:rgb(67 56 202 / var(--tw-text-opacity))}.text-red-400{--tw-text-opacity: 1;color:rgb(248 113 113 / var(--tw-text-opacity))}.text-red-500{--tw-text-opacity: 1;color:rgb(239 68 68 / var(--tw-text-opacity))}.text-red-600{--tw-text-opacity: 1;color:rgb(220 38 38 / var(--tw-text-opacity))}.text-red-700{--tw-text-opacity: 1;color:rgb(185 28 28 / var(--tw-text-opacity))}.text-red-800{--tw-text-opacity: 1;color:rgb(153 27 27 / var(--tw-text-opacity))}.text-slate-700{--tw-text-opacity: 1;color:rgb(51 65 85 / var(--tw-text-opacity))}.text-slate-800{--tw-text-opacity: 1;color:rgb(30 41 59 / var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity: 1;color:rgb(15 23 42 / var(--tw-text-opacity))}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-50{opacity:.5}.opacity-75{opacity:.75}.shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-2xl{--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-xl{--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-gray-500\/20{--tw-shadow-color: rgb(107 114 128 / .2);--tw-shadow: var(--tw-shadow-colored)}.outline-none{outline:2px solid transparent;outline-offset:2px}.ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-inset{--tw-ring-inset: inset}.ring-black{--tw-ring-opacity: 1;--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity))}.ring-gray-200{--tw-ring-opacity: 1;--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity))}.ring-gray-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity))}.ring-white{--tw-ring-opacity: 1;--tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity: .05}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-100{transition-duration:.1s}.duration-150{transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-75{transition-duration:75ms}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}[x-cloak]{display:none}@media (prefers-color-scheme: dark){.dark\:prose-invert{--tw-prose-body: var(--tw-prose-invert-body);--tw-prose-headings: var(--tw-prose-invert-headings);--tw-prose-lead: var(--tw-prose-invert-lead);--tw-prose-links: var(--tw-prose-invert-links);--tw-prose-bold: var(--tw-prose-invert-bold);--tw-prose-counters: var(--tw-prose-invert-counters);--tw-prose-bullets: var(--tw-prose-invert-bullets);--tw-prose-hr: var(--tw-prose-invert-hr);--tw-prose-quotes: var(--tw-prose-invert-quotes);--tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);--tw-prose-captions: var(--tw-prose-invert-captions);--tw-prose-kbd: var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);--tw-prose-code: var(--tw-prose-invert-code);--tw-prose-pre-code: var(--tw-prose-invert-pre-code);--tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);--tw-prose-th-borders: var(--tw-prose-invert-th-borders);--tw-prose-td-borders: var(--tw-prose-invert-td-borders)}}.selection\:bg-red-500 *::-moz-selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:bg-red-500 *::selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:text-white *::-moz-selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.selection\:text-white *::selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.selection\:bg-red-500::-moz-selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:bg-red-500::selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:text-white::-moz-selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.selection\:text-white::selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.placeholder\:text-gray-400::-moz-placeholder{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.placeholder\:text-gray-400::placeholder{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:start-\[2px\]:after{content:var(--tw-content);inset-inline-start:2px}.after\:top-\[2px\]:after{content:var(--tw-content);top:2px}.after\:h-5:after{content:var(--tw-content);height:1.25rem}.after\:w-5:after{content:var(--tw-content);width:1.25rem}.after\:rounded-full:after{content:var(--tw-content);border-radius:9999px}.after\:border:after{content:var(--tw-content);border-width:1px}.after\:border-gray-300:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.after\:bg-white:after{content:var(--tw-content);--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.after\:transition-all:after{content:var(--tw-content);transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.after\:content-\[\'\'\]:after{--tw-content: "";content:var(--tw-content)}.read-only\:cursor-not-allowed:-moz-read-only{cursor:not-allowed}.read-only\:cursor-not-allowed:read-only{cursor:not-allowed}.read-only\:opacity-50:-moz-read-only{opacity:.5}.read-only\:opacity-50:read-only{opacity:.5}.hover\:rounded-lg:hover{border-radius:.5rem}.hover\:border-0:hover{border-width:0px}.hover\:border-gray-300:hover{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.hover\:bg-gray-700:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.hover\:bg-indigo-500:hover{--tw-bg-opacity: 1;background-color:rgb(99 102 241 / var(--tw-bg-opacity))}.hover\:bg-indigo-600:hover{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.hover\:bg-red-500:hover{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.hover\:bg-red-600:hover{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.hover\:bg-slate-50:hover{--tw-bg-opacity: 1;background-color:rgb(248 250 252 / var(--tw-bg-opacity))}.hover\:bg-yellow-600:hover{--tw-bg-opacity: 1;background-color:rgb(202 138 4 / var(--tw-bg-opacity))}.hover\:text-gray-400:hover{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.hover\:text-gray-500:hover{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.hover\:text-gray-800:hover{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.hover\:text-indigo-600:hover{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.hover\:text-indigo-900:hover{--tw-text-opacity: 1;color:rgb(49 46 129 / var(--tw-text-opacity))}.focus\:z-10:focus{z-index:10}.focus\:rounded-sm:focus{border-radius:.125rem}.focus\:border-none:focus{border-style:none}.focus\:border-blue-300:focus{--tw-border-opacity: 1;border-color:rgb(147 197 253 / var(--tw-border-opacity))}.focus\:border-gray-300:focus{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.focus\:border-indigo-500:focus{--tw-border-opacity: 1;border-color:rgb(99 102 241 / var(--tw-border-opacity))}.focus\:border-indigo-700:focus{--tw-border-opacity: 1;border-color:rgb(67 56 202 / var(--tw-border-opacity))}.focus\:bg-gray-100:focus{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.focus\:bg-gray-50:focus{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.focus\:bg-gray-700:focus{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.focus\:bg-indigo-100:focus{--tw-bg-opacity: 1;background-color:rgb(224 231 255 / var(--tw-bg-opacity))}.focus\:bg-indigo-600:focus{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.focus\:bg-red-600:focus{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.focus\:bg-yellow-600:focus{--tw-bg-opacity: 1;background-color:rgb(202 138 4 / var(--tw-bg-opacity))}.focus\:text-gray-500:focus{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.focus\:text-gray-700:focus{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.focus\:text-gray-800:focus{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.focus\:text-indigo-800:focus{--tw-text-opacity: 1;color:rgb(55 48 163 / var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:outline:focus{outline-style:solid}.focus\:outline-2:focus{outline-width:2px}.focus\:outline-red-500:focus{outline-color:#ef4444}.focus\:ring:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-inset:focus{--tw-ring-inset: inset}.focus\:ring-indigo-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity))}.focus\:ring-indigo-600:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity))}.focus\:ring-red-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity))}.focus\:ring-offset-2:focus{--tw-ring-offset-width: 2px}.focus-visible\:outline:focus-visible{outline-style:solid}.focus-visible\:outline-2:focus-visible{outline-width:2px}.focus-visible\:outline-offset-2:focus-visible{outline-offset:2px}.focus-visible\:outline-indigo-600:focus-visible{outline-color:#4f46e5}.focus-visible\:ring-2:focus-visible{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus-visible\:ring-blue-500:focus-visible{--tw-ring-opacity: 1;--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity))}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width: 2px}.active\:bg-gray-100:active{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.active\:bg-gray-50:active{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.active\:bg-gray-900:active{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.active\:bg-red-700:active{--tw-bg-opacity: 1;background-color:rgb(185 28 28 / var(--tw-bg-opacity))}.active\:text-gray-500:active{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.active\:text-gray-700:active{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.disabled\:cursor-default:disabled{cursor:default}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-gray-50:disabled{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.disabled\:bg-red-100:disabled{--tw-bg-opacity: 1;background-color:rgb(254 226 226 / var(--tw-bg-opacity))}.disabled\:text-gray-500:disabled{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.disabled\:opacity-0:disabled{opacity:0}.disabled\:opacity-25:disabled{opacity:.25}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:opacity-75:disabled{opacity:.75}.group:hover .group-hover\:stroke-gray-600{stroke:#4b5563}.group:hover .group-hover\:text-indigo-600{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.peer:checked~.peer-checked\:bg-indigo-600{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.peer:checked~.peer-checked\:after\:translate-x-full:after{content:var(--tw-content);--tw-translate-x: 100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:checked~.peer-checked\:after\:border-white:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity))}.peer:focus~.peer-focus\:outline-none{outline:2px solid transparent;outline-offset:2px}.peer:focus~.peer-focus\:ring-4{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.peer:focus~.peer-focus\:ring-indigo-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity))}:is([dir=ltr] .ltr\:origin-top-left){transform-origin:top left}:is([dir=ltr] .ltr\:origin-top-right){transform-origin:top right}:is([dir=rtl] .rtl\:origin-top-left){transform-origin:top left}:is([dir=rtl] .rtl\:origin-top-right){transform-origin:top right}:is([dir=rtl] .rtl\:flex-row-reverse){flex-direction:row-reverse}:is([dir=rtl] .peer:checked~.rtl\:peer-checked\:after\:-translate-x-full):after{content:var(--tw-content);--tw-translate-x: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@media (prefers-reduced-motion: no-preference){.motion-safe\:hover\:scale-\[1\.01\]:hover{--tw-scale-x: 1.01;--tw-scale-y: 1.01;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}}@media (prefers-color-scheme: dark){.dark\:border-gray-500{--tw-border-opacity: 1;border-color:rgb(107 114 128 / var(--tw-border-opacity))}.dark\:border-gray-600{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark\:border-gray-700{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark\:border-indigo-600{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity))}.dark\:bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity))}.dark\:bg-gray-700{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:bg-gray-800\/50{background-color:#1f293780}.dark\:bg-gray-900{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:bg-indigo-900\/50{background-color:#312e8180}.dark\:bg-red-600{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.dark\:bg-red-800\/20{background-color:#991b1b33}.dark\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--tw-gradient-stops))}.dark\:from-gray-700\/50{--tw-gradient-from: rgb(55 65 81 / .5) var(--tw-gradient-from-position);--tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.dark\:via-transparent{--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to)}.dark\:fill-indigo-200{fill:#c7d2fe}.dark\:fill-white{fill:#fff}.dark\:stroke-gray-600{stroke:#4b5563}.dark\:text-gray-100{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.dark\:text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark\:text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark\:text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.dark\:text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.dark\:text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.dark\:text-gray-800{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.dark\:text-green-400{--tw-text-opacity: 1;color:rgb(74 222 128 / var(--tw-text-opacity))}.dark\:text-indigo-300{--tw-text-opacity: 1;color:rgb(165 180 252 / var(--tw-text-opacity))}.dark\:text-red-100{--tw-text-opacity: 1;color:rgb(254 226 226 / var(--tw-text-opacity))}.dark\:text-red-200{--tw-text-opacity: 1;color:rgb(254 202 202 / var(--tw-text-opacity))}.dark\:text-red-400{--tw-text-opacity: 1;color:rgb(248 113 113 / var(--tw-text-opacity))}.dark\:text-slate-100{--tw-text-opacity: 1;color:rgb(241 245 249 / var(--tw-text-opacity))}.dark\:text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark\:shadow-none{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.dark\:ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.dark\:ring-inset{--tw-ring-inset: inset}.dark\:ring-white\/5{--tw-ring-color: rgb(255 255 255 / .05)}.dark\:hover\:border-gray-500:hover{--tw-border-opacity: 1;border-color:rgb(107 114 128 / var(--tw-border-opacity))}.dark\:hover\:border-gray-600:hover{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark\:hover\:border-gray-700:hover{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark\:hover\:bg-gray-700:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:hover\:bg-gray-800:hover{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:hover\:bg-gray-900:hover{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:hover\:bg-white:hover{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.dark\:hover\:text-gray-100:hover{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.dark\:hover\:text-gray-200:hover{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark\:hover\:text-gray-300:hover{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark\:hover\:text-gray-400:hover{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:hover\:text-white:hover{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark\:focus\:border-blue-700:focus{--tw-border-opacity: 1;border-color:rgb(29 78 216 / var(--tw-border-opacity))}.dark\:focus\:border-blue-800:focus{--tw-border-opacity: 1;border-color:rgb(30 64 175 / var(--tw-border-opacity))}.dark\:focus\:border-gray-600:focus{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark\:focus\:border-gray-700:focus{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark\:focus\:border-indigo-300:focus{--tw-border-opacity: 1;border-color:rgb(165 180 252 / var(--tw-border-opacity))}.dark\:focus\:border-indigo-600:focus{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity))}.dark\:focus\:bg-gray-700:focus{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:focus\:bg-gray-800:focus{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:focus\:bg-gray-900:focus{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:focus\:bg-indigo-900:focus{--tw-bg-opacity: 1;background-color:rgb(49 46 129 / var(--tw-bg-opacity))}.dark\:focus\:bg-white:focus{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.dark\:focus\:text-gray-200:focus{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark\:focus\:text-gray-300:focus{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark\:focus\:text-gray-400:focus{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:focus\:text-indigo-200:focus{--tw-text-opacity: 1;color:rgb(199 210 254 / var(--tw-text-opacity))}.dark\:focus\:ring-indigo-600:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity))}.dark\:focus\:ring-offset-gray-800:focus{--tw-ring-offset-color: #1f2937}.dark\:active\:bg-gray-300:active{--tw-bg-opacity: 1;background-color:rgb(209 213 219 / var(--tw-bg-opacity))}.dark\:active\:bg-gray-700:active{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:active\:text-gray-300:active{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.group:hover .dark\:group-hover\:stroke-gray-400{stroke:#9ca3af}.peer:focus~.dark\:peer-focus\:ring-indigo-800{--tw-ring-opacity: 1;--tw-ring-color: rgb(55 48 163 / var(--tw-ring-opacity))}}@media (min-width: 640px){.sm\:fixed{position:fixed}.sm\:right-0{right:0}.sm\:top-0{top:0}.sm\:col-span-4{grid-column:span 4 / span 4}.sm\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.sm\:-my-px{margin-top:-1px;margin-bottom:-1px}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:-me-2{margin-inline-end:-.5rem}.sm\:-mr-2{margin-right:-.5rem}.sm\:ml-0{margin-left:0}.sm\:ml-10{margin-left:2.5rem}.sm\:ml-3{margin-left:.75rem}.sm\:ml-4{margin-left:1rem}.sm\:ml-6{margin-left:1.5rem}.sm\:ms-10{margin-inline-start:2.5rem}.sm\:ms-3{margin-inline-start:.75rem}.sm\:ms-4{margin-inline-start:1rem}.sm\:ms-6{margin-inline-start:1.5rem}.sm\:mt-0{margin-top:0}.sm\:block{display:block}.sm\:flex{display:flex}.sm\:hidden{display:none}.sm\:h-10{height:2.5rem}.sm\:w-10{width:2.5rem}.sm\:w-full{width:100%}.sm\:max-w-2xl{max-width:42rem}.sm\:max-w-4xl{max-width:56rem}.sm\:max-w-6xl{max-width:72rem}.sm\:max-w-lg{max-width:32rem}.sm\:max-w-md{max-width:28rem}.sm\:max-w-sm{max-width:24rem}.sm\:max-w-xl{max-width:36rem}.sm\:flex-1{flex:1 1 0%}.sm\:translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:translate-x-2{--tw-translate-x: .5rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:flex-col{flex-direction:column}.sm\:items-start{align-items:flex-start}.sm\:items-end{align-items:flex-end}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:justify-center{justify-content:center}.sm\:justify-between{justify-content:space-between}.sm\:rounded-lg{border-radius:.5rem}.sm\:rounded-md{border-radius:.375rem}.sm\:rounded-bl-md{border-bottom-left-radius:.375rem}.sm\:rounded-br-md{border-bottom-right-radius:.375rem}.sm\:rounded-tl-md{border-top-left-radius:.375rem}.sm\:rounded-tr-md{border-top-right-radius:.375rem}.sm\:p-6{padding:1.5rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pb-4{padding-bottom:1rem}.sm\:pl-6{padding-left:1.5rem}.sm\:pr-0{padding-right:0}.sm\:pr-6{padding-right:1.5rem}.sm\:pr-8{padding-right:2rem}.sm\:pt-0{padding-top:0}.sm\:text-left{text-align:left}.sm\:text-right{text-align:right}.sm\:text-start{text-align:start}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.sm\:leading-6{line-height:1.5rem}}@media (min-width: 768px){.md\:col-span-1{grid-column:span 1 / span 1}.md\:col-span-2{grid-column:span 2 / span 2}.md\:mt-0{margin-top:0}.md\:grid{display:grid}.md\:w-1\/3{width:33.333333%}.md\:w-1\/4{width:25%}.md\:w-2\/3{width:66.666667%}.md\:w-3\/4{width:75%}.md\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:justify-between{justify-content:space-between}.md\:gap-6{gap:1.5rem}}@media (min-width: 1024px){.lg\:col-span-4{grid-column:span 4 / span 4}.lg\:-mx-8{margin-left:-2rem;margin-right:-2rem}.lg\:gap-8{gap:2rem}.lg\:p-8{padding:2rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:pl-8{padding-left:2rem}.lg\:pr-8{padding-right:2rem}} + */.fa{font-family:var(--fa-style-family, "Font Awesome 6 Free");font-weight:var(--fa-style, 900)}.fa,.fa-classic,.fa-sharp,.fas,.fa-solid,.far,.fa-regular,.fab,.fa-brands{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display, inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fas,.fa-classic,.fa-solid,.far,.fa-regular{font-family:"Font Awesome 6 Free"}.fab,.fa-brands{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin, 2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em) * -1);position:absolute;text-align:center;width:var(--fa-li-width, 2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color, #eee);border-radius:var(--fa-border-radius, .1em);border-style:var(--fa-border-style, solid);border-width:var(--fa-border-width, .08em);padding:var(--fa-border-padding, .2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin, .3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin, .3em)}.fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1))}.fa-fade{animation-name:fa-fade;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))}.fa-beat-fade{animation-name:fa-beat-fade;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))}.fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.fa-shake{animation-name:fa-shake;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin{animation-name:fa-spin;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 2s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin-reverse{--fa-animation-direction: reverse}.fa-pulse,.fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, steps(8))}@media (prefers-reduced-motion: reduce){.fa-beat,.fa-bounce,.fa-fade,.fa-beat-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale, 1.25))}}@keyframes fa-bounce{0%{transform:scale(1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x, 1.1),var(--fa-bounce-start-scale-y, .9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x, .9),var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x, 1.05),var(--fa-bounce-land-scale-y, .95)) translateY(0)}57%{transform:scale(1) translateY(var(--fa-bounce-rebound, -.125em))}64%{transform:scale(1) translateY(0)}to{transform:scale(1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity, .4)}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity, .4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale, 1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x, 0),var(--fa-flip-y, 1),var(--fa-flip-z, 0),var(--fa-flip-angle, -180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}8%,24%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}40%,to{transform:rotate(0)}}@keyframes fa-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}.fa-rotate-by{transform:rotate(var(--fa-rotate-angle, 0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index, auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse, #fff)}.fa-0:before{content:"0"}.fa-1:before{content:"1"}.fa-2:before{content:"2"}.fa-3:before{content:"3"}.fa-4:before{content:"4"}.fa-5:before{content:"5"}.fa-6:before{content:"6"}.fa-7:before{content:"7"}.fa-8:before{content:"8"}.fa-9:before{content:"9"}.fa-fill-drip:before{content:""}.fa-arrows-to-circle:before{content:""}.fa-circle-chevron-right:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-at:before{content:"@"}.fa-trash-can:before{content:""}.fa-trash-alt:before{content:""}.fa-text-height:before{content:""}.fa-user-xmark:before{content:""}.fa-user-times:before{content:""}.fa-stethoscope:before{content:""}.fa-message:before{content:""}.fa-comment-alt:before{content:""}.fa-info:before{content:""}.fa-down-left-and-up-right-to-center:before{content:""}.fa-compress-alt:before{content:""}.fa-explosion:before{content:""}.fa-file-lines:before{content:""}.fa-file-alt:before{content:""}.fa-file-text:before{content:""}.fa-wave-square:before{content:""}.fa-ring:before{content:""}.fa-building-un:before{content:""}.fa-dice-three:before{content:""}.fa-calendar-days:before{content:""}.fa-calendar-alt:before{content:""}.fa-anchor-circle-check:before{content:""}.fa-building-circle-arrow-right:before{content:""}.fa-volleyball:before{content:""}.fa-volleyball-ball:before{content:""}.fa-arrows-up-to-line:before{content:""}.fa-sort-down:before{content:""}.fa-sort-desc:before{content:""}.fa-circle-minus:before{content:""}.fa-minus-circle:before{content:""}.fa-door-open:before{content:""}.fa-right-from-bracket:before{content:""}.fa-sign-out-alt:before{content:""}.fa-atom:before{content:""}.fa-soap:before{content:""}.fa-icons:before{content:""}.fa-heart-music-camera-bolt:before{content:""}.fa-microphone-lines-slash:before{content:""}.fa-microphone-alt-slash:before{content:""}.fa-bridge-circle-check:before{content:""}.fa-pump-medical:before{content:""}.fa-fingerprint:before{content:""}.fa-hand-point-right:before{content:""}.fa-magnifying-glass-location:before{content:""}.fa-search-location:before{content:""}.fa-forward-step:before{content:""}.fa-step-forward:before{content:""}.fa-face-smile-beam:before{content:""}.fa-smile-beam:before{content:""}.fa-flag-checkered:before{content:""}.fa-football:before{content:""}.fa-football-ball:before{content:""}.fa-school-circle-exclamation:before{content:""}.fa-crop:before{content:""}.fa-angles-down:before{content:""}.fa-angle-double-down:before{content:""}.fa-users-rectangle:before{content:""}.fa-people-roof:before{content:""}.fa-people-line:before{content:""}.fa-beer-mug-empty:before{content:""}.fa-beer:before{content:""}.fa-diagram-predecessor:before{content:""}.fa-arrow-up-long:before{content:""}.fa-long-arrow-up:before{content:""}.fa-fire-flame-simple:before{content:""}.fa-burn:before{content:""}.fa-person:before{content:""}.fa-male:before{content:""}.fa-laptop:before{content:""}.fa-file-csv:before{content:""}.fa-menorah:before{content:""}.fa-truck-plane:before{content:""}.fa-record-vinyl:before{content:""}.fa-face-grin-stars:before{content:""}.fa-grin-stars:before{content:""}.fa-bong:before{content:""}.fa-spaghetti-monster-flying:before{content:""}.fa-pastafarianism:before{content:""}.fa-arrow-down-up-across-line:before{content:""}.fa-spoon:before{content:""}.fa-utensil-spoon:before{content:""}.fa-jar-wheat:before{content:""}.fa-envelopes-bulk:before{content:""}.fa-mail-bulk:before{content:""}.fa-file-circle-exclamation:before{content:""}.fa-circle-h:before{content:""}.fa-hospital-symbol:before{content:""}.fa-pager:before{content:""}.fa-address-book:before{content:""}.fa-contact-book:before{content:""}.fa-strikethrough:before{content:""}.fa-k:before{content:"K"}.fa-landmark-flag:before{content:""}.fa-pencil:before{content:""}.fa-pencil-alt:before{content:""}.fa-backward:before{content:""}.fa-caret-right:before{content:""}.fa-comments:before{content:""}.fa-paste:before{content:""}.fa-file-clipboard:before{content:""}.fa-code-pull-request:before{content:""}.fa-clipboard-list:before{content:""}.fa-truck-ramp-box:before{content:""}.fa-truck-loading:before{content:""}.fa-user-check:before{content:""}.fa-vial-virus:before{content:""}.fa-sheet-plastic:before{content:""}.fa-blog:before{content:""}.fa-user-ninja:before{content:""}.fa-person-arrow-up-from-line:before{content:""}.fa-scroll-torah:before{content:""}.fa-torah:before{content:""}.fa-broom-ball:before{content:""}.fa-quidditch:before{content:""}.fa-quidditch-broom-ball:before{content:""}.fa-toggle-off:before{content:""}.fa-box-archive:before{content:""}.fa-archive:before{content:""}.fa-person-drowning:before{content:""}.fa-arrow-down-9-1:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-sort-numeric-down-alt:before{content:""}.fa-face-grin-tongue-squint:before{content:""}.fa-grin-tongue-squint:before{content:""}.fa-spray-can:before{content:""}.fa-truck-monster:before{content:""}.fa-w:before{content:"W"}.fa-earth-africa:before{content:""}.fa-globe-africa:before{content:""}.fa-rainbow:before{content:""}.fa-circle-notch:before{content:""}.fa-tablet-screen-button:before{content:""}.fa-tablet-alt:before{content:""}.fa-paw:before{content:""}.fa-cloud:before{content:""}.fa-trowel-bricks:before{content:""}.fa-face-flushed:before{content:""}.fa-flushed:before{content:""}.fa-hospital-user:before{content:""}.fa-tent-arrow-left-right:before{content:""}.fa-gavel:before{content:""}.fa-legal:before{content:""}.fa-binoculars:before{content:""}.fa-microphone-slash:before{content:""}.fa-box-tissue:before{content:""}.fa-motorcycle:before{content:""}.fa-bell-concierge:before{content:""}.fa-concierge-bell:before{content:""}.fa-pen-ruler:before{content:""}.fa-pencil-ruler:before{content:""}.fa-people-arrows:before{content:""}.fa-people-arrows-left-right:before{content:""}.fa-mars-and-venus-burst:before{content:""}.fa-square-caret-right:before{content:""}.fa-caret-square-right:before{content:""}.fa-scissors:before{content:""}.fa-cut:before{content:""}.fa-sun-plant-wilt:before{content:""}.fa-toilets-portable:before{content:""}.fa-hockey-puck:before{content:""}.fa-table:before{content:""}.fa-magnifying-glass-arrow-right:before{content:""}.fa-tachograph-digital:before{content:""}.fa-digital-tachograph:before{content:""}.fa-users-slash:before{content:""}.fa-clover:before{content:""}.fa-reply:before{content:""}.fa-mail-reply:before{content:""}.fa-star-and-crescent:before{content:""}.fa-house-fire:before{content:""}.fa-square-minus:before{content:""}.fa-minus-square:before{content:""}.fa-helicopter:before{content:""}.fa-compass:before{content:""}.fa-square-caret-down:before{content:""}.fa-caret-square-down:before{content:""}.fa-file-circle-question:before{content:""}.fa-laptop-code:before{content:""}.fa-swatchbook:before{content:""}.fa-prescription-bottle:before{content:""}.fa-bars:before{content:""}.fa-navicon:before{content:""}.fa-people-group:before{content:""}.fa-hourglass-end:before{content:""}.fa-hourglass-3:before{content:""}.fa-heart-crack:before{content:""}.fa-heart-broken:before{content:""}.fa-square-up-right:before{content:""}.fa-external-link-square-alt:before{content:""}.fa-face-kiss-beam:before{content:""}.fa-kiss-beam:before{content:""}.fa-film:before{content:""}.fa-ruler-horizontal:before{content:""}.fa-people-robbery:before{content:""}.fa-lightbulb:before{content:""}.fa-caret-left:before{content:""}.fa-circle-exclamation:before{content:""}.fa-exclamation-circle:before{content:""}.fa-school-circle-xmark:before{content:""}.fa-arrow-right-from-bracket:before{content:""}.fa-sign-out:before{content:""}.fa-circle-chevron-down:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-unlock-keyhole:before{content:""}.fa-unlock-alt:before{content:""}.fa-cloud-showers-heavy:before{content:""}.fa-headphones-simple:before{content:""}.fa-headphones-alt:before{content:""}.fa-sitemap:before{content:""}.fa-circle-dollar-to-slot:before{content:""}.fa-donate:before{content:""}.fa-memory:before{content:""}.fa-road-spikes:before{content:""}.fa-fire-burner:before{content:""}.fa-flag:before{content:""}.fa-hanukiah:before{content:""}.fa-feather:before{content:""}.fa-volume-low:before{content:""}.fa-volume-down:before{content:""}.fa-comment-slash:before{content:""}.fa-cloud-sun-rain:before{content:""}.fa-compress:before{content:""}.fa-wheat-awn:before{content:""}.fa-wheat-alt:before{content:""}.fa-ankh:before{content:""}.fa-hands-holding-child:before{content:""}.fa-asterisk:before{content:"*"}.fa-square-check:before{content:""}.fa-check-square:before{content:""}.fa-peseta-sign:before{content:""}.fa-heading:before{content:""}.fa-header:before{content:""}.fa-ghost:before{content:""}.fa-list:before{content:""}.fa-list-squares:before{content:""}.fa-square-phone-flip:before{content:""}.fa-phone-square-alt:before{content:""}.fa-cart-plus:before{content:""}.fa-gamepad:before{content:""}.fa-circle-dot:before{content:""}.fa-dot-circle:before{content:""}.fa-face-dizzy:before{content:""}.fa-dizzy:before{content:""}.fa-egg:before{content:""}.fa-house-medical-circle-xmark:before{content:""}.fa-campground:before{content:""}.fa-folder-plus:before{content:""}.fa-futbol:before{content:""}.fa-futbol-ball:before{content:""}.fa-soccer-ball:before{content:""}.fa-paintbrush:before{content:""}.fa-paint-brush:before{content:""}.fa-lock:before{content:""}.fa-gas-pump:before{content:""}.fa-hot-tub-person:before{content:""}.fa-hot-tub:before{content:""}.fa-map-location:before{content:""}.fa-map-marked:before{content:""}.fa-house-flood-water:before{content:""}.fa-tree:before{content:""}.fa-bridge-lock:before{content:""}.fa-sack-dollar:before{content:""}.fa-pen-to-square:before{content:""}.fa-edit:before{content:""}.fa-car-side:before{content:""}.fa-share-nodes:before{content:""}.fa-share-alt:before{content:""}.fa-heart-circle-minus:before{content:""}.fa-hourglass-half:before{content:""}.fa-hourglass-2:before{content:""}.fa-microscope:before{content:""}.fa-sink:before{content:""}.fa-bag-shopping:before{content:""}.fa-shopping-bag:before{content:""}.fa-arrow-down-z-a:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-alpha-down-alt:before{content:""}.fa-mitten:before{content:""}.fa-person-rays:before{content:""}.fa-users:before{content:""}.fa-eye-slash:before{content:""}.fa-flask-vial:before{content:""}.fa-hand:before{content:""}.fa-hand-paper:before{content:""}.fa-om:before{content:""}.fa-worm:before{content:""}.fa-house-circle-xmark:before{content:""}.fa-plug:before{content:""}.fa-chevron-up:before{content:""}.fa-hand-spock:before{content:""}.fa-stopwatch:before{content:""}.fa-face-kiss:before{content:""}.fa-kiss:before{content:""}.fa-bridge-circle-xmark:before{content:""}.fa-face-grin-tongue:before{content:""}.fa-grin-tongue:before{content:""}.fa-chess-bishop:before{content:""}.fa-face-grin-wink:before{content:""}.fa-grin-wink:before{content:""}.fa-ear-deaf:before{content:""}.fa-deaf:before{content:""}.fa-deafness:before{content:""}.fa-hard-of-hearing:before{content:""}.fa-road-circle-check:before{content:""}.fa-dice-five:before{content:""}.fa-square-rss:before{content:""}.fa-rss-square:before{content:""}.fa-land-mine-on:before{content:""}.fa-i-cursor:before{content:""}.fa-stamp:before{content:""}.fa-stairs:before{content:""}.fa-i:before{content:"I"}.fa-hryvnia-sign:before{content:""}.fa-hryvnia:before{content:""}.fa-pills:before{content:""}.fa-face-grin-wide:before{content:""}.fa-grin-alt:before{content:""}.fa-tooth:before{content:""}.fa-v:before{content:"V"}.fa-bangladeshi-taka-sign:before{content:""}.fa-bicycle:before{content:""}.fa-staff-snake:before{content:""}.fa-rod-asclepius:before{content:""}.fa-rod-snake:before{content:""}.fa-staff-aesculapius:before{content:""}.fa-head-side-cough-slash:before{content:""}.fa-truck-medical:before{content:""}.fa-ambulance:before{content:""}.fa-wheat-awn-circle-exclamation:before{content:""}.fa-snowman:before{content:""}.fa-mortar-pestle:before{content:""}.fa-road-barrier:before{content:""}.fa-school:before{content:""}.fa-igloo:before{content:""}.fa-joint:before{content:""}.fa-angle-right:before{content:""}.fa-horse:before{content:""}.fa-q:before{content:"Q"}.fa-g:before{content:"G"}.fa-notes-medical:before{content:""}.fa-temperature-half:before{content:""}.fa-temperature-2:before{content:""}.fa-thermometer-2:before{content:""}.fa-thermometer-half:before{content:""}.fa-dong-sign:before{content:""}.fa-capsules:before{content:""}.fa-poo-storm:before{content:""}.fa-poo-bolt:before{content:""}.fa-face-frown-open:before{content:""}.fa-frown-open:before{content:""}.fa-hand-point-up:before{content:""}.fa-money-bill:before{content:""}.fa-bookmark:before{content:""}.fa-align-justify:before{content:""}.fa-umbrella-beach:before{content:""}.fa-helmet-un:before{content:""}.fa-bullseye:before{content:""}.fa-bacon:before{content:""}.fa-hand-point-down:before{content:""}.fa-arrow-up-from-bracket:before{content:""}.fa-folder:before{content:""}.fa-folder-blank:before{content:""}.fa-file-waveform:before{content:""}.fa-file-medical-alt:before{content:""}.fa-radiation:before{content:""}.fa-chart-simple:before{content:""}.fa-mars-stroke:before{content:""}.fa-vial:before{content:""}.fa-gauge:before{content:""}.fa-dashboard:before{content:""}.fa-gauge-med:before{content:""}.fa-tachometer-alt-average:before{content:""}.fa-wand-magic-sparkles:before{content:""}.fa-magic-wand-sparkles:before{content:""}.fa-e:before{content:"E"}.fa-pen-clip:before{content:""}.fa-pen-alt:before{content:""}.fa-bridge-circle-exclamation:before{content:""}.fa-user:before{content:""}.fa-school-circle-check:before{content:""}.fa-dumpster:before{content:""}.fa-van-shuttle:before{content:""}.fa-shuttle-van:before{content:""}.fa-building-user:before{content:""}.fa-square-caret-left:before{content:""}.fa-caret-square-left:before{content:""}.fa-highlighter:before{content:""}.fa-key:before{content:""}.fa-bullhorn:before{content:""}.fa-globe:before{content:""}.fa-synagogue:before{content:""}.fa-person-half-dress:before{content:""}.fa-road-bridge:before{content:""}.fa-location-arrow:before{content:""}.fa-c:before{content:"C"}.fa-tablet-button:before{content:""}.fa-building-lock:before{content:""}.fa-pizza-slice:before{content:""}.fa-money-bill-wave:before{content:""}.fa-chart-area:before{content:""}.fa-area-chart:before{content:""}.fa-house-flag:before{content:""}.fa-person-circle-minus:before{content:""}.fa-ban:before{content:""}.fa-cancel:before{content:""}.fa-camera-rotate:before{content:""}.fa-spray-can-sparkles:before{content:""}.fa-air-freshener:before{content:""}.fa-star:before{content:""}.fa-repeat:before{content:""}.fa-cross:before{content:""}.fa-box:before{content:""}.fa-venus-mars:before{content:""}.fa-arrow-pointer:before{content:""}.fa-mouse-pointer:before{content:""}.fa-maximize:before{content:""}.fa-expand-arrows-alt:before{content:""}.fa-charging-station:before{content:""}.fa-shapes:before{content:""}.fa-triangle-circle-square:before{content:""}.fa-shuffle:before{content:""}.fa-random:before{content:""}.fa-person-running:before{content:""}.fa-running:before{content:""}.fa-mobile-retro:before{content:""}.fa-grip-lines-vertical:before{content:""}.fa-spider:before{content:""}.fa-hands-bound:before{content:""}.fa-file-invoice-dollar:before{content:""}.fa-plane-circle-exclamation:before{content:""}.fa-x-ray:before{content:""}.fa-spell-check:before{content:""}.fa-slash:before{content:""}.fa-computer-mouse:before{content:""}.fa-mouse:before{content:""}.fa-arrow-right-to-bracket:before{content:""}.fa-sign-in:before{content:""}.fa-shop-slash:before{content:""}.fa-store-alt-slash:before{content:""}.fa-server:before{content:""}.fa-virus-covid-slash:before{content:""}.fa-shop-lock:before{content:""}.fa-hourglass-start:before{content:""}.fa-hourglass-1:before{content:""}.fa-blender-phone:before{content:""}.fa-building-wheat:before{content:""}.fa-person-breastfeeding:before{content:""}.fa-right-to-bracket:before{content:""}.fa-sign-in-alt:before{content:""}.fa-venus:before{content:""}.fa-passport:before{content:""}.fa-heart-pulse:before{content:""}.fa-heartbeat:before{content:""}.fa-people-carry-box:before{content:""}.fa-people-carry:before{content:""}.fa-temperature-high:before{content:""}.fa-microchip:before{content:""}.fa-crown:before{content:""}.fa-weight-hanging:before{content:""}.fa-xmarks-lines:before{content:""}.fa-file-prescription:before{content:""}.fa-weight-scale:before{content:""}.fa-weight:before{content:""}.fa-user-group:before{content:""}.fa-user-friends:before{content:""}.fa-arrow-up-a-z:before{content:""}.fa-sort-alpha-up:before{content:""}.fa-chess-knight:before{content:""}.fa-face-laugh-squint:before{content:""}.fa-laugh-squint:before{content:""}.fa-wheelchair:before{content:""}.fa-circle-arrow-up:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-toggle-on:before{content:""}.fa-person-walking:before{content:""}.fa-walking:before{content:""}.fa-l:before{content:"L"}.fa-fire:before{content:""}.fa-bed-pulse:before{content:""}.fa-procedures:before{content:""}.fa-shuttle-space:before{content:""}.fa-space-shuttle:before{content:""}.fa-face-laugh:before{content:""}.fa-laugh:before{content:""}.fa-folder-open:before{content:""}.fa-heart-circle-plus:before{content:""}.fa-code-fork:before{content:""}.fa-city:before{content:""}.fa-microphone-lines:before{content:""}.fa-microphone-alt:before{content:""}.fa-pepper-hot:before{content:""}.fa-unlock:before{content:""}.fa-colon-sign:before{content:""}.fa-headset:before{content:""}.fa-store-slash:before{content:""}.fa-road-circle-xmark:before{content:""}.fa-user-minus:before{content:""}.fa-mars-stroke-up:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-champagne-glasses:before{content:""}.fa-glass-cheers:before{content:""}.fa-clipboard:before{content:""}.fa-house-circle-exclamation:before{content:""}.fa-file-arrow-up:before{content:""}.fa-file-upload:before{content:""}.fa-wifi:before{content:""}.fa-wifi-3:before{content:""}.fa-wifi-strong:before{content:""}.fa-bath:before{content:""}.fa-bathtub:before{content:""}.fa-underline:before{content:""}.fa-user-pen:before{content:""}.fa-user-edit:before{content:""}.fa-signature:before{content:""}.fa-stroopwafel:before{content:""}.fa-bold:before{content:""}.fa-anchor-lock:before{content:""}.fa-building-ngo:before{content:""}.fa-manat-sign:before{content:""}.fa-not-equal:before{content:""}.fa-border-top-left:before{content:""}.fa-border-style:before{content:""}.fa-map-location-dot:before{content:""}.fa-map-marked-alt:before{content:""}.fa-jedi:before{content:""}.fa-square-poll-vertical:before{content:""}.fa-poll:before{content:""}.fa-mug-hot:before{content:""}.fa-car-battery:before{content:""}.fa-battery-car:before{content:""}.fa-gift:before{content:""}.fa-dice-two:before{content:""}.fa-chess-queen:before{content:""}.fa-glasses:before{content:""}.fa-chess-board:before{content:""}.fa-building-circle-check:before{content:""}.fa-person-chalkboard:before{content:""}.fa-mars-stroke-right:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-hand-back-fist:before{content:""}.fa-hand-rock:before{content:""}.fa-square-caret-up:before{content:""}.fa-caret-square-up:before{content:""}.fa-cloud-showers-water:before{content:""}.fa-chart-bar:before{content:""}.fa-bar-chart:before{content:""}.fa-hands-bubbles:before{content:""}.fa-hands-wash:before{content:""}.fa-less-than-equal:before{content:""}.fa-train:before{content:""}.fa-eye-low-vision:before{content:""}.fa-low-vision:before{content:""}.fa-crow:before{content:""}.fa-sailboat:before{content:""}.fa-window-restore:before{content:""}.fa-square-plus:before{content:""}.fa-plus-square:before{content:""}.fa-torii-gate:before{content:""}.fa-frog:before{content:""}.fa-bucket:before{content:""}.fa-image:before{content:""}.fa-microphone:before{content:""}.fa-cow:before{content:""}.fa-caret-up:before{content:""}.fa-screwdriver:before{content:""}.fa-folder-closed:before{content:""}.fa-house-tsunami:before{content:""}.fa-square-nfi:before{content:""}.fa-arrow-up-from-ground-water:before{content:""}.fa-martini-glass:before{content:""}.fa-glass-martini-alt:before{content:""}.fa-rotate-left:before{content:""}.fa-rotate-back:before{content:""}.fa-rotate-backward:before{content:""}.fa-undo-alt:before{content:""}.fa-table-columns:before{content:""}.fa-columns:before{content:""}.fa-lemon:before{content:""}.fa-head-side-mask:before{content:""}.fa-handshake:before{content:""}.fa-gem:before{content:""}.fa-dolly:before{content:""}.fa-dolly-box:before{content:""}.fa-smoking:before{content:""}.fa-minimize:before{content:""}.fa-compress-arrows-alt:before{content:""}.fa-monument:before{content:""}.fa-snowplow:before{content:""}.fa-angles-right:before{content:""}.fa-angle-double-right:before{content:""}.fa-cannabis:before{content:""}.fa-circle-play:before{content:""}.fa-play-circle:before{content:""}.fa-tablets:before{content:""}.fa-ethernet:before{content:""}.fa-euro-sign:before{content:""}.fa-eur:before{content:""}.fa-euro:before{content:""}.fa-chair:before{content:""}.fa-circle-check:before{content:""}.fa-check-circle:before{content:""}.fa-circle-stop:before{content:""}.fa-stop-circle:before{content:""}.fa-compass-drafting:before{content:""}.fa-drafting-compass:before{content:""}.fa-plate-wheat:before{content:""}.fa-icicles:before{content:""}.fa-person-shelter:before{content:""}.fa-neuter:before{content:""}.fa-id-badge:before{content:""}.fa-marker:before{content:""}.fa-face-laugh-beam:before{content:""}.fa-laugh-beam:before{content:""}.fa-helicopter-symbol:before{content:""}.fa-universal-access:before{content:""}.fa-circle-chevron-up:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-lari-sign:before{content:""}.fa-volcano:before{content:""}.fa-person-walking-dashed-line-arrow-right:before{content:""}.fa-sterling-sign:before{content:""}.fa-gbp:before{content:""}.fa-pound-sign:before{content:""}.fa-viruses:before{content:""}.fa-square-person-confined:before{content:""}.fa-user-tie:before{content:""}.fa-arrow-down-long:before{content:""}.fa-long-arrow-down:before{content:""}.fa-tent-arrow-down-to-line:before{content:""}.fa-certificate:before{content:""}.fa-reply-all:before{content:""}.fa-mail-reply-all:before{content:""}.fa-suitcase:before{content:""}.fa-person-skating:before{content:""}.fa-skating:before{content:""}.fa-filter-circle-dollar:before{content:""}.fa-funnel-dollar:before{content:""}.fa-camera-retro:before{content:""}.fa-circle-arrow-down:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-file-import:before{content:""}.fa-arrow-right-to-file:before{content:""}.fa-square-arrow-up-right:before{content:""}.fa-external-link-square:before{content:""}.fa-box-open:before{content:""}.fa-scroll:before{content:""}.fa-spa:before{content:""}.fa-location-pin-lock:before{content:""}.fa-pause:before{content:""}.fa-hill-avalanche:before{content:""}.fa-temperature-empty:before{content:""}.fa-temperature-0:before{content:""}.fa-thermometer-0:before{content:""}.fa-thermometer-empty:before{content:""}.fa-bomb:before{content:""}.fa-registered:before{content:""}.fa-address-card:before{content:""}.fa-contact-card:before{content:""}.fa-vcard:before{content:""}.fa-scale-unbalanced-flip:before{content:""}.fa-balance-scale-right:before{content:""}.fa-subscript:before{content:""}.fa-diamond-turn-right:before{content:""}.fa-directions:before{content:""}.fa-burst:before{content:""}.fa-house-laptop:before{content:""}.fa-laptop-house:before{content:""}.fa-face-tired:before{content:""}.fa-tired:before{content:""}.fa-money-bills:before{content:""}.fa-smog:before{content:""}.fa-crutch:before{content:""}.fa-cloud-arrow-up:before{content:""}.fa-cloud-upload:before{content:""}.fa-cloud-upload-alt:before{content:""}.fa-palette:before{content:""}.fa-arrows-turn-right:before{content:""}.fa-vest:before{content:""}.fa-ferry:before{content:""}.fa-arrows-down-to-people:before{content:""}.fa-seedling:before{content:""}.fa-sprout:before{content:""}.fa-left-right:before{content:""}.fa-arrows-alt-h:before{content:""}.fa-boxes-packing:before{content:""}.fa-circle-arrow-left:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-group-arrows-rotate:before{content:""}.fa-bowl-food:before{content:""}.fa-candy-cane:before{content:""}.fa-arrow-down-wide-short:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-down:before{content:""}.fa-cloud-bolt:before{content:""}.fa-thunderstorm:before{content:""}.fa-text-slash:before{content:""}.fa-remove-format:before{content:""}.fa-face-smile-wink:before{content:""}.fa-smile-wink:before{content:""}.fa-file-word:before{content:""}.fa-file-powerpoint:before{content:""}.fa-arrows-left-right:before{content:""}.fa-arrows-h:before{content:""}.fa-house-lock:before{content:""}.fa-cloud-arrow-down:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-download-alt:before{content:""}.fa-children:before{content:""}.fa-chalkboard:before{content:""}.fa-blackboard:before{content:""}.fa-user-large-slash:before{content:""}.fa-user-alt-slash:before{content:""}.fa-envelope-open:before{content:""}.fa-handshake-simple-slash:before{content:""}.fa-handshake-alt-slash:before{content:""}.fa-mattress-pillow:before{content:""}.fa-guarani-sign:before{content:""}.fa-arrows-rotate:before{content:""}.fa-refresh:before{content:""}.fa-sync:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-cruzeiro-sign:before{content:""}.fa-greater-than-equal:before{content:""}.fa-shield-halved:before{content:""}.fa-shield-alt:before{content:""}.fa-book-atlas:before{content:""}.fa-atlas:before{content:""}.fa-virus:before{content:""}.fa-envelope-circle-check:before{content:""}.fa-layer-group:before{content:""}.fa-arrows-to-dot:before{content:""}.fa-archway:before{content:""}.fa-heart-circle-check:before{content:""}.fa-house-chimney-crack:before{content:""}.fa-house-damage:before{content:""}.fa-file-zipper:before{content:""}.fa-file-archive:before{content:""}.fa-square:before{content:""}.fa-martini-glass-empty:before{content:""}.fa-glass-martini:before{content:""}.fa-couch:before{content:""}.fa-cedi-sign:before{content:""}.fa-italic:before{content:""}.fa-table-cells-column-lock:before{content:""}.fa-church:before{content:""}.fa-comments-dollar:before{content:""}.fa-democrat:before{content:""}.fa-z:before{content:"Z"}.fa-person-skiing:before{content:""}.fa-skiing:before{content:""}.fa-road-lock:before{content:""}.fa-a:before{content:"A"}.fa-temperature-arrow-down:before{content:""}.fa-temperature-down:before{content:""}.fa-feather-pointed:before{content:""}.fa-feather-alt:before{content:""}.fa-p:before{content:"P"}.fa-snowflake:before{content:""}.fa-newspaper:before{content:""}.fa-rectangle-ad:before{content:""}.fa-ad:before{content:""}.fa-circle-arrow-right:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-filter-circle-xmark:before{content:""}.fa-locust:before{content:""}.fa-sort:before{content:""}.fa-unsorted:before{content:""}.fa-list-ol:before{content:""}.fa-list-1-2:before{content:""}.fa-list-numeric:before{content:""}.fa-person-dress-burst:before{content:""}.fa-money-check-dollar:before{content:""}.fa-money-check-alt:before{content:""}.fa-vector-square:before{content:""}.fa-bread-slice:before{content:""}.fa-language:before{content:""}.fa-face-kiss-wink-heart:before{content:""}.fa-kiss-wink-heart:before{content:""}.fa-filter:before{content:""}.fa-question:before{content:"?"}.fa-file-signature:before{content:""}.fa-up-down-left-right:before{content:""}.fa-arrows-alt:before{content:""}.fa-house-chimney-user:before{content:""}.fa-hand-holding-heart:before{content:""}.fa-puzzle-piece:before{content:""}.fa-money-check:before{content:""}.fa-star-half-stroke:before{content:""}.fa-star-half-alt:before{content:""}.fa-code:before{content:""}.fa-whiskey-glass:before{content:""}.fa-glass-whiskey:before{content:""}.fa-building-circle-exclamation:before{content:""}.fa-magnifying-glass-chart:before{content:""}.fa-arrow-up-right-from-square:before{content:""}.fa-external-link:before{content:""}.fa-cubes-stacked:before{content:""}.fa-won-sign:before{content:""}.fa-krw:before{content:""}.fa-won:before{content:""}.fa-virus-covid:before{content:""}.fa-austral-sign:before{content:""}.fa-f:before{content:"F"}.fa-leaf:before{content:""}.fa-road:before{content:""}.fa-taxi:before{content:""}.fa-cab:before{content:""}.fa-person-circle-plus:before{content:""}.fa-chart-pie:before{content:""}.fa-pie-chart:before{content:""}.fa-bolt-lightning:before{content:""}.fa-sack-xmark:before{content:""}.fa-file-excel:before{content:""}.fa-file-contract:before{content:""}.fa-fish-fins:before{content:""}.fa-building-flag:before{content:""}.fa-face-grin-beam:before{content:""}.fa-grin-beam:before{content:""}.fa-object-ungroup:before{content:""}.fa-poop:before{content:""}.fa-location-pin:before{content:""}.fa-map-marker:before{content:""}.fa-kaaba:before{content:""}.fa-toilet-paper:before{content:""}.fa-helmet-safety:before{content:""}.fa-hard-hat:before{content:""}.fa-hat-hard:before{content:""}.fa-eject:before{content:""}.fa-circle-right:before{content:""}.fa-arrow-alt-circle-right:before{content:""}.fa-plane-circle-check:before{content:""}.fa-face-rolling-eyes:before{content:""}.fa-meh-rolling-eyes:before{content:""}.fa-object-group:before{content:""}.fa-chart-line:before{content:""}.fa-line-chart:before{content:""}.fa-mask-ventilator:before{content:""}.fa-arrow-right:before{content:""}.fa-signs-post:before{content:""}.fa-map-signs:before{content:""}.fa-cash-register:before{content:""}.fa-person-circle-question:before{content:""}.fa-h:before{content:"H"}.fa-tarp:before{content:""}.fa-screwdriver-wrench:before{content:""}.fa-tools:before{content:""}.fa-arrows-to-eye:before{content:""}.fa-plug-circle-bolt:before{content:""}.fa-heart:before{content:""}.fa-mars-and-venus:before{content:""}.fa-house-user:before{content:""}.fa-home-user:before{content:""}.fa-dumpster-fire:before{content:""}.fa-house-crack:before{content:""}.fa-martini-glass-citrus:before{content:""}.fa-cocktail:before{content:""}.fa-face-surprise:before{content:""}.fa-surprise:before{content:""}.fa-bottle-water:before{content:""}.fa-circle-pause:before{content:""}.fa-pause-circle:before{content:""}.fa-toilet-paper-slash:before{content:""}.fa-apple-whole:before{content:""}.fa-apple-alt:before{content:""}.fa-kitchen-set:before{content:""}.fa-r:before{content:"R"}.fa-temperature-quarter:before{content:""}.fa-temperature-1:before{content:""}.fa-thermometer-1:before{content:""}.fa-thermometer-quarter:before{content:""}.fa-cube:before{content:""}.fa-bitcoin-sign:before{content:""}.fa-shield-dog:before{content:""}.fa-solar-panel:before{content:""}.fa-lock-open:before{content:""}.fa-elevator:before{content:""}.fa-money-bill-transfer:before{content:""}.fa-money-bill-trend-up:before{content:""}.fa-house-flood-water-circle-arrow-right:before{content:""}.fa-square-poll-horizontal:before{content:""}.fa-poll-h:before{content:""}.fa-circle:before{content:""}.fa-backward-fast:before{content:""}.fa-fast-backward:before{content:""}.fa-recycle:before{content:""}.fa-user-astronaut:before{content:""}.fa-plane-slash:before{content:""}.fa-trademark:before{content:""}.fa-basketball:before{content:""}.fa-basketball-ball:before{content:""}.fa-satellite-dish:before{content:""}.fa-circle-up:before{content:""}.fa-arrow-alt-circle-up:before{content:""}.fa-mobile-screen-button:before{content:""}.fa-mobile-alt:before{content:""}.fa-volume-high:before{content:""}.fa-volume-up:before{content:""}.fa-users-rays:before{content:""}.fa-wallet:before{content:""}.fa-clipboard-check:before{content:""}.fa-file-audio:before{content:""}.fa-burger:before{content:""}.fa-hamburger:before{content:""}.fa-wrench:before{content:""}.fa-bugs:before{content:""}.fa-rupee-sign:before{content:""}.fa-rupee:before{content:""}.fa-file-image:before{content:""}.fa-circle-question:before{content:""}.fa-question-circle:before{content:""}.fa-plane-departure:before{content:""}.fa-handshake-slash:before{content:""}.fa-book-bookmark:before{content:""}.fa-code-branch:before{content:""}.fa-hat-cowboy:before{content:""}.fa-bridge:before{content:""}.fa-phone-flip:before{content:""}.fa-phone-alt:before{content:""}.fa-truck-front:before{content:""}.fa-cat:before{content:""}.fa-anchor-circle-exclamation:before{content:""}.fa-truck-field:before{content:""}.fa-route:before{content:""}.fa-clipboard-question:before{content:""}.fa-panorama:before{content:""}.fa-comment-medical:before{content:""}.fa-teeth-open:before{content:""}.fa-file-circle-minus:before{content:""}.fa-tags:before{content:""}.fa-wine-glass:before{content:""}.fa-forward-fast:before{content:""}.fa-fast-forward:before{content:""}.fa-face-meh-blank:before{content:""}.fa-meh-blank:before{content:""}.fa-square-parking:before{content:""}.fa-parking:before{content:""}.fa-house-signal:before{content:""}.fa-bars-progress:before{content:""}.fa-tasks-alt:before{content:""}.fa-faucet-drip:before{content:""}.fa-cart-flatbed:before{content:""}.fa-dolly-flatbed:before{content:""}.fa-ban-smoking:before{content:""}.fa-smoking-ban:before{content:""}.fa-terminal:before{content:""}.fa-mobile-button:before{content:""}.fa-house-medical-flag:before{content:""}.fa-basket-shopping:before{content:""}.fa-shopping-basket:before{content:""}.fa-tape:before{content:""}.fa-bus-simple:before{content:""}.fa-bus-alt:before{content:""}.fa-eye:before{content:""}.fa-face-sad-cry:before{content:""}.fa-sad-cry:before{content:""}.fa-audio-description:before{content:""}.fa-person-military-to-person:before{content:""}.fa-file-shield:before{content:""}.fa-user-slash:before{content:""}.fa-pen:before{content:""}.fa-tower-observation:before{content:""}.fa-file-code:before{content:""}.fa-signal:before{content:""}.fa-signal-5:before{content:""}.fa-signal-perfect:before{content:""}.fa-bus:before{content:""}.fa-heart-circle-xmark:before{content:""}.fa-house-chimney:before{content:""}.fa-home-lg:before{content:""}.fa-window-maximize:before{content:""}.fa-face-frown:before{content:""}.fa-frown:before{content:""}.fa-prescription:before{content:""}.fa-shop:before{content:""}.fa-store-alt:before{content:""}.fa-floppy-disk:before{content:""}.fa-save:before{content:""}.fa-vihara:before{content:""}.fa-scale-unbalanced:before{content:""}.fa-balance-scale-left:before{content:""}.fa-sort-up:before{content:""}.fa-sort-asc:before{content:""}.fa-comment-dots:before{content:""}.fa-commenting:before{content:""}.fa-plant-wilt:before{content:""}.fa-diamond:before{content:""}.fa-face-grin-squint:before{content:""}.fa-grin-squint:before{content:""}.fa-hand-holding-dollar:before{content:""}.fa-hand-holding-usd:before{content:""}.fa-bacterium:before{content:""}.fa-hand-pointer:before{content:""}.fa-drum-steelpan:before{content:""}.fa-hand-scissors:before{content:""}.fa-hands-praying:before{content:""}.fa-praying-hands:before{content:""}.fa-arrow-rotate-right:before{content:""}.fa-arrow-right-rotate:before{content:""}.fa-arrow-rotate-forward:before{content:""}.fa-redo:before{content:""}.fa-biohazard:before{content:""}.fa-location-crosshairs:before{content:""}.fa-location:before{content:""}.fa-mars-double:before{content:""}.fa-child-dress:before{content:""}.fa-users-between-lines:before{content:""}.fa-lungs-virus:before{content:""}.fa-face-grin-tears:before{content:""}.fa-grin-tears:before{content:""}.fa-phone:before{content:""}.fa-calendar-xmark:before{content:""}.fa-calendar-times:before{content:""}.fa-child-reaching:before{content:""}.fa-head-side-virus:before{content:""}.fa-user-gear:before{content:""}.fa-user-cog:before{content:""}.fa-arrow-up-1-9:before{content:""}.fa-sort-numeric-up:before{content:""}.fa-door-closed:before{content:""}.fa-shield-virus:before{content:""}.fa-dice-six:before{content:""}.fa-mosquito-net:before{content:""}.fa-bridge-water:before{content:""}.fa-person-booth:before{content:""}.fa-text-width:before{content:""}.fa-hat-wizard:before{content:""}.fa-pen-fancy:before{content:""}.fa-person-digging:before{content:""}.fa-digging:before{content:""}.fa-trash:before{content:""}.fa-gauge-simple:before{content:""}.fa-gauge-simple-med:before{content:""}.fa-tachometer-average:before{content:""}.fa-book-medical:before{content:""}.fa-poo:before{content:""}.fa-quote-right:before{content:""}.fa-quote-right-alt:before{content:""}.fa-shirt:before{content:""}.fa-t-shirt:before{content:""}.fa-tshirt:before{content:""}.fa-cubes:before{content:""}.fa-divide:before{content:""}.fa-tenge-sign:before{content:""}.fa-tenge:before{content:""}.fa-headphones:before{content:""}.fa-hands-holding:before{content:""}.fa-hands-clapping:before{content:""}.fa-republican:before{content:""}.fa-arrow-left:before{content:""}.fa-person-circle-xmark:before{content:""}.fa-ruler:before{content:""}.fa-align-left:before{content:""}.fa-dice-d6:before{content:""}.fa-restroom:before{content:""}.fa-j:before{content:"J"}.fa-users-viewfinder:before{content:""}.fa-file-video:before{content:""}.fa-up-right-from-square:before{content:""}.fa-external-link-alt:before{content:""}.fa-table-cells:before{content:""}.fa-th:before{content:""}.fa-file-pdf:before{content:""}.fa-book-bible:before{content:""}.fa-bible:before{content:""}.fa-o:before{content:"O"}.fa-suitcase-medical:before{content:""}.fa-medkit:before{content:""}.fa-user-secret:before{content:""}.fa-otter:before{content:""}.fa-person-dress:before{content:""}.fa-female:before{content:""}.fa-comment-dollar:before{content:""}.fa-business-time:before{content:""}.fa-briefcase-clock:before{content:""}.fa-table-cells-large:before{content:""}.fa-th-large:before{content:""}.fa-book-tanakh:before{content:""}.fa-tanakh:before{content:""}.fa-phone-volume:before{content:""}.fa-volume-control-phone:before{content:""}.fa-hat-cowboy-side:before{content:""}.fa-clipboard-user:before{content:""}.fa-child:before{content:""}.fa-lira-sign:before{content:""}.fa-satellite:before{content:""}.fa-plane-lock:before{content:""}.fa-tag:before{content:""}.fa-comment:before{content:""}.fa-cake-candles:before{content:""}.fa-birthday-cake:before{content:""}.fa-cake:before{content:""}.fa-envelope:before{content:""}.fa-angles-up:before{content:""}.fa-angle-double-up:before{content:""}.fa-paperclip:before{content:""}.fa-arrow-right-to-city:before{content:""}.fa-ribbon:before{content:""}.fa-lungs:before{content:""}.fa-arrow-up-9-1:before{content:""}.fa-sort-numeric-up-alt:before{content:""}.fa-litecoin-sign:before{content:""}.fa-border-none:before{content:""}.fa-circle-nodes:before{content:""}.fa-parachute-box:before{content:""}.fa-indent:before{content:""}.fa-truck-field-un:before{content:""}.fa-hourglass:before{content:""}.fa-hourglass-empty:before{content:""}.fa-mountain:before{content:""}.fa-user-doctor:before{content:""}.fa-user-md:before{content:""}.fa-circle-info:before{content:""}.fa-info-circle:before{content:""}.fa-cloud-meatball:before{content:""}.fa-camera:before{content:""}.fa-camera-alt:before{content:""}.fa-square-virus:before{content:""}.fa-meteor:before{content:""}.fa-car-on:before{content:""}.fa-sleigh:before{content:""}.fa-arrow-down-1-9:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-down:before{content:""}.fa-hand-holding-droplet:before{content:""}.fa-hand-holding-water:before{content:""}.fa-water:before{content:""}.fa-calendar-check:before{content:""}.fa-braille:before{content:""}.fa-prescription-bottle-medical:before{content:""}.fa-prescription-bottle-alt:before{content:""}.fa-landmark:before{content:""}.fa-truck:before{content:""}.fa-crosshairs:before{content:""}.fa-person-cane:before{content:""}.fa-tent:before{content:""}.fa-vest-patches:before{content:""}.fa-check-double:before{content:""}.fa-arrow-down-a-z:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-down:before{content:""}.fa-money-bill-wheat:before{content:""}.fa-cookie:before{content:""}.fa-arrow-rotate-left:before{content:""}.fa-arrow-left-rotate:before{content:""}.fa-arrow-rotate-back:before{content:""}.fa-arrow-rotate-backward:before{content:""}.fa-undo:before{content:""}.fa-hard-drive:before{content:""}.fa-hdd:before{content:""}.fa-face-grin-squint-tears:before{content:""}.fa-grin-squint-tears:before{content:""}.fa-dumbbell:before{content:""}.fa-rectangle-list:before{content:""}.fa-list-alt:before{content:""}.fa-tarp-droplet:before{content:""}.fa-house-medical-circle-check:before{content:""}.fa-person-skiing-nordic:before{content:""}.fa-skiing-nordic:before{content:""}.fa-calendar-plus:before{content:""}.fa-plane-arrival:before{content:""}.fa-circle-left:before{content:""}.fa-arrow-alt-circle-left:before{content:""}.fa-train-subway:before{content:""}.fa-subway:before{content:""}.fa-chart-gantt:before{content:""}.fa-indian-rupee-sign:before{content:""}.fa-indian-rupee:before{content:""}.fa-inr:before{content:""}.fa-crop-simple:before{content:""}.fa-crop-alt:before{content:""}.fa-money-bill-1:before{content:""}.fa-money-bill-alt:before{content:""}.fa-left-long:before{content:""}.fa-long-arrow-alt-left:before{content:""}.fa-dna:before{content:""}.fa-virus-slash:before{content:""}.fa-minus:before{content:""}.fa-subtract:before{content:""}.fa-chess:before{content:""}.fa-arrow-left-long:before{content:""}.fa-long-arrow-left:before{content:""}.fa-plug-circle-check:before{content:""}.fa-street-view:before{content:""}.fa-franc-sign:before{content:""}.fa-volume-off:before{content:""}.fa-hands-asl-interpreting:before{content:""}.fa-american-sign-language-interpreting:before{content:""}.fa-asl-interpreting:before{content:""}.fa-hands-american-sign-language-interpreting:before{content:""}.fa-gear:before{content:""}.fa-cog:before{content:""}.fa-droplet-slash:before{content:""}.fa-tint-slash:before{content:""}.fa-mosque:before{content:""}.fa-mosquito:before{content:""}.fa-star-of-david:before{content:""}.fa-person-military-rifle:before{content:""}.fa-cart-shopping:before{content:""}.fa-shopping-cart:before{content:""}.fa-vials:before{content:""}.fa-plug-circle-plus:before{content:""}.fa-place-of-worship:before{content:""}.fa-grip-vertical:before{content:""}.fa-arrow-turn-up:before{content:""}.fa-level-up:before{content:""}.fa-u:before{content:"U"}.fa-square-root-variable:before{content:""}.fa-square-root-alt:before{content:""}.fa-clock:before{content:""}.fa-clock-four:before{content:""}.fa-backward-step:before{content:""}.fa-step-backward:before{content:""}.fa-pallet:before{content:""}.fa-faucet:before{content:""}.fa-baseball-bat-ball:before{content:""}.fa-s:before{content:"S"}.fa-timeline:before{content:""}.fa-keyboard:before{content:""}.fa-caret-down:before{content:""}.fa-house-chimney-medical:before{content:""}.fa-clinic-medical:before{content:""}.fa-temperature-three-quarters:before{content:""}.fa-temperature-3:before{content:""}.fa-thermometer-3:before{content:""}.fa-thermometer-three-quarters:before{content:""}.fa-mobile-screen:before{content:""}.fa-mobile-android-alt:before{content:""}.fa-plane-up:before{content:""}.fa-piggy-bank:before{content:""}.fa-battery-half:before{content:""}.fa-battery-3:before{content:""}.fa-mountain-city:before{content:""}.fa-coins:before{content:""}.fa-khanda:before{content:""}.fa-sliders:before{content:""}.fa-sliders-h:before{content:""}.fa-folder-tree:before{content:""}.fa-network-wired:before{content:""}.fa-map-pin:before{content:""}.fa-hamsa:before{content:""}.fa-cent-sign:before{content:""}.fa-flask:before{content:""}.fa-person-pregnant:before{content:""}.fa-wand-sparkles:before{content:""}.fa-ellipsis-vertical:before{content:""}.fa-ellipsis-v:before{content:""}.fa-ticket:before{content:""}.fa-power-off:before{content:""}.fa-right-long:before{content:""}.fa-long-arrow-alt-right:before{content:""}.fa-flag-usa:before{content:""}.fa-laptop-file:before{content:""}.fa-tty:before{content:""}.fa-teletype:before{content:""}.fa-diagram-next:before{content:""}.fa-person-rifle:before{content:""}.fa-house-medical-circle-exclamation:before{content:""}.fa-closed-captioning:before{content:""}.fa-person-hiking:before{content:""}.fa-hiking:before{content:""}.fa-venus-double:before{content:""}.fa-images:before{content:""}.fa-calculator:before{content:""}.fa-people-pulling:before{content:""}.fa-n:before{content:"N"}.fa-cable-car:before{content:""}.fa-tram:before{content:""}.fa-cloud-rain:before{content:""}.fa-building-circle-xmark:before{content:""}.fa-ship:before{content:""}.fa-arrows-down-to-line:before{content:""}.fa-download:before{content:""}.fa-face-grin:before{content:""}.fa-grin:before{content:""}.fa-delete-left:before{content:""}.fa-backspace:before{content:""}.fa-eye-dropper:before{content:""}.fa-eye-dropper-empty:before{content:""}.fa-eyedropper:before{content:""}.fa-file-circle-check:before{content:""}.fa-forward:before{content:""}.fa-mobile:before{content:""}.fa-mobile-android:before{content:""}.fa-mobile-phone:before{content:""}.fa-face-meh:before{content:""}.fa-meh:before{content:""}.fa-align-center:before{content:""}.fa-book-skull:before{content:""}.fa-book-dead:before{content:""}.fa-id-card:before{content:""}.fa-drivers-license:before{content:""}.fa-outdent:before{content:""}.fa-dedent:before{content:""}.fa-heart-circle-exclamation:before{content:""}.fa-house:before{content:""}.fa-home:before{content:""}.fa-home-alt:before{content:""}.fa-home-lg-alt:before{content:""}.fa-calendar-week:before{content:""}.fa-laptop-medical:before{content:""}.fa-b:before{content:"B"}.fa-file-medical:before{content:""}.fa-dice-one:before{content:""}.fa-kiwi-bird:before{content:""}.fa-arrow-right-arrow-left:before{content:""}.fa-exchange:before{content:""}.fa-rotate-right:before{content:""}.fa-redo-alt:before{content:""}.fa-rotate-forward:before{content:""}.fa-utensils:before{content:""}.fa-cutlery:before{content:""}.fa-arrow-up-wide-short:before{content:""}.fa-sort-amount-up:before{content:""}.fa-mill-sign:before{content:""}.fa-bowl-rice:before{content:""}.fa-skull:before{content:""}.fa-tower-broadcast:before{content:""}.fa-broadcast-tower:before{content:""}.fa-truck-pickup:before{content:""}.fa-up-long:before{content:""}.fa-long-arrow-alt-up:before{content:""}.fa-stop:before{content:""}.fa-code-merge:before{content:""}.fa-upload:before{content:""}.fa-hurricane:before{content:""}.fa-mound:before{content:""}.fa-toilet-portable:before{content:""}.fa-compact-disc:before{content:""}.fa-file-arrow-down:before{content:""}.fa-file-download:before{content:""}.fa-caravan:before{content:""}.fa-shield-cat:before{content:""}.fa-bolt:before{content:""}.fa-zap:before{content:""}.fa-glass-water:before{content:""}.fa-oil-well:before{content:""}.fa-vault:before{content:""}.fa-mars:before{content:""}.fa-toilet:before{content:""}.fa-plane-circle-xmark:before{content:""}.fa-yen-sign:before{content:""}.fa-cny:before{content:""}.fa-jpy:before{content:""}.fa-rmb:before{content:""}.fa-yen:before{content:""}.fa-ruble-sign:before{content:""}.fa-rouble:before{content:""}.fa-rub:before{content:""}.fa-ruble:before{content:""}.fa-sun:before{content:""}.fa-guitar:before{content:""}.fa-face-laugh-wink:before{content:""}.fa-laugh-wink:before{content:""}.fa-horse-head:before{content:""}.fa-bore-hole:before{content:""}.fa-industry:before{content:""}.fa-circle-down:before{content:""}.fa-arrow-alt-circle-down:before{content:""}.fa-arrows-turn-to-dots:before{content:""}.fa-florin-sign:before{content:""}.fa-arrow-down-short-wide:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-amount-down-alt:before{content:""}.fa-less-than:before{content:"<"}.fa-angle-down:before{content:""}.fa-car-tunnel:before{content:""}.fa-head-side-cough:before{content:""}.fa-grip-lines:before{content:""}.fa-thumbs-down:before{content:""}.fa-user-lock:before{content:""}.fa-arrow-right-long:before{content:""}.fa-long-arrow-right:before{content:""}.fa-anchor-circle-xmark:before{content:""}.fa-ellipsis:before{content:""}.fa-ellipsis-h:before{content:""}.fa-chess-pawn:before{content:""}.fa-kit-medical:before{content:""}.fa-first-aid:before{content:""}.fa-person-through-window:before{content:""}.fa-toolbox:before{content:""}.fa-hands-holding-circle:before{content:""}.fa-bug:before{content:""}.fa-credit-card:before{content:""}.fa-credit-card-alt:before{content:""}.fa-car:before{content:""}.fa-automobile:before{content:""}.fa-hand-holding-hand:before{content:""}.fa-book-open-reader:before{content:""}.fa-book-reader:before{content:""}.fa-mountain-sun:before{content:""}.fa-arrows-left-right-to-line:before{content:""}.fa-dice-d20:before{content:""}.fa-truck-droplet:before{content:""}.fa-file-circle-xmark:before{content:""}.fa-temperature-arrow-up:before{content:""}.fa-temperature-up:before{content:""}.fa-medal:before{content:""}.fa-bed:before{content:""}.fa-square-h:before{content:""}.fa-h-square:before{content:""}.fa-podcast:before{content:""}.fa-temperature-full:before{content:""}.fa-temperature-4:before{content:""}.fa-thermometer-4:before{content:""}.fa-thermometer-full:before{content:""}.fa-bell:before{content:""}.fa-superscript:before{content:""}.fa-plug-circle-xmark:before{content:""}.fa-star-of-life:before{content:""}.fa-phone-slash:before{content:""}.fa-paint-roller:before{content:""}.fa-handshake-angle:before{content:""}.fa-hands-helping:before{content:""}.fa-location-dot:before{content:""}.fa-map-marker-alt:before{content:""}.fa-file:before{content:""}.fa-greater-than:before{content:">"}.fa-person-swimming:before{content:""}.fa-swimmer:before{content:""}.fa-arrow-down:before{content:""}.fa-droplet:before{content:""}.fa-tint:before{content:""}.fa-eraser:before{content:""}.fa-earth-americas:before{content:""}.fa-earth:before{content:""}.fa-earth-america:before{content:""}.fa-globe-americas:before{content:""}.fa-person-burst:before{content:""}.fa-dove:before{content:""}.fa-battery-empty:before{content:""}.fa-battery-0:before{content:""}.fa-socks:before{content:""}.fa-inbox:before{content:""}.fa-section:before{content:""}.fa-gauge-high:before{content:""}.fa-tachometer-alt:before{content:""}.fa-tachometer-alt-fast:before{content:""}.fa-envelope-open-text:before{content:""}.fa-hospital:before{content:""}.fa-hospital-alt:before{content:""}.fa-hospital-wide:before{content:""}.fa-wine-bottle:before{content:""}.fa-chess-rook:before{content:""}.fa-bars-staggered:before{content:""}.fa-reorder:before{content:""}.fa-stream:before{content:""}.fa-dharmachakra:before{content:""}.fa-hotdog:before{content:""}.fa-person-walking-with-cane:before{content:""}.fa-blind:before{content:""}.fa-drum:before{content:""}.fa-ice-cream:before{content:""}.fa-heart-circle-bolt:before{content:""}.fa-fax:before{content:""}.fa-paragraph:before{content:""}.fa-check-to-slot:before{content:""}.fa-vote-yea:before{content:""}.fa-star-half:before{content:""}.fa-boxes-stacked:before{content:""}.fa-boxes:before{content:""}.fa-boxes-alt:before{content:""}.fa-link:before{content:""}.fa-chain:before{content:""}.fa-ear-listen:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-tree-city:before{content:""}.fa-play:before{content:""}.fa-font:before{content:""}.fa-table-cells-row-lock:before{content:""}.fa-rupiah-sign:before{content:""}.fa-magnifying-glass:before{content:""}.fa-search:before{content:""}.fa-table-tennis-paddle-ball:before{content:""}.fa-ping-pong-paddle-ball:before{content:""}.fa-table-tennis:before{content:""}.fa-person-dots-from-line:before{content:""}.fa-diagnoses:before{content:""}.fa-trash-can-arrow-up:before{content:""}.fa-trash-restore-alt:before{content:""}.fa-naira-sign:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-walkie-talkie:before{content:""}.fa-file-pen:before{content:""}.fa-file-edit:before{content:""}.fa-receipt:before{content:""}.fa-square-pen:before{content:""}.fa-pen-square:before{content:""}.fa-pencil-square:before{content:""}.fa-suitcase-rolling:before{content:""}.fa-person-circle-exclamation:before{content:""}.fa-chevron-down:before{content:""}.fa-battery-full:before{content:""}.fa-battery:before{content:""}.fa-battery-5:before{content:""}.fa-skull-crossbones:before{content:""}.fa-code-compare:before{content:""}.fa-list-ul:before{content:""}.fa-list-dots:before{content:""}.fa-school-lock:before{content:""}.fa-tower-cell:before{content:""}.fa-down-long:before{content:""}.fa-long-arrow-alt-down:before{content:""}.fa-ranking-star:before{content:""}.fa-chess-king:before{content:""}.fa-person-harassing:before{content:""}.fa-brazilian-real-sign:before{content:""}.fa-landmark-dome:before{content:""}.fa-landmark-alt:before{content:""}.fa-arrow-up:before{content:""}.fa-tv:before{content:""}.fa-television:before{content:""}.fa-tv-alt:before{content:""}.fa-shrimp:before{content:""}.fa-list-check:before{content:""}.fa-tasks:before{content:""}.fa-jug-detergent:before{content:""}.fa-circle-user:before{content:""}.fa-user-circle:before{content:""}.fa-user-shield:before{content:""}.fa-wind:before{content:""}.fa-car-burst:before{content:""}.fa-car-crash:before{content:""}.fa-y:before{content:"Y"}.fa-person-snowboarding:before{content:""}.fa-snowboarding:before{content:""}.fa-truck-fast:before{content:""}.fa-shipping-fast:before{content:""}.fa-fish:before{content:""}.fa-user-graduate:before{content:""}.fa-circle-half-stroke:before{content:""}.fa-adjust:before{content:""}.fa-clapperboard:before{content:""}.fa-circle-radiation:before{content:""}.fa-radiation-alt:before{content:""}.fa-baseball:before{content:""}.fa-baseball-ball:before{content:""}.fa-jet-fighter-up:before{content:""}.fa-diagram-project:before{content:""}.fa-project-diagram:before{content:""}.fa-copy:before{content:""}.fa-volume-xmark:before{content:""}.fa-volume-mute:before{content:""}.fa-volume-times:before{content:""}.fa-hand-sparkles:before{content:""}.fa-grip:before{content:""}.fa-grip-horizontal:before{content:""}.fa-share-from-square:before{content:""}.fa-share-square:before{content:""}.fa-child-combatant:before{content:""}.fa-child-rifle:before{content:""}.fa-gun:before{content:""}.fa-square-phone:before{content:""}.fa-phone-square:before{content:""}.fa-plus:before{content:"+"}.fa-add:before{content:"+"}.fa-expand:before{content:""}.fa-computer:before{content:""}.fa-xmark:before{content:""}.fa-close:before{content:""}.fa-multiply:before{content:""}.fa-remove:before{content:""}.fa-times:before{content:""}.fa-arrows-up-down-left-right:before{content:""}.fa-arrows:before{content:""}.fa-chalkboard-user:before{content:""}.fa-chalkboard-teacher:before{content:""}.fa-peso-sign:before{content:""}.fa-building-shield:before{content:""}.fa-baby:before{content:""}.fa-users-line:before{content:""}.fa-quote-left:before{content:""}.fa-quote-left-alt:before{content:""}.fa-tractor:before{content:""}.fa-trash-arrow-up:before{content:""}.fa-trash-restore:before{content:""}.fa-arrow-down-up-lock:before{content:""}.fa-lines-leaning:before{content:""}.fa-ruler-combined:before{content:""}.fa-copyright:before{content:""}.fa-equals:before{content:"="}.fa-blender:before{content:""}.fa-teeth:before{content:""}.fa-shekel-sign:before{content:""}.fa-ils:before{content:""}.fa-shekel:before{content:""}.fa-sheqel:before{content:""}.fa-sheqel-sign:before{content:""}.fa-map:before{content:""}.fa-rocket:before{content:""}.fa-photo-film:before{content:""}.fa-photo-video:before{content:""}.fa-folder-minus:before{content:""}.fa-store:before{content:""}.fa-arrow-trend-up:before{content:""}.fa-plug-circle-minus:before{content:""}.fa-sign-hanging:before{content:""}.fa-sign:before{content:""}.fa-bezier-curve:before{content:""}.fa-bell-slash:before{content:""}.fa-tablet:before{content:""}.fa-tablet-android:before{content:""}.fa-school-flag:before{content:""}.fa-fill:before{content:""}.fa-angle-up:before{content:""}.fa-drumstick-bite:before{content:""}.fa-holly-berry:before{content:""}.fa-chevron-left:before{content:""}.fa-bacteria:before{content:""}.fa-hand-lizard:before{content:""}.fa-notdef:before{content:""}.fa-disease:before{content:""}.fa-briefcase-medical:before{content:""}.fa-genderless:before{content:""}.fa-chevron-right:before{content:""}.fa-retweet:before{content:""}.fa-car-rear:before{content:""}.fa-car-alt:before{content:""}.fa-pump-soap:before{content:""}.fa-video-slash:before{content:""}.fa-battery-quarter:before{content:""}.fa-battery-2:before{content:""}.fa-radio:before{content:""}.fa-baby-carriage:before{content:""}.fa-carriage-baby:before{content:""}.fa-traffic-light:before{content:""}.fa-thermometer:before{content:""}.fa-vr-cardboard:before{content:""}.fa-hand-middle-finger:before{content:""}.fa-percent:before{content:"%"}.fa-percentage:before{content:"%"}.fa-truck-moving:before{content:""}.fa-glass-water-droplet:before{content:""}.fa-display:before{content:""}.fa-face-smile:before{content:""}.fa-smile:before{content:""}.fa-thumbtack:before{content:""}.fa-thumb-tack:before{content:""}.fa-trophy:before{content:""}.fa-person-praying:before{content:""}.fa-pray:before{content:""}.fa-hammer:before{content:""}.fa-hand-peace:before{content:""}.fa-rotate:before{content:""}.fa-sync-alt:before{content:""}.fa-spinner:before{content:""}.fa-robot:before{content:""}.fa-peace:before{content:""}.fa-gears:before{content:""}.fa-cogs:before{content:""}.fa-warehouse:before{content:""}.fa-arrow-up-right-dots:before{content:""}.fa-splotch:before{content:""}.fa-face-grin-hearts:before{content:""}.fa-grin-hearts:before{content:""}.fa-dice-four:before{content:""}.fa-sim-card:before{content:""}.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-mercury:before{content:""}.fa-arrow-turn-down:before{content:""}.fa-level-down:before{content:""}.fa-person-falling-burst:before{content:""}.fa-award:before{content:""}.fa-ticket-simple:before{content:""}.fa-ticket-alt:before{content:""}.fa-building:before{content:""}.fa-angles-left:before{content:""}.fa-angle-double-left:before{content:""}.fa-qrcode:before{content:""}.fa-clock-rotate-left:before{content:""}.fa-history:before{content:""}.fa-face-grin-beam-sweat:before{content:""}.fa-grin-beam-sweat:before{content:""}.fa-file-export:before{content:""}.fa-arrow-right-from-file:before{content:""}.fa-shield:before{content:""}.fa-shield-blank:before{content:""}.fa-arrow-up-short-wide:before{content:""}.fa-sort-amount-up-alt:before{content:""}.fa-house-medical:before{content:""}.fa-golf-ball-tee:before{content:""}.fa-golf-ball:before{content:""}.fa-circle-chevron-left:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-house-chimney-window:before{content:""}.fa-pen-nib:before{content:""}.fa-tent-arrow-turn-left:before{content:""}.fa-tents:before{content:""}.fa-wand-magic:before{content:""}.fa-magic:before{content:""}.fa-dog:before{content:""}.fa-carrot:before{content:""}.fa-moon:before{content:""}.fa-wine-glass-empty:before{content:""}.fa-wine-glass-alt:before{content:""}.fa-cheese:before{content:""}.fa-yin-yang:before{content:""}.fa-music:before{content:""}.fa-code-commit:before{content:""}.fa-temperature-low:before{content:""}.fa-person-biking:before{content:""}.fa-biking:before{content:""}.fa-broom:before{content:""}.fa-shield-heart:before{content:""}.fa-gopuram:before{content:""}.fa-earth-oceania:before{content:""}.fa-globe-oceania:before{content:""}.fa-square-xmark:before{content:""}.fa-times-square:before{content:""}.fa-xmark-square:before{content:""}.fa-hashtag:before{content:"#"}.fa-up-right-and-down-left-from-center:before{content:""}.fa-expand-alt:before{content:""}.fa-oil-can:before{content:""}.fa-t:before{content:"T"}.fa-hippo:before{content:""}.fa-chart-column:before{content:""}.fa-infinity:before{content:""}.fa-vial-circle-check:before{content:""}.fa-person-arrow-down-to-line:before{content:""}.fa-voicemail:before{content:""}.fa-fan:before{content:""}.fa-person-walking-luggage:before{content:""}.fa-up-down:before{content:""}.fa-arrows-alt-v:before{content:""}.fa-cloud-moon-rain:before{content:""}.fa-calendar:before{content:""}.fa-trailer:before{content:""}.fa-bahai:before{content:""}.fa-haykal:before{content:""}.fa-sd-card:before{content:""}.fa-dragon:before{content:""}.fa-shoe-prints:before{content:""}.fa-circle-plus:before{content:""}.fa-plus-circle:before{content:""}.fa-face-grin-tongue-wink:before{content:""}.fa-grin-tongue-wink:before{content:""}.fa-hand-holding:before{content:""}.fa-plug-circle-exclamation:before{content:""}.fa-link-slash:before{content:""}.fa-chain-broken:before{content:""}.fa-chain-slash:before{content:""}.fa-unlink:before{content:""}.fa-clone:before{content:""}.fa-person-walking-arrow-loop-left:before{content:""}.fa-arrow-up-z-a:before{content:""}.fa-sort-alpha-up-alt:before{content:""}.fa-fire-flame-curved:before{content:""}.fa-fire-alt:before{content:""}.fa-tornado:before{content:""}.fa-file-circle-plus:before{content:""}.fa-book-quran:before{content:""}.fa-quran:before{content:""}.fa-anchor:before{content:""}.fa-border-all:before{content:""}.fa-face-angry:before{content:""}.fa-angry:before{content:""}.fa-cookie-bite:before{content:""}.fa-arrow-trend-down:before{content:""}.fa-rss:before{content:""}.fa-feed:before{content:""}.fa-draw-polygon:before{content:""}.fa-scale-balanced:before{content:""}.fa-balance-scale:before{content:""}.fa-gauge-simple-high:before{content:""}.fa-tachometer:before{content:""}.fa-tachometer-fast:before{content:""}.fa-shower:before{content:""}.fa-desktop:before{content:""}.fa-desktop-alt:before{content:""}.fa-m:before{content:"M"}.fa-table-list:before{content:""}.fa-th-list:before{content:""}.fa-comment-sms:before{content:""}.fa-sms:before{content:""}.fa-book:before{content:""}.fa-user-plus:before{content:""}.fa-check:before{content:""}.fa-battery-three-quarters:before{content:""}.fa-battery-4:before{content:""}.fa-house-circle-check:before{content:""}.fa-angle-left:before{content:""}.fa-diagram-successor:before{content:""}.fa-truck-arrow-right:before{content:""}.fa-arrows-split-up-and-left:before{content:""}.fa-hand-fist:before{content:""}.fa-fist-raised:before{content:""}.fa-cloud-moon:before{content:""}.fa-briefcase:before{content:""}.fa-person-falling:before{content:""}.fa-image-portrait:before{content:""}.fa-portrait:before{content:""}.fa-user-tag:before{content:""}.fa-rug:before{content:""}.fa-earth-europe:before{content:""}.fa-globe-europe:before{content:""}.fa-cart-flatbed-suitcase:before{content:""}.fa-luggage-cart:before{content:""}.fa-rectangle-xmark:before{content:""}.fa-rectangle-times:before{content:""}.fa-times-rectangle:before{content:""}.fa-window-close:before{content:""}.fa-baht-sign:before{content:""}.fa-book-open:before{content:""}.fa-book-journal-whills:before{content:""}.fa-journal-whills:before{content:""}.fa-handcuffs:before{content:""}.fa-triangle-exclamation:before{content:""}.fa-exclamation-triangle:before{content:""}.fa-warning:before{content:""}.fa-database:before{content:""}.fa-share:before{content:""}.fa-mail-forward:before{content:""}.fa-bottle-droplet:before{content:""}.fa-mask-face:before{content:""}.fa-hill-rockslide:before{content:""}.fa-right-left:before{content:""}.fa-exchange-alt:before{content:""}.fa-paper-plane:before{content:""}.fa-road-circle-exclamation:before{content:""}.fa-dungeon:before{content:""}.fa-align-right:before{content:""}.fa-money-bill-1-wave:before{content:""}.fa-money-bill-wave-alt:before{content:""}.fa-life-ring:before{content:""}.fa-hands:before{content:""}.fa-sign-language:before{content:""}.fa-signing:before{content:""}.fa-calendar-day:before{content:""}.fa-water-ladder:before{content:""}.fa-ladder-water:before{content:""}.fa-swimming-pool:before{content:""}.fa-arrows-up-down:before{content:""}.fa-arrows-v:before{content:""}.fa-face-grimace:before{content:""}.fa-grimace:before{content:""}.fa-wheelchair-move:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-turn-down:before{content:""}.fa-level-down-alt:before{content:""}.fa-person-walking-arrow-right:before{content:""}.fa-square-envelope:before{content:""}.fa-envelope-square:before{content:""}.fa-dice:before{content:""}.fa-bowling-ball:before{content:""}.fa-brain:before{content:""}.fa-bandage:before{content:""}.fa-band-aid:before{content:""}.fa-calendar-minus:before{content:""}.fa-circle-xmark:before{content:""}.fa-times-circle:before{content:""}.fa-xmark-circle:before{content:""}.fa-gifts:before{content:""}.fa-hotel:before{content:""}.fa-earth-asia:before{content:""}.fa-globe-asia:before{content:""}.fa-id-card-clip:before{content:""}.fa-id-card-alt:before{content:""}.fa-magnifying-glass-plus:before{content:""}.fa-search-plus:before{content:""}.fa-thumbs-up:before{content:""}.fa-user-clock:before{content:""}.fa-hand-dots:before{content:""}.fa-allergies:before{content:""}.fa-file-invoice:before{content:""}.fa-window-minimize:before{content:""}.fa-mug-saucer:before{content:""}.fa-coffee:before{content:""}.fa-brush:before{content:""}.fa-mask:before{content:""}.fa-magnifying-glass-minus:before{content:""}.fa-search-minus:before{content:""}.fa-ruler-vertical:before{content:""}.fa-user-large:before{content:""}.fa-user-alt:before{content:""}.fa-train-tram:before{content:""}.fa-user-nurse:before{content:""}.fa-syringe:before{content:""}.fa-cloud-sun:before{content:""}.fa-stopwatch-20:before{content:""}.fa-square-full:before{content:""}.fa-magnet:before{content:""}.fa-jar:before{content:""}.fa-note-sticky:before{content:""}.fa-sticky-note:before{content:""}.fa-bug-slash:before{content:""}.fa-arrow-up-from-water-pump:before{content:""}.fa-bone:before{content:""}.fa-user-injured:before{content:""}.fa-face-sad-tear:before{content:""}.fa-sad-tear:before{content:""}.fa-plane:before{content:""}.fa-tent-arrows-down:before{content:""}.fa-exclamation:before{content:"!"}.fa-arrows-spin:before{content:""}.fa-print:before{content:""}.fa-turkish-lira-sign:before{content:""}.fa-try:before{content:""}.fa-turkish-lira:before{content:""}.fa-dollar-sign:before{content:"$"}.fa-dollar:before{content:"$"}.fa-usd:before{content:"$"}.fa-x:before{content:"X"}.fa-magnifying-glass-dollar:before{content:""}.fa-search-dollar:before{content:""}.fa-users-gear:before{content:""}.fa-users-cog:before{content:""}.fa-person-military-pointing:before{content:""}.fa-building-columns:before{content:""}.fa-bank:before{content:""}.fa-institution:before{content:""}.fa-museum:before{content:""}.fa-university:before{content:""}.fa-umbrella:before{content:""}.fa-trowel:before{content:""}.fa-d:before{content:"D"}.fa-stapler:before{content:""}.fa-masks-theater:before{content:""}.fa-theater-masks:before{content:""}.fa-kip-sign:before{content:""}.fa-hand-point-left:before{content:""}.fa-handshake-simple:before{content:""}.fa-handshake-alt:before{content:""}.fa-jet-fighter:before{content:""}.fa-fighter-jet:before{content:""}.fa-square-share-nodes:before{content:""}.fa-share-alt-square:before{content:""}.fa-barcode:before{content:""}.fa-plus-minus:before{content:""}.fa-video:before{content:""}.fa-video-camera:before{content:""}.fa-graduation-cap:before{content:""}.fa-mortar-board:before{content:""}.fa-hand-holding-medical:before{content:""}.fa-person-circle-check:before{content:""}.fa-turn-up:before{content:""}.fa-level-up-alt:before{content:""}.sr-only,.fa-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.sr-only-focusable:not(:focus),.fa-sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:root,:host{--fa-style-family-brands: "Font Awesome 6 Brands";--fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(/build/assets/fa-brands-400-232c6f6a.woff2) format("woff2"),url(/build/assets/fa-brands-400-e28096fa.ttf) format("truetype")}.fab,.fa-brands{font-weight:400}.fa-monero:before{content:""}.fa-hooli:before{content:""}.fa-yelp:before{content:""}.fa-cc-visa:before{content:""}.fa-lastfm:before{content:""}.fa-shopware:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-aws:before{content:""}.fa-redhat:before{content:""}.fa-yoast:before{content:""}.fa-cloudflare:before{content:""}.fa-ups:before{content:""}.fa-pixiv:before{content:""}.fa-wpexplorer:before{content:""}.fa-dyalog:before{content:""}.fa-bity:before{content:""}.fa-stackpath:before{content:""}.fa-buysellads:before{content:""}.fa-first-order:before{content:""}.fa-modx:before{content:""}.fa-guilded:before{content:""}.fa-vnv:before{content:""}.fa-square-js:before{content:""}.fa-js-square:before{content:""}.fa-microsoft:before{content:""}.fa-qq:before{content:""}.fa-orcid:before{content:""}.fa-java:before{content:""}.fa-invision:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-centercode:before{content:""}.fa-glide-g:before{content:""}.fa-drupal:before{content:""}.fa-jxl:before{content:""}.fa-hire-a-helper:before{content:""}.fa-creative-commons-by:before{content:""}.fa-unity:before{content:""}.fa-whmcs:before{content:""}.fa-rocketchat:before{content:""}.fa-vk:before{content:""}.fa-untappd:before{content:""}.fa-mailchimp:before{content:""}.fa-css3-alt:before{content:""}.fa-square-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-vimeo-v:before{content:""}.fa-contao:before{content:""}.fa-square-font-awesome:before{content:""}.fa-deskpro:before{content:""}.fa-brave:before{content:""}.fa-sistrix:before{content:""}.fa-square-instagram:before{content:""}.fa-instagram-square:before{content:""}.fa-battle-net:before{content:""}.fa-the-red-yeti:before{content:""}.fa-square-hacker-news:before{content:""}.fa-hacker-news-square:before{content:""}.fa-edge:before{content:""}.fa-threads:before{content:""}.fa-napster:before{content:""}.fa-square-snapchat:before{content:""}.fa-snapchat-square:before{content:""}.fa-google-plus-g:before{content:""}.fa-artstation:before{content:""}.fa-markdown:before{content:""}.fa-sourcetree:before{content:""}.fa-google-plus:before{content:""}.fa-diaspora:before{content:""}.fa-foursquare:before{content:""}.fa-stack-overflow:before{content:""}.fa-github-alt:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-pagelines:before{content:""}.fa-algolia:before{content:""}.fa-red-river:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-safari:before{content:""}.fa-google:before{content:""}.fa-square-font-awesome-stroke:before{content:""}.fa-font-awesome-alt:before{content:""}.fa-atlassian:before{content:""}.fa-linkedin-in:before{content:""}.fa-digital-ocean:before{content:""}.fa-nimblr:before{content:""}.fa-chromecast:before{content:""}.fa-evernote:before{content:""}.fa-hacker-news:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-adversal:before{content:""}.fa-creative-commons:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-fonticons:before{content:""}.fa-weixin:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-codepen:before{content:""}.fa-git-alt:before{content:""}.fa-lyft:before{content:""}.fa-rev:before{content:""}.fa-windows:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-square-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-meetup:before{content:""}.fa-centos:before{content:""}.fa-adn:before{content:""}.fa-cloudsmith:before{content:""}.fa-opensuse:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-square-dribbble:before{content:""}.fa-dribbble-square:before{content:""}.fa-codiepie:before{content:""}.fa-node:before{content:""}.fa-mix:before{content:""}.fa-steam:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-scribd:before{content:""}.fa-debian:before{content:""}.fa-openid:before{content:""}.fa-instalod:before{content:""}.fa-expeditedssl:before{content:""}.fa-sellcast:before{content:""}.fa-square-twitter:before{content:""}.fa-twitter-square:before{content:""}.fa-r-project:before{content:""}.fa-delicious:before{content:""}.fa-freebsd:before{content:""}.fa-vuejs:before{content:""}.fa-accusoft:before{content:""}.fa-ioxhost:before{content:""}.fa-fonticons-fi:before{content:""}.fa-app-store:before{content:""}.fa-cc-mastercard:before{content:""}.fa-itunes-note:before{content:""}.fa-golang:before{content:""}.fa-kickstarter:before{content:""}.fa-square-kickstarter:before{content:""}.fa-grav:before{content:""}.fa-weibo:before{content:""}.fa-uncharted:before{content:""}.fa-firstdraft:before{content:""}.fa-square-youtube:before{content:""}.fa-youtube-square:before{content:""}.fa-wikipedia-w:before{content:""}.fa-wpressr:before{content:""}.fa-rendact:before{content:""}.fa-angellist:before{content:""}.fa-galactic-republic:before{content:""}.fa-nfc-directional:before{content:""}.fa-skype:before{content:""}.fa-joget:before{content:""}.fa-fedora:before{content:""}.fa-stripe-s:before{content:""}.fa-meta:before{content:""}.fa-laravel:before{content:""}.fa-hotjar:before{content:""}.fa-bluetooth-b:before{content:""}.fa-square-letterboxd:before{content:""}.fa-sticker-mule:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-hips:before{content:""}.fa-behance:before{content:""}.fa-reddit:before{content:""}.fa-discord:before{content:""}.fa-chrome:before{content:""}.fa-app-store-ios:before{content:""}.fa-cc-discover:before{content:""}.fa-wpbeginner:before{content:""}.fa-confluence:before{content:""}.fa-shoelace:before{content:""}.fa-mdb:before{content:""}.fa-dochub:before{content:""}.fa-accessible-icon:before{content:""}.fa-ebay:before{content:""}.fa-amazon:before{content:""}.fa-unsplash:before{content:""}.fa-yarn:before{content:""}.fa-square-steam:before{content:""}.fa-steam-square:before{content:""}.fa-500px:before{content:""}.fa-square-vimeo:before{content:""}.fa-vimeo-square:before{content:""}.fa-asymmetrik:before{content:""}.fa-font-awesome:before{content:""}.fa-font-awesome-flag:before{content:""}.fa-font-awesome-logo-full:before{content:""}.fa-gratipay:before{content:""}.fa-apple:before{content:""}.fa-hive:before{content:""}.fa-gitkraken:before{content:""}.fa-keybase:before{content:""}.fa-apple-pay:before{content:""}.fa-padlet:before{content:""}.fa-amazon-pay:before{content:""}.fa-square-github:before{content:""}.fa-github-square:before{content:""}.fa-stumbleupon:before{content:""}.fa-fedex:before{content:""}.fa-phoenix-framework:before{content:""}.fa-shopify:before{content:""}.fa-neos:before{content:""}.fa-square-threads:before{content:""}.fa-hackerrank:before{content:""}.fa-researchgate:before{content:""}.fa-swift:before{content:""}.fa-angular:before{content:""}.fa-speakap:before{content:""}.fa-angrycreative:before{content:""}.fa-y-combinator:before{content:""}.fa-empire:before{content:""}.fa-envira:before{content:""}.fa-google-scholar:before{content:""}.fa-square-gitlab:before{content:""}.fa-gitlab-square:before{content:""}.fa-studiovinari:before{content:""}.fa-pied-piper:before{content:""}.fa-wordpress:before{content:""}.fa-product-hunt:before{content:""}.fa-firefox:before{content:""}.fa-linode:before{content:""}.fa-goodreads:before{content:""}.fa-square-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-jsfiddle:before{content:""}.fa-sith:before{content:""}.fa-themeisle:before{content:""}.fa-page4:before{content:""}.fa-hashnode:before{content:""}.fa-react:before{content:""}.fa-cc-paypal:before{content:""}.fa-squarespace:before{content:""}.fa-cc-stripe:before{content:""}.fa-creative-commons-share:before{content:""}.fa-bitcoin:before{content:""}.fa-keycdn:before{content:""}.fa-opera:before{content:""}.fa-itch-io:before{content:""}.fa-umbraco:before{content:""}.fa-galactic-senate:before{content:""}.fa-ubuntu:before{content:""}.fa-draft2digital:before{content:""}.fa-stripe:before{content:""}.fa-houzz:before{content:""}.fa-gg:before{content:""}.fa-dhl:before{content:""}.fa-square-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-xing:before{content:""}.fa-blackberry:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-playstation:before{content:""}.fa-quinscape:before{content:""}.fa-less:before{content:""}.fa-blogger-b:before{content:""}.fa-opencart:before{content:""}.fa-vine:before{content:""}.fa-signal-messenger:before{content:""}.fa-paypal:before{content:""}.fa-gitlab:before{content:""}.fa-typo3:before{content:""}.fa-reddit-alien:before{content:""}.fa-yahoo:before{content:""}.fa-dailymotion:before{content:""}.fa-affiliatetheme:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-bootstrap:before{content:""}.fa-odnoklassniki:before{content:""}.fa-nfc-symbol:before{content:""}.fa-mintbit:before{content:""}.fa-ethereum:before{content:""}.fa-speaker-deck:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-patreon:before{content:""}.fa-avianex:before{content:""}.fa-ello:before{content:""}.fa-gofore:before{content:""}.fa-bimobject:before{content:""}.fa-brave-reverse:before{content:""}.fa-facebook-f:before{content:""}.fa-square-google-plus:before{content:""}.fa-google-plus-square:before{content:""}.fa-web-awesome:before{content:""}.fa-mandalorian:before{content:""}.fa-first-order-alt:before{content:""}.fa-osi:before{content:""}.fa-google-wallet:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-periscope:before{content:""}.fa-fulcrum:before{content:""}.fa-cloudscale:before{content:""}.fa-forumbee:before{content:""}.fa-mizuni:before{content:""}.fa-schlix:before{content:""}.fa-square-xing:before{content:""}.fa-xing-square:before{content:""}.fa-bandcamp:before{content:""}.fa-wpforms:before{content:""}.fa-cloudversify:before{content:""}.fa-usps:before{content:""}.fa-megaport:before{content:""}.fa-magento:before{content:""}.fa-spotify:before{content:""}.fa-optin-monster:before{content:""}.fa-fly:before{content:""}.fa-aviato:before{content:""}.fa-itunes:before{content:""}.fa-cuttlefish:before{content:""}.fa-blogger:before{content:""}.fa-flickr:before{content:""}.fa-viber:before{content:""}.fa-soundcloud:before{content:""}.fa-digg:before{content:""}.fa-tencent-weibo:before{content:""}.fa-letterboxd:before{content:""}.fa-symfony:before{content:""}.fa-maxcdn:before{content:""}.fa-etsy:before{content:""}.fa-facebook-messenger:before{content:""}.fa-audible:before{content:""}.fa-think-peaks:before{content:""}.fa-bilibili:before{content:""}.fa-erlang:before{content:""}.fa-x-twitter:before{content:""}.fa-cotton-bureau:before{content:""}.fa-dashcube:before{content:""}.fa-42-group:before{content:""}.fa-innosoft:before{content:""}.fa-stack-exchange:before{content:""}.fa-elementor:before{content:""}.fa-square-pied-piper:before{content:""}.fa-pied-piper-square:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-palfed:before{content:""}.fa-superpowers:before{content:""}.fa-resolving:before{content:""}.fa-xbox:before{content:""}.fa-square-web-awesome-stroke:before{content:""}.fa-searchengin:before{content:""}.fa-tiktok:before{content:""}.fa-square-facebook:before{content:""}.fa-facebook-square:before{content:""}.fa-renren:before{content:""}.fa-linux:before{content:""}.fa-glide:before{content:""}.fa-linkedin:before{content:""}.fa-hubspot:before{content:""}.fa-deploydog:before{content:""}.fa-twitch:before{content:""}.fa-ravelry:before{content:""}.fa-mixer:before{content:""}.fa-square-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-vimeo:before{content:""}.fa-mendeley:before{content:""}.fa-uniregistry:before{content:""}.fa-figma:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-dropbox:before{content:""}.fa-instagram:before{content:""}.fa-cmplid:before{content:""}.fa-upwork:before{content:""}.fa-facebook:before{content:""}.fa-gripfire:before{content:""}.fa-jedi-order:before{content:""}.fa-uikit:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-phabricator:before{content:""}.fa-ussunnah:before{content:""}.fa-earlybirds:before{content:""}.fa-trade-federation:before{content:""}.fa-autoprefixer:before{content:""}.fa-whatsapp:before{content:""}.fa-square-upwork:before{content:""}.fa-slideshare:before{content:""}.fa-google-play:before{content:""}.fa-viadeo:before{content:""}.fa-line:before{content:""}.fa-google-drive:before{content:""}.fa-servicestack:before{content:""}.fa-simplybuilt:before{content:""}.fa-bitbucket:before{content:""}.fa-imdb:before{content:""}.fa-deezer:before{content:""}.fa-raspberry-pi:before{content:""}.fa-jira:before{content:""}.fa-docker:before{content:""}.fa-screenpal:before{content:""}.fa-bluetooth:before{content:""}.fa-gitter:before{content:""}.fa-d-and-d:before{content:""}.fa-microblog:before{content:""}.fa-cc-diners-club:before{content:""}.fa-gg-circle:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-kickstarter-k:before{content:""}.fa-yandex:before{content:""}.fa-readme:before{content:""}.fa-html5:before{content:""}.fa-sellsy:before{content:""}.fa-square-web-awesome:before{content:""}.fa-sass:before{content:""}.fa-wirsindhandwerk:before{content:""}.fa-wsh:before{content:""}.fa-buromobelexperte:before{content:""}.fa-salesforce:before{content:""}.fa-octopus-deploy:before{content:""}.fa-medapps:before{content:""}.fa-ns8:before{content:""}.fa-pinterest-p:before{content:""}.fa-apper:before{content:""}.fa-fort-awesome:before{content:""}.fa-waze:before{content:""}.fa-bluesky:before{content:""}.fa-cc-jcb:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-rust:before{content:""}.fa-wix:before{content:""}.fa-square-behance:before{content:""}.fa-behance-square:before{content:""}.fa-supple:before{content:""}.fa-webflow:before{content:""}.fa-rebel:before{content:""}.fa-css3:before{content:""}.fa-staylinked:before{content:""}.fa-kaggle:before{content:""}.fa-space-awesome:before{content:""}.fa-deviantart:before{content:""}.fa-cpanel:before{content:""}.fa-goodreads-g:before{content:""}.fa-square-git:before{content:""}.fa-git-square:before{content:""}.fa-square-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-trello:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-get-pocket:before{content:""}.fa-perbyte:before{content:""}.fa-grunt:before{content:""}.fa-weebly:before{content:""}.fa-connectdevelop:before{content:""}.fa-leanpub:before{content:""}.fa-black-tie:before{content:""}.fa-themeco:before{content:""}.fa-python:before{content:""}.fa-android:before{content:""}.fa-bots:before{content:""}.fa-free-code-camp:before{content:""}.fa-hornbill:before{content:""}.fa-js:before{content:""}.fa-ideal:before{content:""}.fa-git:before{content:""}.fa-dev:before{content:""}.fa-sketch:before{content:""}.fa-yandex-international:before{content:""}.fa-cc-amex:before{content:""}.fa-uber:before{content:""}.fa-github:before{content:""}.fa-php:before{content:""}.fa-alipay:before{content:""}.fa-youtube:before{content:""}.fa-skyatlas:before{content:""}.fa-firefox-browser:before{content:""}.fa-replyd:before{content:""}.fa-suse:before{content:""}.fa-jenkins:before{content:""}.fa-twitter:before{content:""}.fa-rockrms:before{content:""}.fa-pinterest:before{content:""}.fa-buffer:before{content:""}.fa-npm:before{content:""}.fa-yammer:before{content:""}.fa-btc:before{content:""}.fa-dribbble:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-internet-explorer:before{content:""}.fa-stubber:before{content:""}.fa-telegram:before{content:""}.fa-telegram-plane:before{content:""}.fa-old-republic:before{content:""}.fa-odysee:before{content:""}.fa-square-whatsapp:before{content:""}.fa-whatsapp-square:before{content:""}.fa-node-js:before{content:""}.fa-edge-legacy:before{content:""}.fa-slack:before{content:""}.fa-slack-hash:before{content:""}.fa-medrt:before{content:""}.fa-usb:before{content:""}.fa-tumblr:before{content:""}.fa-vaadin:before{content:""}.fa-quora:before{content:""}.fa-square-x-twitter:before{content:""}.fa-reacteurope:before{content:""}.fa-medium:before{content:""}.fa-medium-m:before{content:""}.fa-amilia:before{content:""}.fa-mixcloud:before{content:""}.fa-flipboard:before{content:""}.fa-viacoin:before{content:""}.fa-critical-role:before{content:""}.fa-sitrox:before{content:""}.fa-discourse:before{content:""}.fa-joomla:before{content:""}.fa-mastodon:before{content:""}.fa-airbnb:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-buy-n-large:before{content:""}.fa-gulp:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-strava:before{content:""}.fa-ember:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-teamspeak:before{content:""}.fa-pushed:before{content:""}.fa-wordpress-simple:before{content:""}.fa-nutritionix:before{content:""}.fa-wodu:before{content:""}.fa-google-pay:before{content:""}.fa-intercom:before{content:""}.fa-zhihu:before{content:""}.fa-korvue:before{content:""}.fa-pix:before{content:""}.fa-steam-symbol:before{content:""}:root,:host{--fa-style-family-classic: "Font Awesome 6 Free";--fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(/build/assets/fa-regular-400-c27da6f8.woff2) format("woff2"),url(/build/assets/fa-regular-400-9174757e.ttf) format("truetype")}.far,.fa-regular{font-weight:400}:root,:host{--fa-style-family-classic: "Font Awesome 6 Free";--fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(/build/assets/fa-solid-900-ae17c16a.woff2) format("woff2"),url(/build/assets/fa-solid-900-b4990d0d.ttf) format("truetype")}.fas,.fa-solid{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(/build/assets/fa-brands-400-232c6f6a.woff2) format("woff2"),url(/build/assets/fa-brands-400-e28096fa.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(/build/assets/fa-solid-900-ae17c16a.woff2) format("woff2"),url(/build/assets/fa-solid-900-b4990d0d.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(/build/assets/fa-regular-400-c27da6f8.woff2) format("woff2"),url(/build/assets/fa-regular-400-9174757e.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-solid-900-ae17c16a.woff2) format("woff2"),url(/build/assets/fa-solid-900-b4990d0d.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-brands-400-232c6f6a.woff2) format("woff2"),url(/build/assets/fa-brands-400-e28096fa.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-regular-400-c27da6f8.woff2) format("woff2"),url(/build/assets/fa-regular-400-9174757e.ttf) format("truetype");unicode-range:U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-v4compatibility-c7a869fa.woff2) format("woff2"),url(/build/assets/fa-v4compatibility-ff8f525f.ttf) format("truetype");unicode-range:U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A}/*! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}progress{vertical-align:initial}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}[role=button],button{cursor:pointer}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.dz-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.dz-mb-2{margin-bottom:.5rem}.dz-mb-4{margin-bottom:1rem}.dz-mr-3{margin-right:.75rem}.dz-mt-2{margin-top:.5rem}.dz-mt-5{margin-top:1.25rem}.dz-flex{display:flex}.dz-hidden{display:none}.dz-h-14{height:3.5rem}.dz-h-5{height:1.25rem}.dz-h-6{height:1.5rem}.dz-h-8{height:2rem}.dz-h-auto{height:auto}.dz-h-full{height:100%}.dz-w-14{width:3.5rem}.dz-w-5{width:1.25rem}.dz-w-6{width:1.5rem}.dz-w-8{width:2rem}.dz-w-full{width:100%}.dz-max-w-2xl{max-width:42rem}.dz-flex-none{flex:none}@keyframes dz-spin{to{transform:rotate(1turn)}}.dz-animate-spin{animation:dz-spin 1s linear infinite}.dz-cursor-pointer{cursor:pointer}.dz-flex-col{flex-direction:column}.dz-flex-wrap{flex-wrap:wrap}.dz-items-start{align-items:flex-start}.dz-items-center{align-items:center}.dz-justify-start{justify-content:flex-start}.dz-justify-center{justify-content:center}.dz-justify-between{justify-content:space-between}.dz-gap-1{gap:.25rem}.dz-gap-2{gap:.5rem}.dz-gap-3{gap:.75rem}.dz-gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.dz-gap-y-2{row-gap:.5rem}.dz-overflow-hidden{overflow:hidden}.dz-rounded{border-radius:.25rem}.dz-border{border-width:1px}.dz-border-dashed{border-style:dashed}.dz-border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.dz-border-gray-500{--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}.dz-bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.dz-bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.dz-bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.dz-bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.dz-fill-blue-600{fill:#2563eb}.dz-object-fill{-o-object-fit:fill;object-fit:fill}.dz-p-10{padding:2.5rem}.dz-p-4{padding:1rem}.dz-py-8{padding-top:2rem;padding-bottom:2rem}.dz-text-center{text-align:center}.dz-text-lg{font-size:1.125rem;line-height:1.75rem}.dz-text-sm{font-size:.875rem;line-height:1.25rem}.dz-font-medium{font-weight:500}.dz-font-semibold{font-weight:600}.dz-text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.dz-text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.dz-text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.dz-text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.dz-text-red-400{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.dz-text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.dz-text-red-800{--tw-text-opacity:1;color:rgb(153 27 27/var(--tw-text-opacity))}.dz-text-slate-900{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dz-antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (prefers-color-scheme:dark){.dark\:dz-border-gray-600{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.dark\:dz-border-gray-700{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.dark\:dz-bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark\:dz-bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.dark\:dz-bg-red-600{--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.dark\:dz-text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.dark\:dz-text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.dark\:dz-text-red-100{--tw-text-opacity:1;color:rgb(254 226 226/var(--tw-text-opacity))}.dark\:dz-text-red-200{--tw-text-opacity:1;color:rgb(254 202 202/var(--tw-text-opacity))}.dark\:dz-text-slate-100{--tw-text-opacity:1;color:rgb(241 245 249/var(--tw-text-opacity))}.dark\:dz-text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark\:hover\:dz-border-gray-500:hover{--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}}.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::-moz-selection{background:transparent}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px #000000a6;border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px #0006;background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(/build/assets/layers-1dbbe9d0.png);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(/build/assets/layers-2x-066daca8.png);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(/build/assets/marker-icon-574c3a5c.png)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:white;color:#333;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}[type=text],input:where(:not([type])),[type=email],[type=url],[type=password],[type=number],[type=date],[type=datetime-local],[type=month],[type=search],[type=tel],[type=time],[type=week],[multiple],textarea,select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--tw-shadow: 0 0 #0000}[type=text]:focus,input:where(:not([type])):focus,[type=email]:focus,[type=url]:focus,[type=password]:focus,[type=number]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=month]:focus,[type=search]:focus,[type=tel]:focus,[type=time]:focus,[type=week]:focus,[multiple]:focus,textarea:focus,select:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-color:#2563eb}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple],[size]:where(select:not([size="1"])){background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow: 0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 2px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}@media (forced-colors: active){[type=checkbox]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=radio]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}@media (forced-colors: active){[type=radio]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:checked:hover,[type=checkbox]:checked:focus,[type=radio]:checked:hover,[type=radio]:checked:focus{border-color:transparent;background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}@media (forced-colors: active){[type=checkbox]:indeterminate{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:indeterminate:hover,[type=checkbox]:indeterminate:focus{border-color:transparent;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.prose{color:var(--tw-prose-body);max-width:65ch}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);text-decoration:underline;font-weight:500}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal;margin-top:1.25em;margin-bottom:1.25em;padding-left:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:disc;margin-top:1.25em;margin-bottom:1.25em;padding-left:1.625em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{font-weight:400;color:var(--tw-prose-counters)}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-style:italic;color:var(--tw-prose-quotes);border-left-width:.25rem;border-left-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-left:1em}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:900;color:inherit}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:800;color:inherit}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){display:block;margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-family:inherit;color:var(--tw-prose-kbd);box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);font-size:.875em;border-radius:.3125rem;padding:.1875em .375em}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-weight:600;font-size:.875em}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);overflow-x:auto;font-weight:400;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding:.8571429em 1.1428571em}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){width:100%;table-layout:auto;text-align:left;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;vertical-align:bottom;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose{--tw-prose-body: #374151;--tw-prose-headings: #111827;--tw-prose-lead: #4b5563;--tw-prose-links: #111827;--tw-prose-bold: #111827;--tw-prose-counters: #6b7280;--tw-prose-bullets: #d1d5db;--tw-prose-hr: #e5e7eb;--tw-prose-quotes: #111827;--tw-prose-quote-borders: #e5e7eb;--tw-prose-captions: #6b7280;--tw-prose-kbd: #111827;--tw-prose-kbd-shadows: 17 24 39;--tw-prose-code: #111827;--tw-prose-pre-code: #e5e7eb;--tw-prose-pre-bg: #1f2937;--tw-prose-th-borders: #d1d5db;--tw-prose-td-borders: #e5e7eb;--tw-prose-invert-body: #d1d5db;--tw-prose-invert-headings: #fff;--tw-prose-invert-lead: #9ca3af;--tw-prose-invert-links: #fff;--tw-prose-invert-bold: #fff;--tw-prose-invert-counters: #9ca3af;--tw-prose-invert-bullets: #4b5563;--tw-prose-invert-hr: #374151;--tw-prose-invert-quotes: #f3f4f6;--tw-prose-invert-quote-borders: #374151;--tw-prose-invert-captions: #9ca3af;--tw-prose-invert-kbd: #fff;--tw-prose-invert-kbd-shadows: 255 255 255;--tw-prose-invert-code: #fff;--tw-prose-invert-pre-code: #d1d5db;--tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);--tw-prose-invert-th-borders: #4b5563;--tw-prose-invert-td-borders: #374151;font-size:1rem;line-height:1.75}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:.375em}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>*:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>*:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>*:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>*:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-left:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{top:0;right:0;bottom:0;left:0}.bottom-0{bottom:0}.end-0{inset-inline-end:0px}.left-0{left:0}.right-0{right:0}.start-0{inset-inline-start:0px}.top-0{top:0}.z-0{z-index:0}.z-10{z-index:10}.z-50{z-index:50}.col-span-1{grid-column:span 1 / span 1}.col-span-2{grid-column:span 2 / span 2}.col-span-3{grid-column:span 3 / span 3}.col-span-6{grid-column:span 6 / span 6}.m-2{margin:.5rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.-mx-8{margin-left:-2rem;margin-right:-2rem}.-my-2{margin-top:-.5rem;margin-bottom:-.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-top:.25rem;margin-bottom:.25rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.my-4{margin-top:1rem;margin-bottom:1rem}.-mb-8{margin-bottom:-2rem}.-me-0{margin-inline-end:-0px}.-me-0\.5{margin-inline-end:-.125rem}.-me-1{margin-inline-end:-.25rem}.-me-2{margin-inline-end:-.5rem}.-ml-px{margin-left:-1px}.-mr-0{margin-right:-0px}.-mr-0\.5{margin-right:-.125rem}.-mr-1{margin-right:-.25rem}.-mr-2{margin-right:-.5rem}.-mt-px{margin-top:-1px}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-10{margin-bottom:2.5rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.me-2{margin-inline-end:.5rem}.me-3{margin-inline-end:.75rem}.ml-1{margin-left:.25rem}.ml-12{margin-left:3rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.ml-6{margin-left:1.5rem}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.ms-1{margin-inline-start:.25rem}.ms-2{margin-inline-start:.5rem}.ms-3{margin-inline-start:.75rem}.ms-4{margin-inline-start:1rem}.ms-6{margin-inline-start:1.5rem}.mt-1{margin-top:.25rem}.mt-10{margin-top:2.5rem}.mt-16{margin-top:4rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.flow-root{display:flow-root}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-1{height:.25rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-20{height:5rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[200px\]{height:200px}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.min-h-screen{min-height:100vh}.w-0{width:0px}.w-1{width:.25rem}.w-1\/2{width:50%}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-12{width:3rem}.w-14{width:3.5rem}.w-16{width:4rem}.w-20{width:5rem}.w-3\/4{width:75%}.w-4{width:1rem}.w-48{width:12rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-60{width:15rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-\[75\%\]{width:75%}.w-auto{width:auto}.w-fit{width:-moz-fit-content;width:fit-content}.w-full{width:100%}.min-w-0{min-width:0px}.min-w-full{min-width:100%}.max-w-6xl{max-width:72rem}.max-w-7xl{max-width:80rem}.max-w-\[250px\]{max-width:250px}.max-w-\[300px\]{max-width:300px}.max-w-screen-xl{max-width:1280px}.max-w-sm{max-width:24rem}.max-w-xl{max-width:36rem}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-none{flex:none}.flex-shrink-0,.shrink-0{flex-shrink:0}.origin-top{transform-origin:top}.origin-top-left{transform-origin:top left}.origin-top-right{transform-origin:top right}.translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-2{--tw-translate-y: .5rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-4{--tw-translate-y: 1rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.list-inside{list-style-position:inside}.list-disc{list-style-type:disc}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-items-center{justify-items:center}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-x-1\.5{-moz-column-gap:.375rem;column-gap:.375rem}.gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.gap-y-2{row-gap:.5rem}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.25rem * var(--tw-space-x-reverse));margin-left:calc(.25rem * calc(1 - var(--tw-space-x-reverse)))}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(2rem * var(--tw-space-x-reverse));margin-left:calc(2rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse: 0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.divide-dashed>:not([hidden])~:not([hidden]){border-style:dashed}.divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(243 244 246 / var(--tw-divide-opacity))}.divide-gray-200>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(229 231 235 / var(--tw-divide-opacity))}.divide-gray-300>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(209 213 219 / var(--tw-divide-opacity))}.divide-indigo-200>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(199 210 254 / var(--tw-divide-opacity))}.self-end{align-self:flex-end}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-scroll{overflow-x:scroll}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-xl{border-radius:.75rem}.rounded-b-none{border-bottom-right-radius:0;border-bottom-left-radius:0}.rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.border{border-width:1px}.border-0{border-width:0px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-l-4{border-left-width:4px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-dashed{border-style:dashed}.border-gray-100{--tw-border-opacity: 1;border-color:rgb(243 244 246 / var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity: 1;border-color:rgb(229 231 235 / var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.border-gray-400{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.border-indigo-400{--tw-border-opacity: 1;border-color:rgb(129 140 248 / var(--tw-border-opacity))}.border-indigo-500{--tw-border-opacity: 1;border-color:rgb(99 102 241 / var(--tw-border-opacity))}.border-slate-300{--tw-border-opacity: 1;border-color:rgb(203 213 225 / var(--tw-border-opacity))}.border-transparent{border-color:transparent}.bg-black\/25{background-color:#00000040}.bg-blue-500{--tw-bg-opacity: 1;background-color:rgb(59 130 246 / var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity))}.bg-gray-400{--tw-bg-opacity: 1;background-color:rgb(156 163 175 / var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity: 1;background-color:rgb(107 114 128 / var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.bg-green-100{--tw-bg-opacity: 1;background-color:rgb(220 252 231 / var(--tw-bg-opacity))}.bg-indigo-50{--tw-bg-opacity: 1;background-color:rgb(238 242 255 / var(--tw-bg-opacity))}.bg-indigo-500{--tw-bg-opacity: 1;background-color:rgb(99 102 241 / var(--tw-bg-opacity))}.bg-indigo-600{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity: 1;background-color:rgb(254 226 226 / var(--tw-bg-opacity))}.bg-red-200{--tw-bg-opacity: 1;background-color:rgb(254 202 202 / var(--tw-bg-opacity))}.bg-red-50{--tw-bg-opacity: 1;background-color:rgb(254 242 242 / var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.bg-red-600{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.bg-red-700{--tw-bg-opacity: 1;background-color:rgb(185 28 28 / var(--tw-bg-opacity))}.bg-red-800{--tw-bg-opacity: 1;background-color:rgb(153 27 27 / var(--tw-bg-opacity))}.bg-slate-100{--tw-bg-opacity: 1;background-color:rgb(241 245 249 / var(--tw-bg-opacity))}.bg-slate-300{--tw-bg-opacity: 1;background-color:rgb(203 213 225 / var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-yellow-500{--tw-bg-opacity: 1;background-color:rgb(234 179 8 / var(--tw-bg-opacity))}.bg-yellow-600{--tw-bg-opacity: 1;background-color:rgb(202 138 4 / var(--tw-bg-opacity))}.bg-opacity-25{--tw-bg-opacity: .25}.from-gray-700{--tw-gradient-from: #374151 var(--tw-gradient-from-position);--tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-gray-700\/50{--tw-gradient-from: rgb(55 65 81 / .5) var(--tw-gradient-from-position);--tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.via-transparent{--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to)}.bg-cover{background-size:cover}.bg-center{background-position:center}.bg-no-repeat{background-repeat:no-repeat}.fill-black{fill:#000}.fill-blue-600{fill:#2563eb}.fill-current{fill:currentColor}.fill-indigo-500{fill:#6366f1}.fill-red-100{fill:#fee2e2}.stroke-gray-400{stroke:#9ca3af}.stroke-gray-600{stroke:#4b5563}.stroke-red-500{stroke:#ef4444}.object-cover{-o-object-fit:cover;object-fit:cover}.object-fill{-o-object-fit:fill;object-fit:fill}.p-0{padding:0}.p-0\.5{padding:.125rem}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-0{padding-left:0;padding-right:0}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-0{padding-top:0;padding-bottom:0}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-8{padding-top:2rem;padding-bottom:2rem}.pb-1{padding-bottom:.25rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pe-4{padding-inline-end:1rem}.pl-10{padding-left:2.5rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pr-3{padding-right:.75rem}.pr-4{padding-right:1rem}.ps-3{padding-inline-start:.75rem}.pt-0{padding-top:0}.pt-0\.5{padding-top:.125rem}.pt-1{padding-top:.25rem}.pt-2{padding-top:.5rem}.pt-4{padding-top:1rem}.pt-5{padding-top:1.25rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-start{text-align:start}.text-end{text-align:end}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-relaxed{line-height:1.625}.leading-tight{line-height:1.25}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.text-black{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.text-green-400{--tw-text-opacity: 1;color:rgb(74 222 128 / var(--tw-text-opacity))}.text-green-500{--tw-text-opacity: 1;color:rgb(34 197 94 / var(--tw-text-opacity))}.text-green-600{--tw-text-opacity: 1;color:rgb(22 163 74 / var(--tw-text-opacity))}.text-green-700{--tw-text-opacity: 1;color:rgb(21 128 61 / var(--tw-text-opacity))}.text-indigo-500{--tw-text-opacity: 1;color:rgb(99 102 241 / var(--tw-text-opacity))}.text-indigo-600{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.text-indigo-700{--tw-text-opacity: 1;color:rgb(67 56 202 / var(--tw-text-opacity))}.text-red-400{--tw-text-opacity: 1;color:rgb(248 113 113 / var(--tw-text-opacity))}.text-red-500{--tw-text-opacity: 1;color:rgb(239 68 68 / var(--tw-text-opacity))}.text-red-600{--tw-text-opacity: 1;color:rgb(220 38 38 / var(--tw-text-opacity))}.text-red-700{--tw-text-opacity: 1;color:rgb(185 28 28 / var(--tw-text-opacity))}.text-red-800{--tw-text-opacity: 1;color:rgb(153 27 27 / var(--tw-text-opacity))}.text-slate-700{--tw-text-opacity: 1;color:rgb(51 65 85 / var(--tw-text-opacity))}.text-slate-800{--tw-text-opacity: 1;color:rgb(30 41 59 / var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity: 1;color:rgb(15 23 42 / var(--tw-text-opacity))}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-50{opacity:.5}.opacity-75{opacity:.75}.shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-2xl{--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-xl{--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-gray-500\/20{--tw-shadow-color: rgb(107 114 128 / .2);--tw-shadow: var(--tw-shadow-colored)}.outline-none{outline:2px solid transparent;outline-offset:2px}.ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-inset{--tw-ring-inset: inset}.ring-black{--tw-ring-opacity: 1;--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity))}.ring-gray-200{--tw-ring-opacity: 1;--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity))}.ring-gray-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity))}.ring-white{--tw-ring-opacity: 1;--tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity: .05}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-100{transition-duration:.1s}.duration-150{transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-75{transition-duration:75ms}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}[x-cloak]{display:none}@media (prefers-color-scheme: dark){.dark\:prose-invert{--tw-prose-body: var(--tw-prose-invert-body);--tw-prose-headings: var(--tw-prose-invert-headings);--tw-prose-lead: var(--tw-prose-invert-lead);--tw-prose-links: var(--tw-prose-invert-links);--tw-prose-bold: var(--tw-prose-invert-bold);--tw-prose-counters: var(--tw-prose-invert-counters);--tw-prose-bullets: var(--tw-prose-invert-bullets);--tw-prose-hr: var(--tw-prose-invert-hr);--tw-prose-quotes: var(--tw-prose-invert-quotes);--tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);--tw-prose-captions: var(--tw-prose-invert-captions);--tw-prose-kbd: var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);--tw-prose-code: var(--tw-prose-invert-code);--tw-prose-pre-code: var(--tw-prose-invert-pre-code);--tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);--tw-prose-th-borders: var(--tw-prose-invert-th-borders);--tw-prose-td-borders: var(--tw-prose-invert-td-borders)}}.selection\:bg-red-500 *::-moz-selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:bg-red-500 *::selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:text-white *::-moz-selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.selection\:text-white *::selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.selection\:bg-red-500::-moz-selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:bg-red-500::selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:text-white::-moz-selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.selection\:text-white::selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.placeholder\:text-gray-400::-moz-placeholder{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.placeholder\:text-gray-400::placeholder{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:start-\[2px\]:after{content:var(--tw-content);inset-inline-start:2px}.after\:top-\[2px\]:after{content:var(--tw-content);top:2px}.after\:h-5:after{content:var(--tw-content);height:1.25rem}.after\:w-5:after{content:var(--tw-content);width:1.25rem}.after\:rounded-full:after{content:var(--tw-content);border-radius:9999px}.after\:border:after{content:var(--tw-content);border-width:1px}.after\:border-gray-300:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.after\:bg-white:after{content:var(--tw-content);--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.after\:transition-all:after{content:var(--tw-content);transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.after\:content-\[\'\'\]:after{--tw-content: "";content:var(--tw-content)}.read-only\:cursor-not-allowed:-moz-read-only{cursor:not-allowed}.read-only\:cursor-not-allowed:read-only{cursor:not-allowed}.read-only\:opacity-50:-moz-read-only{opacity:.5}.read-only\:opacity-50:read-only{opacity:.5}.hover\:rounded-lg:hover{border-radius:.5rem}.hover\:border-0:hover{border-width:0px}.hover\:border-gray-300:hover{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.hover\:bg-gray-700:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.hover\:bg-indigo-500:hover{--tw-bg-opacity: 1;background-color:rgb(99 102 241 / var(--tw-bg-opacity))}.hover\:bg-indigo-600:hover{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.hover\:bg-red-500:hover{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.hover\:bg-red-600:hover{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.hover\:bg-slate-50:hover{--tw-bg-opacity: 1;background-color:rgb(248 250 252 / var(--tw-bg-opacity))}.hover\:bg-yellow-600:hover{--tw-bg-opacity: 1;background-color:rgb(202 138 4 / var(--tw-bg-opacity))}.hover\:text-gray-400:hover{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.hover\:text-gray-500:hover{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.hover\:text-gray-800:hover{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.hover\:text-indigo-600:hover{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.hover\:text-indigo-900:hover{--tw-text-opacity: 1;color:rgb(49 46 129 / var(--tw-text-opacity))}.focus\:z-10:focus{z-index:10}.focus\:rounded-sm:focus{border-radius:.125rem}.focus\:border-none:focus{border-style:none}.focus\:border-blue-300:focus{--tw-border-opacity: 1;border-color:rgb(147 197 253 / var(--tw-border-opacity))}.focus\:border-gray-300:focus{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.focus\:border-indigo-500:focus{--tw-border-opacity: 1;border-color:rgb(99 102 241 / var(--tw-border-opacity))}.focus\:border-indigo-700:focus{--tw-border-opacity: 1;border-color:rgb(67 56 202 / var(--tw-border-opacity))}.focus\:bg-gray-100:focus{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.focus\:bg-gray-50:focus{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.focus\:bg-gray-700:focus{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.focus\:bg-indigo-100:focus{--tw-bg-opacity: 1;background-color:rgb(224 231 255 / var(--tw-bg-opacity))}.focus\:bg-indigo-600:focus{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.focus\:bg-red-600:focus{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.focus\:bg-yellow-600:focus{--tw-bg-opacity: 1;background-color:rgb(202 138 4 / var(--tw-bg-opacity))}.focus\:text-gray-500:focus{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.focus\:text-gray-700:focus{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.focus\:text-gray-800:focus{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.focus\:text-indigo-800:focus{--tw-text-opacity: 1;color:rgb(55 48 163 / var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:outline:focus{outline-style:solid}.focus\:outline-2:focus{outline-width:2px}.focus\:outline-red-500:focus{outline-color:#ef4444}.focus\:ring:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-inset:focus{--tw-ring-inset: inset}.focus\:ring-indigo-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity))}.focus\:ring-indigo-600:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity))}.focus\:ring-red-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity))}.focus\:ring-offset-2:focus{--tw-ring-offset-width: 2px}.focus-visible\:outline:focus-visible{outline-style:solid}.focus-visible\:outline-2:focus-visible{outline-width:2px}.focus-visible\:outline-offset-2:focus-visible{outline-offset:2px}.focus-visible\:outline-indigo-600:focus-visible{outline-color:#4f46e5}.focus-visible\:ring-2:focus-visible{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus-visible\:ring-blue-500:focus-visible{--tw-ring-opacity: 1;--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity))}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width: 2px}.active\:bg-gray-100:active{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.active\:bg-gray-50:active{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.active\:bg-gray-900:active{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.active\:bg-red-700:active{--tw-bg-opacity: 1;background-color:rgb(185 28 28 / var(--tw-bg-opacity))}.active\:text-gray-500:active{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.active\:text-gray-700:active{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.disabled\:cursor-default:disabled{cursor:default}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-gray-50:disabled{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.disabled\:bg-red-100:disabled{--tw-bg-opacity: 1;background-color:rgb(254 226 226 / var(--tw-bg-opacity))}.disabled\:text-gray-500:disabled{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.disabled\:opacity-0:disabled{opacity:0}.disabled\:opacity-25:disabled{opacity:.25}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:opacity-75:disabled{opacity:.75}.group:hover .group-hover\:stroke-gray-600{stroke:#4b5563}.group:hover .group-hover\:text-indigo-600{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.peer:checked~.peer-checked\:bg-indigo-600{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.peer:checked~.peer-checked\:after\:translate-x-full:after{content:var(--tw-content);--tw-translate-x: 100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:checked~.peer-checked\:after\:border-white:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity))}.peer:focus~.peer-focus\:outline-none{outline:2px solid transparent;outline-offset:2px}.peer:focus~.peer-focus\:ring-4{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.peer:focus~.peer-focus\:ring-indigo-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity))}:is([dir=ltr] .ltr\:origin-top-left){transform-origin:top left}:is([dir=ltr] .ltr\:origin-top-right){transform-origin:top right}:is([dir=rtl] .rtl\:origin-top-left){transform-origin:top left}:is([dir=rtl] .rtl\:origin-top-right){transform-origin:top right}:is([dir=rtl] .rtl\:flex-row-reverse){flex-direction:row-reverse}:is([dir=rtl] .peer:checked~.rtl\:peer-checked\:after\:-translate-x-full):after{content:var(--tw-content);--tw-translate-x: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@media (prefers-reduced-motion: no-preference){.motion-safe\:hover\:scale-\[1\.01\]:hover{--tw-scale-x: 1.01;--tw-scale-y: 1.01;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}}@media (prefers-color-scheme: dark){.dark\:border-gray-500{--tw-border-opacity: 1;border-color:rgb(107 114 128 / var(--tw-border-opacity))}.dark\:border-gray-600{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark\:border-gray-700{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark\:border-indigo-600{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity))}.dark\:bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity))}.dark\:bg-gray-700{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:bg-gray-800\/50{background-color:#1f293780}.dark\:bg-gray-900{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:bg-indigo-900\/50{background-color:#312e8180}.dark\:bg-red-600{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.dark\:bg-red-800\/20{background-color:#991b1b33}.dark\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--tw-gradient-stops))}.dark\:from-gray-700\/50{--tw-gradient-from: rgb(55 65 81 / .5) var(--tw-gradient-from-position);--tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.dark\:via-transparent{--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to)}.dark\:fill-indigo-200{fill:#c7d2fe}.dark\:fill-white{fill:#fff}.dark\:stroke-gray-600{stroke:#4b5563}.dark\:text-gray-100{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.dark\:text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark\:text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark\:text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.dark\:text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.dark\:text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.dark\:text-gray-800{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.dark\:text-green-400{--tw-text-opacity: 1;color:rgb(74 222 128 / var(--tw-text-opacity))}.dark\:text-indigo-300{--tw-text-opacity: 1;color:rgb(165 180 252 / var(--tw-text-opacity))}.dark\:text-red-100{--tw-text-opacity: 1;color:rgb(254 226 226 / var(--tw-text-opacity))}.dark\:text-red-200{--tw-text-opacity: 1;color:rgb(254 202 202 / var(--tw-text-opacity))}.dark\:text-red-400{--tw-text-opacity: 1;color:rgb(248 113 113 / var(--tw-text-opacity))}.dark\:text-slate-100{--tw-text-opacity: 1;color:rgb(241 245 249 / var(--tw-text-opacity))}.dark\:text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark\:shadow-none{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.dark\:ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.dark\:ring-inset{--tw-ring-inset: inset}.dark\:ring-white\/5{--tw-ring-color: rgb(255 255 255 / .05)}.dark\:hover\:border-gray-500:hover{--tw-border-opacity: 1;border-color:rgb(107 114 128 / var(--tw-border-opacity))}.dark\:hover\:border-gray-600:hover{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark\:hover\:border-gray-700:hover{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark\:hover\:bg-gray-700:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:hover\:bg-gray-800:hover{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:hover\:bg-gray-900:hover{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:hover\:bg-white:hover{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.dark\:hover\:text-gray-100:hover{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.dark\:hover\:text-gray-200:hover{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark\:hover\:text-gray-300:hover{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark\:hover\:text-gray-400:hover{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:hover\:text-white:hover{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark\:focus\:border-blue-700:focus{--tw-border-opacity: 1;border-color:rgb(29 78 216 / var(--tw-border-opacity))}.dark\:focus\:border-blue-800:focus{--tw-border-opacity: 1;border-color:rgb(30 64 175 / var(--tw-border-opacity))}.dark\:focus\:border-gray-600:focus{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark\:focus\:border-gray-700:focus{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark\:focus\:border-indigo-300:focus{--tw-border-opacity: 1;border-color:rgb(165 180 252 / var(--tw-border-opacity))}.dark\:focus\:border-indigo-600:focus{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity))}.dark\:focus\:bg-gray-700:focus{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:focus\:bg-gray-800:focus{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:focus\:bg-gray-900:focus{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:focus\:bg-indigo-900:focus{--tw-bg-opacity: 1;background-color:rgb(49 46 129 / var(--tw-bg-opacity))}.dark\:focus\:bg-white:focus{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.dark\:focus\:text-gray-200:focus{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark\:focus\:text-gray-300:focus{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark\:focus\:text-gray-400:focus{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:focus\:text-indigo-200:focus{--tw-text-opacity: 1;color:rgb(199 210 254 / var(--tw-text-opacity))}.dark\:focus\:ring-indigo-600:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity))}.dark\:focus\:ring-offset-gray-800:focus{--tw-ring-offset-color: #1f2937}.dark\:active\:bg-gray-300:active{--tw-bg-opacity: 1;background-color:rgb(209 213 219 / var(--tw-bg-opacity))}.dark\:active\:bg-gray-700:active{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:active\:text-gray-300:active{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.group:hover .dark\:group-hover\:stroke-gray-400{stroke:#9ca3af}.peer:focus~.dark\:peer-focus\:ring-indigo-800{--tw-ring-opacity: 1;--tw-ring-color: rgb(55 48 163 / var(--tw-ring-opacity))}}@media (min-width: 640px){.sm\:fixed{position:fixed}.sm\:right-0{right:0}.sm\:top-0{top:0}.sm\:col-span-4{grid-column:span 4 / span 4}.sm\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.sm\:-my-px{margin-top:-1px;margin-bottom:-1px}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:-me-2{margin-inline-end:-.5rem}.sm\:-mr-2{margin-right:-.5rem}.sm\:ml-0{margin-left:0}.sm\:ml-10{margin-left:2.5rem}.sm\:ml-3{margin-left:.75rem}.sm\:ml-4{margin-left:1rem}.sm\:ml-6{margin-left:1.5rem}.sm\:ms-10{margin-inline-start:2.5rem}.sm\:ms-3{margin-inline-start:.75rem}.sm\:ms-4{margin-inline-start:1rem}.sm\:ms-6{margin-inline-start:1.5rem}.sm\:mt-0{margin-top:0}.sm\:block{display:block}.sm\:flex{display:flex}.sm\:hidden{display:none}.sm\:h-10{height:2.5rem}.sm\:w-10{width:2.5rem}.sm\:w-full{width:100%}.sm\:max-w-2xl{max-width:42rem}.sm\:max-w-4xl{max-width:56rem}.sm\:max-w-6xl{max-width:72rem}.sm\:max-w-lg{max-width:32rem}.sm\:max-w-md{max-width:28rem}.sm\:max-w-sm{max-width:24rem}.sm\:max-w-xl{max-width:36rem}.sm\:flex-1{flex:1 1 0%}.sm\:translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:translate-x-2{--tw-translate-x: .5rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:flex-col{flex-direction:column}.sm\:items-start{align-items:flex-start}.sm\:items-end{align-items:flex-end}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:justify-center{justify-content:center}.sm\:justify-between{justify-content:space-between}.sm\:rounded-lg{border-radius:.5rem}.sm\:rounded-md{border-radius:.375rem}.sm\:rounded-bl-md{border-bottom-left-radius:.375rem}.sm\:rounded-br-md{border-bottom-right-radius:.375rem}.sm\:rounded-tl-md{border-top-left-radius:.375rem}.sm\:rounded-tr-md{border-top-right-radius:.375rem}.sm\:p-6{padding:1.5rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pb-4{padding-bottom:1rem}.sm\:pl-6{padding-left:1.5rem}.sm\:pr-0{padding-right:0}.sm\:pr-6{padding-right:1.5rem}.sm\:pr-8{padding-right:2rem}.sm\:pt-0{padding-top:0}.sm\:text-left{text-align:left}.sm\:text-right{text-align:right}.sm\:text-start{text-align:start}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.sm\:leading-6{line-height:1.5rem}}@media (min-width: 768px){.md\:col-span-1{grid-column:span 1 / span 1}.md\:col-span-2{grid-column:span 2 / span 2}.md\:mt-0{margin-top:0}.md\:grid{display:grid}.md\:w-1\/3{width:33.333333%}.md\:w-1\/4{width:25%}.md\:w-2\/3{width:66.666667%}.md\:w-3\/4{width:75%}.md\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:justify-between{justify-content:space-between}.md\:gap-6{gap:1.5rem}}@media (min-width: 1024px){.lg\:col-span-4{grid-column:span 4 / span 4}.lg\:-mx-8{margin-left:-2rem;margin-right:-2rem}.lg\:gap-8{gap:2rem}.lg\:p-8{padding:2rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:pl-8{padding-left:2rem}.lg\:pr-8{padding-right:2rem}} diff --git a/laravel_app/public/build/manifest.json b/laravel_app/public/build/manifest.json index d6b465d..996ebe5 100644 --- a/laravel_app/public/build/manifest.json +++ b/laravel_app/public/build/manifest.json @@ -44,7 +44,7 @@ "src": "node_modules/leaflet/dist/images/marker-icon.png" }, "resources/css/app.css": { - "file": "assets/app-d3f21131.css", + "file": "assets/app-36af0ee7.css", "isEntry": true, "src": "resources/css/app.css" }, diff --git a/laravel_app/resources/views/components/icon/trash.blade.php b/laravel_app/resources/views/components/icon/trash.blade.php new file mode 100644 index 0000000..db244c4 --- /dev/null +++ b/laravel_app/resources/views/components/icon/trash.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/laravel_app/resources/views/components/project-manager-grid.blade.php b/laravel_app/resources/views/components/project-manager-grid.blade.php index 3ef1649..c9e691a 100644 --- a/laravel_app/resources/views/components/project-manager-grid.blade.php +++ b/laravel_app/resources/views/components/project-manager-grid.blade.php @@ -29,19 +29,35 @@ Create +
+
+ Name +
+
+ Mail Scheduled +
+
+ Actions +
@foreach ($projectManager->projects->sortBy('name') as $project) -
-
+
{{ $project->name }}
-
-
+
+
-
+ @endforeach +
diff --git a/laravel_app/resources/views/components/report-manager-test-report-modal.blade.php b/laravel_app/resources/views/components/report-manager-test-report-modal.blade.php new file mode 100644 index 0000000..513a7c8 --- /dev/null +++ b/laravel_app/resources/views/components/report-manager-test-report-modal.blade.php @@ -0,0 +1,29 @@ + + + + {{ __('Project') }} + + + + {{ __('Report generator for generating reports') }} + + + +
+ When you create a test report It will remove existing mosaics files and generate new ones for the last 4 weeks. This process may take a while. +
+
+ + + + {{ __('Cancel') }} + + + {{ __('Save') }} + + +
+
diff --git a/laravel_app/resources/views/livewire/projects/tabs/report.blade.php b/laravel_app/resources/views/livewire/projects/tabs/report.blade.php index 2c24ff2..fe51587 100644 --- a/laravel_app/resources/views/livewire/projects/tabs/report.blade.php +++ b/laravel_app/resources/views/livewire/projects/tabs/report.blade.php @@ -7,10 +7,17 @@
+
+ Create Report +
+
@@ -53,5 +60,6 @@ class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6 lg
+ diff --git a/laravel_app/resources/views/livewire/reports/report-manager.blade.php b/laravel_app/resources/views/livewire/reports/report-manager.blade.php index c70a6a1..cb401b2 100644 --- a/laravel_app/resources/views/livewire/reports/report-manager.blade.php +++ b/laravel_app/resources/views/livewire/reports/report-manager.blade.php @@ -1,5 +1,4 @@
- {{ __('Create report') }} diff --git a/python_app/planet_download.ipynb b/python_app/planet_download.ipynb index a1757ec..e3b8ae2 100644 --- a/python_app/planet_download.ipynb +++ b/python_app/planet_download.ipynb @@ -104,7 +104,7 @@ "metadata": {}, "outputs": [], "source": [ - "project = 'chemba' #or xinavane or chemba_test_8b\n", + "project = 'Butali' #or xinavane or chemba_test_8b\n", "#project = 'xinavane' #or xinavane or chemba_test_8b\n", "#project = 'chemba_test_8b' #or xinavane or chemba_test_8b\n" ] @@ -179,7 +179,7 @@ " function setup() {\n", " return {\n", " input: [{\n", - " bands: [\"Red\", \"Green\", \"Blue\", \"NIR\", \"udm1\"]\n", + " bands: [\"red\", \"green\", \"blue\", \"nir\", \"udm1\"]\n", " }],\n", " output: {\n", " bands: 4 \n", @@ -274,13 +274,13 @@ "text": [ "Monthly time windows:\n", "\n", - "2024-04-30\n", - "2024-05-01\n", - "2024-05-02\n", - "2024-05-03\n", - "2024-05-04\n", - "2024-05-05\n", - "2024-05-06\n" + "2024-08-14\n", + "2024-08-15\n", + "2024-08-16\n", + "2024-08-17\n", + "2024-08-18\n", + "2024-08-19\n", + "2024-08-20\n" ] } ], @@ -359,7 +359,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Area bounding box: BBox(((34.883117060422094, -17.35152458627111), (34.983858813209004, -17.29173171459206)), crs=CRS('4326'))\n", + "Area bounding box: BBox(((34.82970726773786, 0.490469085371239), (34.84039153582786, 0.503255785720052)), crs=CRS('4326'))\n", "\n" ] } @@ -386,10 +386,10 @@ { "data": { "image/svg+xml": [ - "" + "" ], "text/plain": [ - "" + "" ] }, "execution_count": 16, @@ -507,7 +507,8 @@ "name": "stdout", "output_type": "stream", "text": [ - " Image downloaded for 2024-04-30 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n" + " Image downloaded for 2024-08-14 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n", + " Image downloaded for 2024-08-14 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n" ] }, { @@ -516,7 +517,7 @@ "text": [ "/usr/local/anaconda3/lib/python3.11/site-packages/sentinelhub/geometry.py:136: SHDeprecationWarning: Initializing `BBox` objects from `BBox` objects will no longer be possible in future versions.\n", " return BBox._tuple_from_bbox(bbox)\n", - "/var/folders/qt/jcd_lqsd6nq6_5902w6403_h0000gn/T/ipykernel_17811/1690163568.py:67: SHDeprecationWarning: The string representation of `BBox` will change to match its `repr` representation.\n", + "/var/folders/qt/jcd_lqsd6nq6_5902w6403_h0000gn/T/ipykernel_46134/4136298839.py:67: SHDeprecationWarning: The string representation of `BBox` will change to match its `repr` representation.\n", " print(f' Image downloaded for ' +slot + ' and bbox ' + str(bbox))\n", "/usr/local/anaconda3/lib/python3.11/site-packages/sentinelhub/geometry.py:136: SHDeprecationWarning: Initializing `BBox` objects from `BBox` objects will no longer be possible in future versions.\n", " return BBox._tuple_from_bbox(bbox)\n" @@ -526,131 +527,32 @@ "name": "stdout", "output_type": "stream", "text": [ - " Image downloaded for 2024-04-30 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", - " Image downloaded for 2024-04-30 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", - " Image downloaded for 2024-04-30 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", - " Image downloaded for 2024-04-30 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", - " Image downloaded for 2024-04-30 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", - " Image downloaded for 2024-04-30 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", - " Image downloaded for 2024-04-30 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", - " Image downloaded for 2024-04-30 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", - " Image downloaded for 2024-04-30 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", - " Image downloaded for 2024-04-30 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", - " Image downloaded for 2024-04-30 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", - " Image downloaded for 2024-04-30 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", - " Image downloaded for 2024-04-30 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", - " Image downloaded for 2024-04-30 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", - " Image downloaded for 2024-04-30 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", - " Image downloaded for 2024-04-30 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", - " Image downloaded for 2024-04-30 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n", - " Image downloaded for 2024-05-01 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n", - " Image downloaded for 2024-05-01 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", - " Image downloaded for 2024-05-01 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", - " Image downloaded for 2024-05-01 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", - " Image downloaded for 2024-05-01 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", - " Image downloaded for 2024-05-01 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", - " Image downloaded for 2024-05-01 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", - " Image downloaded for 2024-05-01 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", - " Image downloaded for 2024-05-01 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", - " Image downloaded for 2024-05-01 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", - " Image downloaded for 2024-05-01 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", - " Image downloaded for 2024-05-01 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", - " Image downloaded for 2024-05-01 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", - " Image downloaded for 2024-05-01 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", - " Image downloaded for 2024-05-01 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", - " Image downloaded for 2024-05-01 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", - " Image downloaded for 2024-05-01 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", - " Image downloaded for 2024-05-01 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n", - " Image downloaded for 2024-05-02 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n", - " Image downloaded for 2024-05-02 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", - " Image downloaded for 2024-05-02 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", - " Image downloaded for 2024-05-02 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", - " Image downloaded for 2024-05-02 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", - " Image downloaded for 2024-05-02 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", - " Image downloaded for 2024-05-02 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", - " Image downloaded for 2024-05-02 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", - " Image downloaded for 2024-05-02 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", - " Image downloaded for 2024-05-02 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", - " Image downloaded for 2024-05-02 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", - " Image downloaded for 2024-05-02 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", - " Image downloaded for 2024-05-02 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", - " Image downloaded for 2024-05-02 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", - " Image downloaded for 2024-05-02 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", - " Image downloaded for 2024-05-02 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", - " Image downloaded for 2024-05-02 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", - " Image downloaded for 2024-05-02 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n", - " Image downloaded for 2024-05-03 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n", - " Image downloaded for 2024-05-03 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", - " Image downloaded for 2024-05-03 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", - " Image downloaded for 2024-05-03 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", - " Image downloaded for 2024-05-03 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", - " Image downloaded for 2024-05-03 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", - " Image downloaded for 2024-05-03 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", - " Image downloaded for 2024-05-03 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", - " Image downloaded for 2024-05-03 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", - " Image downloaded for 2024-05-03 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", - " Image downloaded for 2024-05-03 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", - " Image downloaded for 2024-05-03 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", - " Image downloaded for 2024-05-03 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", - " Image downloaded for 2024-05-03 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", - " Image downloaded for 2024-05-03 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", - " Image downloaded for 2024-05-03 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", - " Image downloaded for 2024-05-03 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", - " Image downloaded for 2024-05-03 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n", - " Image downloaded for 2024-05-04 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n", - " Image downloaded for 2024-05-04 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", - " Image downloaded for 2024-05-04 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", - " Image downloaded for 2024-05-04 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", - " Image downloaded for 2024-05-04 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", - " Image downloaded for 2024-05-04 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", - " Image downloaded for 2024-05-04 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", - " Image downloaded for 2024-05-04 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", - " Image downloaded for 2024-05-04 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", - " Image downloaded for 2024-05-04 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", - " Image downloaded for 2024-05-04 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", - " Image downloaded for 2024-05-04 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", - " Image downloaded for 2024-05-04 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", - " Image downloaded for 2024-05-04 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", - " Image downloaded for 2024-05-04 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", - " Image downloaded for 2024-05-04 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", - " Image downloaded for 2024-05-04 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", - " Image downloaded for 2024-05-04 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n", - " Image downloaded for 2024-05-05 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n", - " Image downloaded for 2024-05-05 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", - " Image downloaded for 2024-05-05 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", - " Image downloaded for 2024-05-05 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", - " Image downloaded for 2024-05-05 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", - " Image downloaded for 2024-05-05 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", - " Image downloaded for 2024-05-05 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", - " Image downloaded for 2024-05-05 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", - " Image downloaded for 2024-05-05 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", - " Image downloaded for 2024-05-05 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", - " Image downloaded for 2024-05-05 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", - " Image downloaded for 2024-05-05 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", - " Image downloaded for 2024-05-05 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", - " Image downloaded for 2024-05-05 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", - " Image downloaded for 2024-05-05 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", - " Image downloaded for 2024-05-05 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", - " Image downloaded for 2024-05-05 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", - " Image downloaded for 2024-05-05 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n", - " Image downloaded for 2024-05-06 and bbox 34.893901568473275,-17.347991154602312,34.902244620706924,-17.34035402194366\n", - " Image downloaded for 2024-05-06 and bbox 34.88396660293689,-17.329532375657408,34.90142638883001,-17.32760743759949\n", - " Image downloaded for 2024-05-06 and bbox 34.88382012875465,-17.32760743759949,34.90326541097948,-17.315648863263682\n", - " Image downloaded for 2024-05-06 and bbox 34.883117060422094,-17.315648863263682,34.9023997776829,-17.30369028892787\n", - " Image downloaded for 2024-05-06 and bbox 34.883228421674296,-17.30369028892787,34.90087977072043,-17.29173171459206\n", - " Image downloaded for 2024-05-06 and bbox 34.905630133532,-17.344205996328164,34.92341376153686,-17.3395660119353\n", - " Image downloaded for 2024-05-06 and bbox 34.905710855573936,-17.3395660119353,34.92341376153686,-17.32760743759949\n", - " Image downloaded for 2024-05-06 and bbox 34.90326541097948,-17.32760743759949,34.9146041448172,-17.316916692391352\n", - " Image downloaded for 2024-05-06 and bbox 34.92341376153686,-17.35152458627111,34.93795515789262,-17.3395660119353\n", - " Image downloaded for 2024-05-06 and bbox 34.92341376153686,-17.3395660119353,34.930609068174576,-17.334652123669677\n", - " Image downloaded for 2024-05-06 and bbox 34.95572747068288,-17.346631434137443,34.96371046265162,-17.3395660119353\n", - " Image downloaded for 2024-05-06 and bbox 34.95078266733916,-17.3395660119353,34.96371046265162,-17.32760743759949\n", - " Image downloaded for 2024-05-06 and bbox 34.947001852567226,-17.32760743759949,34.96371046265162,-17.315648863263682\n", - " Image downloaded for 2024-05-06 and bbox 34.95178751078458,-17.315648863263682,34.96371046265162,-17.311133447223234\n", - " Image downloaded for 2024-05-06 and bbox 34.96371046265162,-17.34987611658989,34.983858813209004,-17.3395660119353\n", - " Image downloaded for 2024-05-06 and bbox 34.96371046265162,-17.3395660119353,34.982903717937305,-17.32760743759949\n", - " Image downloaded for 2024-05-06 and bbox 34.96371046265162,-17.32760743759949,34.977469765322226,-17.322351372243453\n", - " Image downloaded for 2024-05-06 and bbox 34.96371046265162,-17.315106596091614,34.96405511470557,-17.312526972941786\n" + " Image downloaded for 2024-08-14 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n", + " Image downloaded for 2024-08-14 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n", + " Image downloaded for 2024-08-15 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n", + " Image downloaded for 2024-08-15 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n", + " Image downloaded for 2024-08-15 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n", + " Image downloaded for 2024-08-15 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n", + " Image downloaded for 2024-08-16 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n", + " Image downloaded for 2024-08-16 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n", + " Image downloaded for 2024-08-16 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n", + " Image downloaded for 2024-08-16 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n", + " Image downloaded for 2024-08-17 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n", + " Image downloaded for 2024-08-17 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n", + " Image downloaded for 2024-08-17 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n", + " Image downloaded for 2024-08-17 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n", + " Image downloaded for 2024-08-18 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n", + " Image downloaded for 2024-08-18 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n", + " Image downloaded for 2024-08-18 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n", + " Image downloaded for 2024-08-18 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n", + " Image downloaded for 2024-08-19 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n", + " Image downloaded for 2024-08-19 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n", + " Image downloaded for 2024-08-19 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n", + " Image downloaded for 2024-08-19 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n", + " Image downloaded for 2024-08-20 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n", + " Image downloaded for 2024-08-20 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n", + " Image downloaded for 2024-08-20 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n", + " Image downloaded for 2024-08-20 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n" ] } ], @@ -739,706 +641,146 @@ "name": "stderr", "output_type": "stream", "text": [ - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/070a249fec43caa77a02049c86e586aa/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/ef6d31c5422078af6cb7cd4f081fba55/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/d5f234792673d5b8a6d1cc13cec7e041/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/86f5adebbde3cc84ebd1a1c2713eb1b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/9cddb3abd8b3c33879d686aa6a9b9dee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/30ba735efce3cdec1ff0d0aaa5157ee6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/2dbfbc7cbda2f7db8be8b7680431e47c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/ed08da38bdd2dce45b239ebd36aaf6cb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/24a72e1bbc4f25006ab15e148857f041/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/ef6d31c5422078af6cb7cd4f081fba55/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/bc05af36e35b08d3063ae998d98750a1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/86f5adebbde3cc84ebd1a1c2713eb1b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/b2e92c6e2b3eba648b87631c05fd33c4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/30ba735efce3cdec1ff0d0aaa5157ee6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/7da8a528bdd7da9d2915e0ad5bd3aa49/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/ed08da38bdd2dce45b239ebd36aaf6cb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/e6a86feba66db9be7d0f6f753d5f8a07/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/ef6d31c5422078af6cb7cd4f081fba55/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/86f5adebbde3cc84ebd1a1c2713eb1b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/30ba735efce3cdec1ff0d0aaa5157ee6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/ed08da38bdd2dce45b239ebd36aaf6cb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/eb155f61d90258554446c4b0e19e3a1d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/992d8bdfea483876a24577943ba3c6e9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/27a18decf46bc92dab45207d670de64d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/15c39463650e9ff19c944d10cc759b8e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/c68945780987cf316798e3cfba1d8c1c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/ce03682adb8065c3297d1a79fd5c66b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/495c4ff2ba333860fbd7cb2df6ae6337/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/ffa026ea4fc2c76fd15ffab3e4956273/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/eb155f61d90258554446c4b0e19e3a1d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/253fb50e5b4fccb6a0b9068248ef2029/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/27a18decf46bc92dab45207d670de64d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/565116cd18de8ffff80c637b10a7b857/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/c68945780987cf316798e3cfba1d8c1c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/40b4c208b22757a8d7f1de760e23db78/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/495c4ff2ba333860fbd7cb2df6ae6337/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/b24b16e1b41745ca3df7db17f9ec722f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/eb155f61d90258554446c4b0e19e3a1d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/27a18decf46bc92dab45207d670de64d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/c68945780987cf316798e3cfba1d8c1c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/495c4ff2ba333860fbd7cb2df6ae6337/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/457e50bbe535548c2365e486ba9c2aa2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/4cd80c7f1e11573349c6d85eba82006e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/c90a5f036c9116f4953608a61e7cc42b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/070a249fec43caa77a02049c86e586aa/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/b9652f82e47a22769af83d591d68eae3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/d5f234792673d5b8a6d1cc13cec7e041/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/7850ac546430c815d19b497da6b6c7ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/9cddb3abd8b3c33879d686aa6a9b9dee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/457e50bbe535548c2365e486ba9c2aa2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/2dbfbc7cbda2f7db8be8b7680431e47c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/c90a5f036c9116f4953608a61e7cc42b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/24a72e1bbc4f25006ab15e148857f041/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/b9652f82e47a22769af83d591d68eae3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/bc05af36e35b08d3063ae998d98750a1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/7850ac546430c815d19b497da6b6c7ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/b2e92c6e2b3eba648b87631c05fd33c4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/457e50bbe535548c2365e486ba9c2aa2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/c90a5f036c9116f4953608a61e7cc42b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/b9652f82e47a22769af83d591d68eae3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/7850ac546430c815d19b497da6b6c7ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/22a882b61a4bc5fa7df1c26c003d0d58/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/7da8a528bdd7da9d2915e0ad5bd3aa49/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/281a6c4e3583b4f96fd46be0af82edbd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/e6a86feba66db9be7d0f6f753d5f8a07/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/b6506ef411afcd941a0b776573d4f1ca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/992d8bdfea483876a24577943ba3c6e9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/46922f95c5409b9213eed0d7294e45ea/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/15c39463650e9ff19c944d10cc759b8e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/22a882b61a4bc5fa7df1c26c003d0d58/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/ce03682adb8065c3297d1a79fd5c66b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/281a6c4e3583b4f96fd46be0af82edbd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/ffa026ea4fc2c76fd15ffab3e4956273/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/b6506ef411afcd941a0b776573d4f1ca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/253fb50e5b4fccb6a0b9068248ef2029/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/46922f95c5409b9213eed0d7294e45ea/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/565116cd18de8ffff80c637b10a7b857/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/22a882b61a4bc5fa7df1c26c003d0d58/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/281a6c4e3583b4f96fd46be0af82edbd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/b6506ef411afcd941a0b776573d4f1ca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/46922f95c5409b9213eed0d7294e45ea/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/97ff9146fcf97134abfb024813c18a46/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/40b4c208b22757a8d7f1de760e23db78/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/f6749a66964c04dee41c4332fa1ba226/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/b24b16e1b41745ca3df7db17f9ec722f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d97d9736fa409aeee3abaf6584e25691/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/4cd80c7f1e11573349c6d85eba82006e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/4c5943399e742c95c2f4b91cf96f2360/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/070a249fec43caa77a02049c86e586aa/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/d5f234792673d5b8a6d1cc13cec7e041/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/9cddb3abd8b3c33879d686aa6a9b9dee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/2dbfbc7cbda2f7db8be8b7680431e47c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/24a72e1bbc4f25006ab15e148857f041/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/bc05af36e35b08d3063ae998d98750a1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/b2e92c6e2b3eba648b87631c05fd33c4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/7da8a528bdd7da9d2915e0ad5bd3aa49/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/e6a86feba66db9be7d0f6f753d5f8a07/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/97ff9146fcf97134abfb024813c18a46/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/b24b16e1b41745ca3df7db17f9ec722f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/f6749a66964c04dee41c4332fa1ba226/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/4cd80c7f1e11573349c6d85eba82006e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/ffa026ea4fc2c76fd15ffab3e4956273/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d97d9736fa409aeee3abaf6584e25691/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/4c5943399e742c95c2f4b91cf96f2360/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/15c39463650e9ff19c944d10cc759b8e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/992d8bdfea483876a24577943ba3c6e9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/97ff9146fcf97134abfb024813c18a46/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/f6749a66964c04dee41c4332fa1ba226/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d97d9736fa409aeee3abaf6584e25691/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/4c5943399e742c95c2f4b91cf96f2360/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/1bcc6b42db152e6dc6f7b2363542c017/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/253fb50e5b4fccb6a0b9068248ef2029/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/96359544e98d143c3579d27f525f2c2b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/21adbda11f4f80e341a2b6638bdb7a38/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/ce03682adb8065c3297d1a79fd5c66b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/565116cd18de8ffff80c637b10a7b857/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-04-30/40b4c208b22757a8d7f1de760e23db78/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/d260b63a7020a6d388e1745a3c77be00/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/1bcc6b42db152e6dc6f7b2363542c017/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/96359544e98d143c3579d27f525f2c2b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/b0064a92db1de58dee5904e42904a917/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/21adbda11f4f80e341a2b6638bdb7a38/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/dcceff6661d50aa590c48edbec3c28c7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/d260b63a7020a6d388e1745a3c77be00/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/d6640ca5ed0ad46fa7a4649b4bc7a66e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/1bcc6b42db152e6dc6f7b2363542c017/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/96359544e98d143c3579d27f525f2c2b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/21adbda11f4f80e341a2b6638bdb7a38/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/d260b63a7020a6d388e1745a3c77be00/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/d6d7322e5b2e1ee200c1289f7e3ca584/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/80795e1d20de17e172c477271a844e3f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/8743609eaa73d8daccf38173f18cab62/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/07e14f1169d45a017a76a9aaa55aa5bb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/51430ceb565cc95c4bf84fd6d0ba17ab/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/a29c686db3482bd689e3120500d7a9db/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/c8f521df119266886b1d57f10ca39666/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/928f5225aeea66f054d6831b978609ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/d6d7322e5b2e1ee200c1289f7e3ca584/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/14a9a612173eba8f8449e843b79ab9ad/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/8743609eaa73d8daccf38173f18cab62/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/1dfa662195163fcb4ecb1b29291d252e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/51430ceb565cc95c4bf84fd6d0ba17ab/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/ab759841791d0c72960cc02a07733882/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/c8f521df119266886b1d57f10ca39666/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/0edf804e3a696952a59c89101a705f6f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/bcf51810bcdddc017491fe147176480f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/11ad498177b78b485e9f1419c01ec37d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/b17cc2b782472f71056afd14253e7c7b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/fae4bc342d58f06032b244eb15a5926e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/3008c948ae005039ec18316d45f18673/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/40c017b2e4a4019b6b9e320ef22c6fe7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/87292edb77850d399aa0f6ad8a554ab5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/b0064a92db1de58dee5904e42904a917/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/dcceff6661d50aa590c48edbec3c28c7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/d6640ca5ed0ad46fa7a4649b4bc7a66e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/80795e1d20de17e172c477271a844e3f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/07e14f1169d45a017a76a9aaa55aa5bb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/a29c686db3482bd689e3120500d7a9db/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/928f5225aeea66f054d6831b978609ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/14a9a612173eba8f8449e843b79ab9ad/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/1dfa662195163fcb4ecb1b29291d252e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/ab759841791d0c72960cc02a07733882/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/0edf804e3a696952a59c89101a705f6f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/bcf51810bcdddc017491fe147176480f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/11ad498177b78b485e9f1419c01ec37d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/b17cc2b782472f71056afd14253e7c7b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/fae4bc342d58f06032b244eb15a5926e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/3008c948ae005039ec18316d45f18673/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/40c017b2e4a4019b6b9e320ef22c6fe7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/87292edb77850d399aa0f6ad8a554ab5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/b0064a92db1de58dee5904e42904a917/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/dcceff6661d50aa590c48edbec3c28c7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/d6640ca5ed0ad46fa7a4649b4bc7a66e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/80795e1d20de17e172c477271a844e3f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/07e14f1169d45a017a76a9aaa55aa5bb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/ab759841791d0c72960cc02a07733882/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/fae4bc342d58f06032b244eb15a5926e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/0edf804e3a696952a59c89101a705f6f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/11ad498177b78b485e9f1419c01ec37d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/14a9a612173eba8f8449e843b79ab9ad/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/928f5225aeea66f054d6831b978609ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/b17cc2b782472f71056afd14253e7c7b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/40c017b2e4a4019b6b9e320ef22c6fe7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/a29c686db3482bd689e3120500d7a9db/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/87292edb77850d399aa0f6ad8a554ab5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/1dfa662195163fcb4ecb1b29291d252e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/bcf51810bcdddc017491fe147176480f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-01/3008c948ae005039ec18316d45f18673/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/7c3ae61521b7a6ab565225bb2249e4ec/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ce0d47e14c97bbd784d118be2de0ae62/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/8dd96d3653f8e346e8098dc94c7e7cbd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ef08978e6219198d92b84878f68f9ae8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/9d189abac90b8d44258b7966dbc5972a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/6d4a207922a70ec6127d854d17f598e4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/00ae1802be716a8949626bf14d0fe65d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/143da61a9ceb72a81c2b8dc1f631eb2d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/5691e02bc2d2913609d767911c880c2d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ff90ec1893e2333adb5e9de63c556bf2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/2ee0d0739f1df2a96036e2eb9746c9e7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/c82f67408211a5cd46957c546d913295/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/dd75980281bec0338d16a10595e51884/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/7cadb81ddbe4b4176700b80b9bee1bcd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/c115e5f439927e7b937196d45323c125/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/e62127de6d9132a2a06da9fcd7fcf44e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/f09379504212b0f2696f029e78381658/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/df640075c8118c47b2e07fd78e96c75d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/7c3ae61521b7a6ab565225bb2249e4ec/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ce0d47e14c97bbd784d118be2de0ae62/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/8dd96d3653f8e346e8098dc94c7e7cbd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ef08978e6219198d92b84878f68f9ae8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/9d189abac90b8d44258b7966dbc5972a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/6d4a207922a70ec6127d854d17f598e4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/00ae1802be716a8949626bf14d0fe65d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/143da61a9ceb72a81c2b8dc1f631eb2d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/5691e02bc2d2913609d767911c880c2d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ff90ec1893e2333adb5e9de63c556bf2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/2ee0d0739f1df2a96036e2eb9746c9e7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/c82f67408211a5cd46957c546d913295/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/dd75980281bec0338d16a10595e51884/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/7cadb81ddbe4b4176700b80b9bee1bcd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/c115e5f439927e7b937196d45323c125/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/e62127de6d9132a2a06da9fcd7fcf44e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/f09379504212b0f2696f029e78381658/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/df640075c8118c47b2e07fd78e96c75d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/7c3ae61521b7a6ab565225bb2249e4ec/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ce0d47e14c97bbd784d118be2de0ae62/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/8dd96d3653f8e346e8098dc94c7e7cbd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ef08978e6219198d92b84878f68f9ae8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/9d189abac90b8d44258b7966dbc5972a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/6d4a207922a70ec6127d854d17f598e4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/00ae1802be716a8949626bf14d0fe65d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/143da61a9ceb72a81c2b8dc1f631eb2d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/5691e02bc2d2913609d767911c880c2d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/ff90ec1893e2333adb5e9de63c556bf2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/2ee0d0739f1df2a96036e2eb9746c9e7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/dd75980281bec0338d16a10595e51884/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/c82f67408211a5cd46957c546d913295/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/df640075c8118c47b2e07fd78e96c75d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/7cadb81ddbe4b4176700b80b9bee1bcd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/e62127de6d9132a2a06da9fcd7fcf44e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/f09379504212b0f2696f029e78381658/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-02/c115e5f439927e7b937196d45323c125/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/1c88c78ecb9577729d2f858937f1a715/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/7b5d1d3e3eb5bc4b0a5d37e7d7a853f4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/f345af9d6fb371618c890b8648360f37/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/d2b3758861aa0a725742a06fcf4b1715/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/98f992dc9d814da5494e78bc76786fed/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/b4bc4099ff05d542f37679176df3220a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/bedc27aa80ee539b6224e5027aa73bfd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/f49a7a4b5171c5710a21e4a5705b71dc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/03be40a9c2d05f7bc22b0e074323dca1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/69f44076887e0190fe85f2fe3c830acf/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/3820b9461a1622c3b583885be4fd40e8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/4b90894ec916a7d180bf2ddcb5b7d4e5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/7c9e2a2700c85973afa9b27a4389464e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/09c61fc78f8bec1993f6376d48efaf0e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/6b3e5435a6ddb1005c4b54533f39b55d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/dfcb4a9dddcbc391cee80586031a0c03/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/a325232d8b7c5fe528d5d6f1367c6fc7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/94cb38836b57a6721d7fc1f0b4b436b7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/1c88c78ecb9577729d2f858937f1a715/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/7b5d1d3e3eb5bc4b0a5d37e7d7a853f4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/f345af9d6fb371618c890b8648360f37/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/d2b3758861aa0a725742a06fcf4b1715/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/98f992dc9d814da5494e78bc76786fed/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/b4bc4099ff05d542f37679176df3220a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/bedc27aa80ee539b6224e5027aa73bfd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/f49a7a4b5171c5710a21e4a5705b71dc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/03be40a9c2d05f7bc22b0e074323dca1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/69f44076887e0190fe85f2fe3c830acf/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/3820b9461a1622c3b583885be4fd40e8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/4b90894ec916a7d180bf2ddcb5b7d4e5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/7c9e2a2700c85973afa9b27a4389464e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/09c61fc78f8bec1993f6376d48efaf0e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/6b3e5435a6ddb1005c4b54533f39b55d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/dfcb4a9dddcbc391cee80586031a0c03/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/a325232d8b7c5fe528d5d6f1367c6fc7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/94cb38836b57a6721d7fc1f0b4b436b7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/1c88c78ecb9577729d2f858937f1a715/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/7b5d1d3e3eb5bc4b0a5d37e7d7a853f4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/f345af9d6fb371618c890b8648360f37/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/d2b3758861aa0a725742a06fcf4b1715/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/98f992dc9d814da5494e78bc76786fed/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/b4bc4099ff05d542f37679176df3220a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/bedc27aa80ee539b6224e5027aa73bfd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/f49a7a4b5171c5710a21e4a5705b71dc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/03be40a9c2d05f7bc22b0e074323dca1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/69f44076887e0190fe85f2fe3c830acf/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/3820b9461a1622c3b583885be4fd40e8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/4b90894ec916a7d180bf2ddcb5b7d4e5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/09c61fc78f8bec1993f6376d48efaf0e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/7c9e2a2700c85973afa9b27a4389464e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/6b3e5435a6ddb1005c4b54533f39b55d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/dfcb4a9dddcbc391cee80586031a0c03/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/a325232d8b7c5fe528d5d6f1367c6fc7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-03/94cb38836b57a6721d7fc1f0b4b436b7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/d269062c99ec6358bbcddf4d85830e1e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/59fb3df57c52022d90f415be322e5d1c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/9caece3569faf5643e28bf213be9fbad/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/201bc3d66659f2b76c8b2b18e0a248f5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/df85beb0ea7efdf5b8241c6a338b3f58/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/aa91ca61df4a4c00ceca2d66194aeb3d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/db9ffc54a1ee8aeeb453b4c37c90670b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/1e634885b84129cf19b99665ba58e7fd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/805061a259ae2ec6d2fef39eba67e5bd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/2220ba9439566890a8b21e768c72e97a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/9c5ed1a949fd843e00d4094c0cde2a45/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/05fc279fa016124b724d0156ac6cfec7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/49e3a225d1b5d42735702b0e75898fe9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/cbdef469ba6fe33ef40237c8708cd5f2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/be226cf4eb6bd1076834180b48a4936a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/2f1470b5b6222f1f9e2db22c20d55926/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/260011d11ef255b17515affe882f195f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/081ba00079f1355c7386b466a3be7332/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/d269062c99ec6358bbcddf4d85830e1e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/59fb3df57c52022d90f415be322e5d1c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/9caece3569faf5643e28bf213be9fbad/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/201bc3d66659f2b76c8b2b18e0a248f5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/df85beb0ea7efdf5b8241c6a338b3f58/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/aa91ca61df4a4c00ceca2d66194aeb3d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/db9ffc54a1ee8aeeb453b4c37c90670b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/1e634885b84129cf19b99665ba58e7fd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/805061a259ae2ec6d2fef39eba67e5bd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/2220ba9439566890a8b21e768c72e97a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/9c5ed1a949fd843e00d4094c0cde2a45/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/05fc279fa016124b724d0156ac6cfec7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/49e3a225d1b5d42735702b0e75898fe9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/cbdef469ba6fe33ef40237c8708cd5f2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/be226cf4eb6bd1076834180b48a4936a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/2f1470b5b6222f1f9e2db22c20d55926/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/260011d11ef255b17515affe882f195f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/081ba00079f1355c7386b466a3be7332/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/d269062c99ec6358bbcddf4d85830e1e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/59fb3df57c52022d90f415be322e5d1c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/be226cf4eb6bd1076834180b48a4936a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/9caece3569faf5643e28bf213be9fbad/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/201bc3d66659f2b76c8b2b18e0a248f5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/df85beb0ea7efdf5b8241c6a338b3f58/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/aa91ca61df4a4c00ceca2d66194aeb3d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/db9ffc54a1ee8aeeb453b4c37c90670b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/1e634885b84129cf19b99665ba58e7fd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/805061a259ae2ec6d2fef39eba67e5bd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/2220ba9439566890a8b21e768c72e97a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/9c5ed1a949fd843e00d4094c0cde2a45/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/05fc279fa016124b724d0156ac6cfec7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/49e3a225d1b5d42735702b0e75898fe9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/cbdef469ba6fe33ef40237c8708cd5f2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/260011d11ef255b17515affe882f195f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/081ba00079f1355c7386b466a3be7332/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-04/2f1470b5b6222f1f9e2db22c20d55926/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/bcce0f7421aeaf7cfab93d09c3b58998/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/2a98e627489ae5d22e495adc012c1389/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/c050b780390fe646e72bee9b81d71179/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/19510c8d6ecfa862d1201b60c399cfb5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/b79bcb2a831f7ec32c2d51fb2de0d086/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/c0474d3ea9f9db792523c9b5b26c425b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/90bf7f40b26a14a1eb6da580cc32b969/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/0a2e98d3a638c38b7e8981ff267f09dc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/39277034ce64bf946dc60587811427eb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/74074c1cb9d7063cc551aea96f668adf/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/bbd4cad44445666248ac3b1534ce3471/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/d361732ffabb8fa5ea8a180ddb40222a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/652afe35c656c387fc3520b583b834cd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/ad82798694128157adb64d1b8a2c8448/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/f7c27016bced65294ae50adced005920/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/f5c2f4919afdd0863e5008c1973073d8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/8fe0e74407ff561eb3fe64d463e663c6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/a083c53173057f787c7505f323bbb12b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/bcce0f7421aeaf7cfab93d09c3b58998/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/2a98e627489ae5d22e495adc012c1389/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/c050b780390fe646e72bee9b81d71179/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/19510c8d6ecfa862d1201b60c399cfb5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/b79bcb2a831f7ec32c2d51fb2de0d086/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/c0474d3ea9f9db792523c9b5b26c425b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/90bf7f40b26a14a1eb6da580cc32b969/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/0a2e98d3a638c38b7e8981ff267f09dc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/39277034ce64bf946dc60587811427eb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/74074c1cb9d7063cc551aea96f668adf/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/bbd4cad44445666248ac3b1534ce3471/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/d361732ffabb8fa5ea8a180ddb40222a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/652afe35c656c387fc3520b583b834cd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/ad82798694128157adb64d1b8a2c8448/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/f7c27016bced65294ae50adced005920/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/f5c2f4919afdd0863e5008c1973073d8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/8fe0e74407ff561eb3fe64d463e663c6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/a083c53173057f787c7505f323bbb12b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/bcce0f7421aeaf7cfab93d09c3b58998/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/2a98e627489ae5d22e495adc012c1389/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/c050b780390fe646e72bee9b81d71179/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/19510c8d6ecfa862d1201b60c399cfb5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/b79bcb2a831f7ec32c2d51fb2de0d086/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/c0474d3ea9f9db792523c9b5b26c425b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/90bf7f40b26a14a1eb6da580cc32b969/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/0a2e98d3a638c38b7e8981ff267f09dc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/39277034ce64bf946dc60587811427eb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/a083c53173057f787c7505f323bbb12b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/d361732ffabb8fa5ea8a180ddb40222a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/8fe0e74407ff561eb3fe64d463e663c6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/74074c1cb9d7063cc551aea96f668adf/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/bbd4cad44445666248ac3b1534ce3471/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/f5c2f4919afdd0863e5008c1973073d8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/652afe35c656c387fc3520b583b834cd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/f7c27016bced65294ae50adced005920/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-05/ad82798694128157adb64d1b8a2c8448/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b8d623ea5876f6aca53982448545df4e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/f553cf6572d545c7bd0375533e1104a6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/2b1e32cea7de7b44297080f52ce8b977/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/98fdae0b2a978f454a5ba3d525c4ec0a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/1697260e186dd1888764affb75206978/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b9766914398211c229f30474437a6dde/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/914ef14d917eea8b7b4052a57e63226b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/a9090cb73c3d49ff70b13f1bad2f9ae8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b586a751b45e71ad1eae14034be541a4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/5f85ddaa33a3f32a0c6e9d918efffeba/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/a83fd5e1ceb617fe53b870d7df1fe84a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/0a27248d1ba8877a330f7b61e121ff3d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/26a04d578de509b9bc216707b2e244c3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/e2e21792b94aeb2bc7943798e2369c72/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/76db8c0e2a04ba1d266ad45279ca6ab1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/1b4e026a38e07fd2af6c4fe65e595be8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/81c414d946f67775de1da2aafb72c393/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/ad18dd0cd388525def320f0fb7b31939/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b8d623ea5876f6aca53982448545df4e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/f553cf6572d545c7bd0375533e1104a6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/2b1e32cea7de7b44297080f52ce8b977/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/98fdae0b2a978f454a5ba3d525c4ec0a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/1697260e186dd1888764affb75206978/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b9766914398211c229f30474437a6dde/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/914ef14d917eea8b7b4052a57e63226b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/a9090cb73c3d49ff70b13f1bad2f9ae8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b586a751b45e71ad1eae14034be541a4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/5f85ddaa33a3f32a0c6e9d918efffeba/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/a83fd5e1ceb617fe53b870d7df1fe84a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/0a27248d1ba8877a330f7b61e121ff3d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/26a04d578de509b9bc216707b2e244c3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/e2e21792b94aeb2bc7943798e2369c72/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/76db8c0e2a04ba1d266ad45279ca6ab1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/1b4e026a38e07fd2af6c4fe65e595be8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/81c414d946f67775de1da2aafb72c393/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/ad18dd0cd388525def320f0fb7b31939/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b8d623ea5876f6aca53982448545df4e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/f553cf6572d545c7bd0375533e1104a6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/2b1e32cea7de7b44297080f52ce8b977/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/98fdae0b2a978f454a5ba3d525c4ec0a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/1697260e186dd1888764affb75206978/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b9766914398211c229f30474437a6dde/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/76db8c0e2a04ba1d266ad45279ca6ab1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/e2e21792b94aeb2bc7943798e2369c72/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/81c414d946f67775de1da2aafb72c393/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/914ef14d917eea8b7b4052a57e63226b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/a9090cb73c3d49ff70b13f1bad2f9ae8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/b586a751b45e71ad1eae14034be541a4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/0a27248d1ba8877a330f7b61e121ff3d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/26a04d578de509b9bc216707b2e244c3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/a83fd5e1ceb617fe53b870d7df1fe84a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/5f85ddaa33a3f32a0c6e9d918efffeba/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/1b4e026a38e07fd2af6c4fe65e595be8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/chemba/single_images/2024-05-06/ad18dd0cd388525def320f0fb7b31939/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n" + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/d6d7322e5b2e1ee200c1289f7e3ca584/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/8743609eaa73d8daccf38173f18cab62/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/51430ceb565cc95c4bf84fd6d0ba17ab/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/c8f521df119266886b1d57f10ca39666/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n" ] } ], diff --git a/r_app/CI_report_dashboard_planet.Rmd b/r_app/CI_report_dashboard_planet.Rmd index 7e3b471..50c9446 100644 --- a/r_app/CI_report_dashboard_planet.Rmd +++ b/r_app/CI_report_dashboard_planet.Rmd @@ -72,10 +72,12 @@ source(here("r_app", "parameters_project.R")) ```{r week, message=FALSE, warning=FALSE, include=FALSE} +Sys.setlocale("LC_TIME", "C") today <- as.character(report_date) mail_day_as_character <- as.character(mail_day) -report_date_as_week_day = weekdays(as.Date(today)) +report_date_as_week_day <- weekdays(ymd(today)) + days_of_week <- c("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday") #als de index of report_date_as_week_day groter dan de index van de mail_day dan moet de week + 1 week <- week(today) @@ -294,7 +296,7 @@ ci_plot <- function(pivotName){ tst <- tmap_arrange(CImap_m2, CImap_m1, CImap,CI_max_abs_last_week, CI_max_abs_three_week, nrow = 1) - cat(paste("## Pivot", pivotName, "-", age, "weeks after planting/harvest", "\n")) + cat(paste("## Field", pivotName, "-", age, "weeks after planting/harvest", "\n")) # cat("\n") # cat('

Pivot', pivotName, '- week', week, '-', age$Age, 'weeks after planting/harvest

') # cat(paste("# Pivot",pivots$pivot[i],"\n")) diff --git a/r_app/Rplots.pdf b/r_app/Rplots.pdf index c2641941185026767274cd3b5f70623d9ff5f304..39d9bd71c14f9d4dd7206f2a20c9662beb244ce7 100644 GIT binary patch delta 2847 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 ZnKLjGhGo-S)DA5eJcO}CqCKCB{V!aa67T>3 literal 149318 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 LiAhRD8u$MI_U~g; diff --git a/r_app/ci_extraction.R b/r_app/ci_extraction.R index 34cd953..6e210a1 100644 --- a/r_app/ci_extraction.R +++ b/r_app/ci_extraction.R @@ -92,7 +92,7 @@ raster_files <- list.files(planet_tif_folder,full.names = T, pattern = ".tif") filtered_files <- map(dates$days_filter, ~ raster_files[grepl(pattern = .x, x = raster_files)]) %>% compact() %>% flatten_chr() - +head(filtered_files) # filtered_files <- raster_files #for first CI extraction # create_mask_and_crop <- function(file, field_boundaries) { @@ -129,13 +129,11 @@ for (file in filtered_files) { emtpy_or_full <- global(v_crop, "notNA") vrt_file <- here(daily_vrt, paste0(tools::file_path_sans_ext(basename(file)), ".vrt")) - - if(emtpy_or_full[1,] > 10000){ + if(emtpy_or_full[1,] > 100){ vrt_list[vrt_file] <- vrt_file }else{ file.remove(vrt_file) - } message(file, " processed") diff --git a/r_app/mosaic_creation.R b/r_app/mosaic_creation.R index f43789c..b3a0bcb 100644 --- a/r_app/mosaic_creation.R +++ b/r_app/mosaic_creation.R @@ -101,68 +101,79 @@ vrt_list <- map(dates$days_filter, ~ vrt_files[grepl(pattern = .x, x = vrt_file compact() %>% flatten_chr() -total_pix_area <- rast(vrt_list[1]) %>% terra::subset(1) %>% setValues(1) %>% - crop(field_boundaries, mask = TRUE) %>% - global(., fun="notNA") #%>% + raster_files_final <- list.files(merged_final,full.names = T, pattern = ".tif") +if (length(vrt_list) > 0 ){ + print("vrt list made, preparing mosaic creation by counting cloud cover") -layer_5_list <- purrr::map(vrt_list, function(vrt_list) { - rast(vrt_list[1]) %>% terra::subset(1) -}) %>% rast() + total_pix_area <- rast(vrt_list[1]) %>% terra::subset(1) %>% setValues(1) %>% + crop(field_boundaries, mask = TRUE) %>% + global(., fun="notNA") #%>% -missing_pixels_count <- layer_5_list %>% global(., fun="notNA") %>% - mutate( - total_pixels = total_pix_area$notNA, - missing_pixels_percentage = round(100 -((notNA/total_pix_area$notNA)*100)), - thres_5perc = as.integer(missing_pixels_percentage < 5), - thres_40perc = as.integer(missing_pixels_percentage < 45) - ) + layer_5_list <- purrr::map(vrt_list, function(vrt_list) { + rast(vrt_list[1]) %>% terra::subset(1) + }) %>% rast() -index_5perc <- which(missing_pixels_count$thres_5perc == max(missing_pixels_count$thres_5perc) ) -index_40perc <- which(missing_pixels_count$thres_40perc == max(missing_pixels_count$thres_40perc)) + missing_pixels_count <- layer_5_list %>% global(., fun="notNA") %>% + mutate( + total_pixels = total_pix_area$notNA, + missing_pixels_percentage = round(100 -((notNA/total_pix_area$notNA)*100)), + thres_5perc = as.integer(missing_pixels_percentage < 5), + thres_40perc = as.integer(missing_pixels_percentage < 45) + ) -## Create mosaic + index_5perc <- which(missing_pixels_count$thres_5perc == max(missing_pixels_count$thres_5perc) ) + index_40perc <- which(missing_pixels_count$thres_40perc == max(missing_pixels_count$thres_40perc)) + + ## Create mosaic + + if(sum(missing_pixels_count$thres_5perc)>1){ + message("More than 1 raster without clouds (<5%), max composite made") + + cloudy_rasters_list <- vrt_list[index_5perc] + + rsrc <- sprc(cloudy_rasters_list) + x <- terra::mosaic(rsrc, fun = "max") + names(x) <- c("Red", "Green", "Blue", "NIR", "CI") + + }else if(sum(missing_pixels_count$thres_5perc)==1){ + message("Only 1 raster without clouds (<5%)") + + x <- rast(vrt_list[index_5perc[1]]) + names(x) <- c("Red", "Green", "Blue", "NIR", "CI") + + }else if(sum(missing_pixels_count$thres_40perc)>1){ + message("More than 1 image contains clouds, composite made of <40% cloud cover images") + + cloudy_rasters_list <- vrt_list[index_40perc] + + rsrc <- sprc(cloudy_rasters_list) + x <- mosaic(rsrc, fun = "max") + names(x) <- c("Red", "Green", "Blue", "NIR", "CI") + + }else if(sum(missing_pixels_count$thres_40perc)==1){ + message("Only 1 image available but contains clouds") + + x <- rast(vrt_list[index_40perc[1]]) + names(x) <- c("Red", "Green", "Blue", "NIR", "CI") + + }else if(sum(missing_pixels_count$thres_40perc)==0){ + message("No cloud free images available, all images combined") + + rsrc <- sprc(vrt_list) + x <- mosaic(rsrc, fun = "max") + names(x) <- c("Red", "Green", "Blue", "NIR", "CI") + + } + +} else{ + + message("No images available this week, empty mosaic created") + + x <- rast(raster_files_final[1]) %>% setValues(0) %>% + crop(field_boundaries, mask = TRUE) -if(sum(missing_pixels_count$thres_5perc)>1){ - message("More than 1 raster without clouds (<5%), max composite made") - - cloudy_rasters_list <- vrt_list[index_5perc] - - rsrc <- sprc(cloudy_rasters_list) - x <- terra::mosaic(rsrc, fun = "max") - - # names(x) <- "CI" - names(x) <- c("Red", "Green", "Blue", "NIR", "CI") -}else if(sum(missing_pixels_count$thres_5perc)==1){ - message("Only 1 raster without clouds (<5%)") - - x <- rast(vrt_list[index_5perc[1]]) - # names(x) <- c("CI") - names(x) <- c("Red", "Green", "Blue", "NIR", "CI") -}else if(sum(missing_pixels_count$thres_40perc)>1){ - message("More than 1 image contains clouds, composite made of <40% cloud cover images") - - cloudy_rasters_list <- vrt_list[index_40perc] - - rsrc <- sprc(cloudy_rasters_list) - x <- terra::mosaic(rsrc, fun = "max") - # names(x) <- "CI" - names(x) <- c("Red", "Green", "Blue", "NIR", "CI") -}else if(sum(missing_pixels_count$thres_40perc)==1){ - message("Only 1 image available but contains clouds") - - x <- rast(vrt_list[index_40perc[1]]) - # names(x) <- c("CI") - names(x) <- c("Red", "Green", "Blue", "NIR", "CI") -}else{ - message("No cloud free images available, all images combined") - message(vrt_list) - rsrc <- sprc(vrt_list) - x <- terra::mosaic(rsrc, fun = "max") - # x <- rast(vrt_list[1]) %>% setValues(NA) - # names(x) <- c("CI") names(x) <- c("Red", "Green", "Blue", "NIR", "CI") } - plot(x$CI, main = paste("CI map ", dates$week)) plotRGB(x, main = paste("RGB map ", dates$week)) diff --git a/r_app/parameters_project.R b/r_app/parameters_project.R index cbfa024..88a9123 100644 --- a/r_app/parameters_project.R +++ b/r_app/parameters_project.R @@ -91,14 +91,20 @@ if(project_dir == "chemba"){ field_boundaries_sf <- st_read(here(data_dir, "pivot.geojson")) names(field_boundaries_sf) <- c("field", "sub_field", "geometry") field_boundaries <- field_boundaries_sf %>% vect() - harvesting_data <- read_excel(here(data_dir, "harvest.xlsx"), - col_types = c("text", "text", "numeric", - "date", "date", "numeric", "text", - "numeric", "numeric")) %>% - mutate(season_end = case_when( - season_end > Sys.Date() ~ Sys.Date(), - TRUE ~ season_end), - age = round(as.numeric(season_end - season_start)/7),1) - + harvesting_data <- read_excel(here(data_dir, "harvest.xlsx")) %>% + dplyr::select(c("field", "sub_field", "year", "season_start", "season_end", "age", "sub_area", "tonnage_ha")) %>% + mutate(field = as.character(field), + sub_field = as.character(sub_field), + year = as.numeric(year), + season_start = as.Date(season_start), + season_end = as.Date(season_end), + age = as.numeric(age), + sub_area = as.character(sub_area), + tonnage_ha = as.numeric(tonnage_ha) + ) %>% + mutate(season_end = case_when( + season_end > Sys.Date() ~ Sys.Date(), + TRUE ~ season_end), + age = round(as.numeric(season_end - season_start)/7,0)) }