optimized-react-component-library-xyz123 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -335,6 +335,287 @@ var PreviewTextField = ({
335
335
  ] }) });
336
336
  };
337
337
 
338
+ // src/NewInputComponentStandard/FilesUploadStandard/FilesUploadStandard.tsx
339
+ import { useState as useState2, useRef, useEffect as useEffect2 } from "react";
340
+ import clsx from "clsx";
341
+ import { jsx as jsx5, jsxs as jsxs5 } from "react/jsx-runtime";
342
+ var FilesUpload = ({
343
+ question,
344
+ isTouched: _isTouched,
345
+ visible: _visible = true,
346
+ showPreview: _showPreview = false,
347
+ activatedLanguage: _activatedLanguage = "sv",
348
+ onFilesAdded,
349
+ onFileRemoved,
350
+ allowedNumberOfFiles = 5,
351
+ allowedFileTypes = [".pdf", ".doc", ".docx", ".xls", ".xlsx", ".txt", ".rtf", ".ppt", ".pptx", ".jpg", ".jpeg", ".png", ".tif", ".tiff", ".csv"],
352
+ maxFileSize = 50 * 1024 * 1024,
353
+ // 50MB default
354
+ allowedTotalFileSize = 20 * 1024 * 1024,
355
+ // 20MB default
356
+ allowDuplicates = false,
357
+ multiple = true
358
+ }) => {
359
+ const [selectedFiles, setSelectedFiles] = useState2([]);
360
+ const [dragActive, setDragActive] = useState2(false);
361
+ const fileInputRef = useRef(null);
362
+ const generateFileId = (file) => {
363
+ return `${file.name}-${file.size}-${Date.now()}`;
364
+ };
365
+ const readFileAsDataURL = (file) => {
366
+ return new Promise((resolve, reject) => {
367
+ const reader = new FileReader();
368
+ reader.onload = () => resolve(reader.result);
369
+ reader.onerror = () => reject(reader.error);
370
+ reader.readAsDataURL(file);
371
+ });
372
+ };
373
+ useEffect2(() => {
374
+ if (question.files && question.files.length > 0) {
375
+ const existingFiles = question.files.map((item) => {
376
+ if (item instanceof File) {
377
+ return {
378
+ id: generateFileId(item),
379
+ file: item
380
+ };
381
+ } else {
382
+ return {
383
+ id: item.id || generateFileId(item.file),
384
+ file: item.file,
385
+ dataURL: item.dataURL
386
+ };
387
+ }
388
+ });
389
+ setSelectedFiles(existingFiles);
390
+ }
391
+ }, [question.files]);
392
+ const getTotalFileSize = () => {
393
+ return selectedFiles.reduce((total, selectedFile) => total + selectedFile.file.size, 0);
394
+ };
395
+ const validateFile = (file, additionalFiles = []) => {
396
+ var _a;
397
+ if (file.size > maxFileSize) {
398
+ return `Filen \xE4r f\xF6r stor. Max storlek: ${formatFileSize(maxFileSize)}`;
399
+ }
400
+ const currentTotalSize = getTotalFileSize();
401
+ const additionalSize = additionalFiles.reduce((sum, f) => sum + f.size, 0);
402
+ const newTotalSize = currentTotalSize + additionalSize + file.size;
403
+ if (newTotalSize > allowedTotalFileSize) {
404
+ const remainingSize = allowedTotalFileSize - currentTotalSize - additionalSize;
405
+ return `Total filstorlek \xF6verskrider gr\xE4nsen p\xE5 ${formatFileSize(allowedTotalFileSize)}. \xC5terst\xE5ende: ${formatFileSize(Math.max(0, remainingSize))}`;
406
+ }
407
+ if (allowedFileTypes.length > 0 && !allowedFileTypes.includes("*")) {
408
+ const fileExtension = (_a = file.name.split(".").pop()) == null ? void 0 : _a.toLowerCase();
409
+ if (!fileExtension) {
410
+ return `Fil saknar fil\xE4ndelse`;
411
+ }
412
+ const isValidType = allowedFileTypes.some((type) => {
413
+ const cleanType = type.startsWith(".") ? type.slice(1).toLowerCase() : type.toLowerCase();
414
+ return cleanType === fileExtension;
415
+ });
416
+ if (!isValidType) {
417
+ const displayTypes = allowedFileTypes.map(
418
+ (type) => type.startsWith(".") ? type : `.${type}`
419
+ );
420
+ return `Filtyp inte till\xE5ten. Till\xE5tna: ${displayTypes.join(", ")}`;
421
+ }
422
+ }
423
+ if (!allowDuplicates) {
424
+ const isDuplicate = selectedFiles.some(
425
+ (selectedFile) => selectedFile.file.name === file.name && selectedFile.file.size === file.size
426
+ );
427
+ if (isDuplicate) {
428
+ return `Filen finns redan i listan`;
429
+ }
430
+ }
431
+ if (selectedFiles.length >= allowedNumberOfFiles) {
432
+ return `Maximalt ${allowedNumberOfFiles} filer till\xE5tet`;
433
+ }
434
+ return null;
435
+ };
436
+ const addFilesToList = async (files) => {
437
+ const fileArray = Array.from(files);
438
+ const newFiles = [];
439
+ const errors = [];
440
+ for (const file of fileArray) {
441
+ const validatedFiles = fileArray.slice(0, fileArray.indexOf(file));
442
+ const error = validateFile(file, validatedFiles);
443
+ if (error) {
444
+ errors.push(`${file.name}: ${error}`);
445
+ } else {
446
+ try {
447
+ const dataURL = await readFileAsDataURL(file);
448
+ const newFile = {
449
+ id: generateFileId(file),
450
+ file,
451
+ dataURL
452
+ };
453
+ newFiles.push(newFile);
454
+ } catch (error2) {
455
+ errors.push(`${file.name}: Fel vid l\xE4sning av fil`);
456
+ }
457
+ }
458
+ }
459
+ if (errors.length > 0) {
460
+ alert(errors.join("\n"));
461
+ }
462
+ if (newFiles.length > 0) {
463
+ const updatedFiles = [...selectedFiles, ...newFiles];
464
+ setSelectedFiles(updatedFiles);
465
+ const enhancedFiles = newFiles.map((sf) => ({
466
+ file: sf.file,
467
+ dataURL: sf.dataURL,
468
+ id: sf.id
469
+ }));
470
+ if (question.files) {
471
+ question.files.push(...enhancedFiles);
472
+ } else {
473
+ question.files = [...enhancedFiles];
474
+ }
475
+ onFilesAdded == null ? void 0 : onFilesAdded(updatedFiles);
476
+ }
477
+ };
478
+ const removeFile = (fileId) => {
479
+ const fileToRemove = selectedFiles.find((f) => f.id === fileId);
480
+ const updatedFiles = selectedFiles.filter((f) => f.id !== fileId);
481
+ setSelectedFiles(updatedFiles);
482
+ if (fileToRemove && question.files) {
483
+ const fileIndex = question.files.findIndex((f) => {
484
+ if (f instanceof File) {
485
+ return f.name === fileToRemove.file.name && f.size === fileToRemove.file.size;
486
+ } else {
487
+ return f.file.name === fileToRemove.file.name && f.file.size === fileToRemove.file.size;
488
+ }
489
+ });
490
+ if (fileIndex !== -1) {
491
+ question.files.splice(fileIndex, 1);
492
+ }
493
+ }
494
+ onFileRemoved == null ? void 0 : onFileRemoved(fileId);
495
+ };
496
+ const handleDrop = async (e) => {
497
+ e.preventDefault();
498
+ e.stopPropagation();
499
+ setDragActive(false);
500
+ if (e.dataTransfer.files && e.dataTransfer.files.length > 0) {
501
+ await addFilesToList(e.dataTransfer.files);
502
+ }
503
+ };
504
+ const handleDragOver = (e) => {
505
+ e.preventDefault();
506
+ e.stopPropagation();
507
+ setDragActive(true);
508
+ };
509
+ const handleDragLeave = (e) => {
510
+ e.preventDefault();
511
+ e.stopPropagation();
512
+ setDragActive(false);
513
+ };
514
+ const handleFileInput = async (e) => {
515
+ if (e.target.files && e.target.files.length > 0) {
516
+ await addFilesToList(e.target.files);
517
+ e.target.value = "";
518
+ }
519
+ };
520
+ const openFileDialog = () => {
521
+ var _a;
522
+ (_a = fileInputRef.current) == null ? void 0 : _a.click();
523
+ };
524
+ const formatFileSize = (bytes) => {
525
+ if (bytes === 0) return "0 Bytes";
526
+ const k = 1024;
527
+ const sizes = ["Bytes", "KB", "MB", "GB"];
528
+ const i = Math.floor(Math.log(bytes) / Math.log(k));
529
+ return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + " " + sizes[i];
530
+ };
531
+ return /* @__PURE__ */ jsxs5("div", { className: "files-upload", children: [
532
+ /* @__PURE__ */ jsx5("h2", { children: question.questionLabel }),
533
+ /* @__PURE__ */ jsx5("p", { style: { marginBottom: "1.5rem", color: "#666" }, children: question.aboutText }),
534
+ /* @__PURE__ */ jsxs5(
535
+ "div",
536
+ {
537
+ className: clsx("files-drop-zone", { "drag-active": dragActive }),
538
+ onDrop: handleDrop,
539
+ onDragOver: handleDragOver,
540
+ onDragLeave: handleDragLeave,
541
+ onClick: openFileDialog,
542
+ children: [
543
+ /* @__PURE__ */ jsxs5("div", { className: "files-drop-content", children: [
544
+ /* @__PURE__ */ jsx5("div", { className: "files-icon", children: "\u{1F4C2}" }),
545
+ /* @__PURE__ */ jsx5("p", { className: "files-drop-text", children: "Dra och sl\xE4pp filer h\xE4r eller klicka f\xF6r att v\xE4lja" }),
546
+ /* @__PURE__ */ jsx5("p", { className: "files-drop-info" }),
547
+ /* @__PURE__ */ jsxs5("p", { className: "files-drop-info", children: [
548
+ "Max ",
549
+ allowedNumberOfFiles,
550
+ " filer, ",
551
+ formatFileSize(maxFileSize),
552
+ " per fil, ",
553
+ formatFileSize(allowedTotalFileSize),
554
+ " totalt"
555
+ ] }),
556
+ allowedFileTypes.length > 0 && !allowedFileTypes.includes("*") && /* @__PURE__ */ jsxs5("p", { className: "files-allowed-types", children: [
557
+ /* @__PURE__ */ jsx5("strong", { children: "Till\xE5tna filtyper:" }),
558
+ " ",
559
+ allowedFileTypes.map(
560
+ (type) => type.startsWith(".") ? type : `.${type}`
561
+ ).join(", ")
562
+ ] })
563
+ ] }),
564
+ /* @__PURE__ */ jsx5(
565
+ "input",
566
+ {
567
+ ref: fileInputRef,
568
+ type: "file",
569
+ multiple,
570
+ accept: allowedFileTypes.join(","),
571
+ onChange: handleFileInput,
572
+ className: "files-input-hidden"
573
+ }
574
+ )
575
+ ]
576
+ }
577
+ ),
578
+ selectedFiles.length > 0 && /* @__PURE__ */ jsx5("div", { className: "files-summary", children: /* @__PURE__ */ jsxs5("div", { className: "files-summary-stats", children: [
579
+ /* @__PURE__ */ jsxs5("span", { className: "stat", children: [
580
+ "\u{1F4C1} ",
581
+ /* @__PURE__ */ jsx5("strong", { children: selectedFiles.length }),
582
+ " filer totalt"
583
+ ] }),
584
+ /* @__PURE__ */ jsxs5("span", { className: "stat", children: [
585
+ "\u{1F4BE} ",
586
+ /* @__PURE__ */ jsx5("strong", { children: formatFileSize(getTotalFileSize()) }),
587
+ " / ",
588
+ formatFileSize(allowedTotalFileSize)
589
+ ] })
590
+ ] }) }),
591
+ selectedFiles.length > 0 && /* @__PURE__ */ jsxs5("div", { className: "files-list", children: [
592
+ /* @__PURE__ */ jsxs5("h4", { children: [
593
+ "Filer (",
594
+ selectedFiles.length,
595
+ ")"
596
+ ] }),
597
+ /* @__PURE__ */ jsx5("ul", { className: "files-items", children: selectedFiles.map((selectedFile) => /* @__PURE__ */ jsxs5("li", { className: "file-item", children: [
598
+ /* @__PURE__ */ jsx5("div", { className: "file-icon-status", children: "\u{1F4C1}" }),
599
+ /* @__PURE__ */ jsxs5("div", { className: "file-info", children: [
600
+ /* @__PURE__ */ jsx5("div", { className: "file-name", children: selectedFile.file.name }),
601
+ /* @__PURE__ */ jsx5("div", { className: "file-details", children: /* @__PURE__ */ jsx5("span", { className: "file-size", children: formatFileSize(selectedFile.file.size) }) })
602
+ ] }),
603
+ /* @__PURE__ */ jsx5("div", { className: "file-actions", children: /* @__PURE__ */ jsx5(
604
+ "button",
605
+ {
606
+ className: "action-btn remove",
607
+ onClick: () => removeFile(selectedFile.id),
608
+ type: "button",
609
+ title: "Ta bort fil",
610
+ children: "\u2715"
611
+ }
612
+ ) })
613
+ ] }, selectedFile.id)) })
614
+ ] })
615
+ ] });
616
+ };
617
+ var FilesUploadStandard_default = FilesUpload;
618
+
338
619
  // src/NewHelpMethodsStandard/QuestionHasValidationError/QuestionHasValidationError.tsx
339
620
  var questionHasValidationError = (questionObject, arrayOfQuestionObjects) => {
340
621
  var _a, _b, _c, _d, _e;
@@ -548,7 +829,7 @@ function groupQuestionsByStepCategoryGroup(questions, steps, validationErrorsLis
548
829
  var GroupQuestionsByStepCategoryGroup_default = groupQuestionsByStepCategoryGroup;
549
830
 
550
831
  // src/NewRenderFormComponentStandard/RenderQuestion/RenderQuestion.tsx
551
- import { Fragment as Fragment5, jsx as jsx5, jsxs as jsxs5 } from "react/jsx-runtime";
832
+ import { Fragment as Fragment5, jsx as jsx6, jsxs as jsxs6 } from "react/jsx-runtime";
552
833
  var RenderQuestion = ({
553
834
  question,
554
835
  isTouched,
@@ -556,8 +837,8 @@ var RenderQuestion = ({
556
837
  showPreview = false,
557
838
  hideValidationMessage
558
839
  }) => {
559
- return /* @__PURE__ */ jsxs5(Fragment5, { children: [
560
- question.questionType === "Radio" && /* @__PURE__ */ jsx5(
840
+ return /* @__PURE__ */ jsxs6(Fragment5, { children: [
841
+ question.questionType === "Radio" && /* @__PURE__ */ jsx6(
561
842
  RadioMultipleStandard_default,
562
843
  {
563
844
  question,
@@ -565,7 +846,7 @@ var RenderQuestion = ({
565
846
  showPreview
566
847
  }
567
848
  ),
568
- question.questionType === "TextField" && /* @__PURE__ */ jsx5(
849
+ question.questionType === "TextField" && /* @__PURE__ */ jsx6(
569
850
  TextFieldStandard_default,
570
851
  {
571
852
  question,
@@ -574,7 +855,17 @@ var RenderQuestion = ({
574
855
  activatedLanguage
575
856
  }
576
857
  ),
577
- question.questionType === "Checkbox" && /* @__PURE__ */ jsx5(
858
+ question.questionType === "FilesUpload" && /* @__PURE__ */ jsx6(
859
+ FilesUploadStandard_default,
860
+ {
861
+ question,
862
+ isTouched,
863
+ showPreview,
864
+ activatedLanguage,
865
+ visible: question.visible
866
+ }
867
+ ),
868
+ question.questionType === "Checkbox" && /* @__PURE__ */ jsx6(
578
869
  MultipleCheckboxesStandard_default,
579
870
  {
580
871
  question,
@@ -583,14 +874,14 @@ var RenderQuestion = ({
583
874
  activatedLanguage
584
875
  }
585
876
  ),
586
- question.questionType === "TextArea" && /* @__PURE__ */ jsx5(TextAreaStandard_default, { question, isTouched, showPreview })
877
+ question.questionType === "TextArea" && /* @__PURE__ */ jsx6(TextAreaStandard_default, { question, isTouched, showPreview })
587
878
  ] });
588
879
  };
589
880
  var RenderQuestion_default = RenderQuestion;
590
881
 
591
882
  // src/NewRenderFormComponentStandard/RenderQuestionGroup/RenderQuestionGroup.tsx
592
- import React from "react";
593
- import { Fragment as Fragment6, jsx as jsx6, jsxs as jsxs6 } from "react/jsx-runtime";
883
+ import React2 from "react";
884
+ import { Fragment as Fragment6, jsx as jsx7, jsxs as jsxs7 } from "react/jsx-runtime";
594
885
  var RenderQuestionGroup = ({
595
886
  questionArray,
596
887
  wrapper,
@@ -601,15 +892,15 @@ var RenderQuestionGroup = ({
601
892
  AddQuestionDisplayed,
602
893
  hideValidationMessage
603
894
  }) => {
604
- React.useEffect(() => {
895
+ React2.useEffect(() => {
605
896
  questionArray.forEach((question) => {
606
897
  if (question.visible && !question.isDisplayed) {
607
898
  AddQuestionDisplayed(question);
608
899
  }
609
900
  });
610
901
  }, [questionArray]);
611
- const questions = /* @__PURE__ */ jsx6(Fragment6, { children: questionArray.map((question, index) => {
612
- return /* @__PURE__ */ jsx6(React.Fragment, { children: /* @__PURE__ */ jsx6(
902
+ const questions = /* @__PURE__ */ jsx7(Fragment6, { children: questionArray.map((question, index) => {
903
+ return /* @__PURE__ */ jsx7(React2.Fragment, { children: /* @__PURE__ */ jsx7(
613
904
  RenderQuestion_default,
614
905
  {
615
906
  question,
@@ -622,17 +913,17 @@ var RenderQuestionGroup = ({
622
913
  }) });
623
914
  switch (wrapper) {
624
915
  case "fieldset":
625
- return /* @__PURE__ */ jsxs6("fieldset", { className: "pts-root-question-group-fieldset", children: [
626
- legend && /* @__PURE__ */ jsx6("legend", { children: legend }),
916
+ return /* @__PURE__ */ jsxs7("fieldset", { className: "pts-root-question-group-fieldset", children: [
917
+ legend && /* @__PURE__ */ jsx7("legend", { children: legend }),
627
918
  questions
628
919
  ] });
629
920
  case "section":
630
- return /* @__PURE__ */ jsx6("section", { className: "pts-root-question-group-section", children: questions });
921
+ return /* @__PURE__ */ jsx7("section", { className: "pts-root-question-group-section", children: questions });
631
922
  case "div":
632
- return /* @__PURE__ */ jsx6("div", { className: "pts-root-question-group-div", children: questions });
923
+ return /* @__PURE__ */ jsx7("div", { className: "pts-root-question-group-div", children: questions });
633
924
  case "none":
634
925
  default:
635
- return /* @__PURE__ */ jsx6(React.Fragment, { children: questions });
926
+ return /* @__PURE__ */ jsx7(React2.Fragment, { children: questions });
636
927
  }
637
928
  };
638
929
  var RenderQuestionGroup_default = RenderQuestionGroup;
@@ -720,11 +1011,11 @@ var ILanguageSupportinitialState = {
720
1011
  };
721
1012
 
722
1013
  // src/NewTextComponentStandard/EditPreviewLinkStandard/EditPreviewLinkStandard.tsx
723
- import { jsx as jsx7, jsxs as jsxs7 } from "react/jsx-runtime";
1014
+ import { jsx as jsx8, jsxs as jsxs8 } from "react/jsx-runtime";
724
1015
  var EditPreviewLink = ({ row, changeStepHandler, activatedLanguage = "sv" }) => {
725
1016
  const step = row.questions[0].Step;
726
- return /* @__PURE__ */ jsx7("div", { className: "pts-editPreviewLink-container", children: /* @__PURE__ */ jsxs7("button", { type: "button", onClick: () => changeStepHandler(row.questions[0].Step), role: "link", children: [
727
- /* @__PURE__ */ jsx7(
1017
+ return /* @__PURE__ */ jsx8("div", { className: "pts-editPreviewLink-container", children: /* @__PURE__ */ jsxs8("button", { type: "button", onClick: () => changeStepHandler(row.questions[0].Step), role: "link", children: [
1018
+ /* @__PURE__ */ jsx8(
728
1019
  "svg",
729
1020
  {
730
1021
  "aria-hidden": "true",
@@ -734,7 +1025,7 @@ var EditPreviewLink = ({ row, changeStepHandler, activatedLanguage = "sv" }) =>
734
1025
  height: "16",
735
1026
  viewBox: "0 0 16 16",
736
1027
  fill: "none",
737
- children: /* @__PURE__ */ jsx7(
1028
+ children: /* @__PURE__ */ jsx8(
738
1029
  "path",
739
1030
  {
740
1031
  d: "M10.0001 3.99996L12.0001 5.99996M8.66675 13.3333H14.0001M3.33341 10.6666L2.66675 13.3333L5.33341 12.6666L13.0574 4.94263C13.3074 4.69259 13.4478 4.35351 13.4478 3.99996C13.4478 3.64641 13.3074 3.30733 13.0574 3.05729L12.9427 2.94263C12.6927 2.69267 12.3536 2.55225 12.0001 2.55225C11.6465 2.55225 11.3075 2.69267 11.0574 2.94263L3.33341 10.6666Z",
@@ -751,10 +1042,10 @@ var EditPreviewLink = ({ row, changeStepHandler, activatedLanguage = "sv" }) =>
751
1042
  var EditPreviewLinkStandard_default = EditPreviewLink;
752
1043
 
753
1044
  // src/NewTextComponentStandard/FooterStandard/FooterStandard.tsx
754
- import { jsx as jsx8, jsxs as jsxs8 } from "react/jsx-runtime";
1045
+ import { jsx as jsx9, jsxs as jsxs9 } from "react/jsx-runtime";
755
1046
  var Footer = ({ activatedLanguage = "sv" }) => {
756
- return /* @__PURE__ */ jsxs8("div", { className: "pts-footer-container", children: [
757
- /* @__PURE__ */ jsxs8(
1047
+ return /* @__PURE__ */ jsxs9("div", { className: "pts-footer-container", children: [
1048
+ /* @__PURE__ */ jsxs9(
758
1049
  "svg",
759
1050
  {
760
1051
  role: "img",
@@ -766,14 +1057,14 @@ var Footer = ({ activatedLanguage = "sv" }) => {
766
1057
  viewBox: "0 0 278 72",
767
1058
  fill: "none",
768
1059
  children: [
769
- /* @__PURE__ */ jsx8(
1060
+ /* @__PURE__ */ jsx9(
770
1061
  "path",
771
1062
  {
772
1063
  d: "M54 43C54 47.2 51.5 51.1 47.6 52.3C45.8 52.8 44 53 41 53H24.5C21.4 53 21 53.5 21 56.5V63C21 65.4 19.5 67 17.5 67C15.5 67 14 65.4 14 63V58.5C14 56.5 14 54.8 14.2 53.9C14.8 50.5 16.8 47.9 20.1 46.7C21.4 46.2 23.6 45.9 27.9 45.9H42C43.2 45.9 44.4 45.8 44.9 45.6C46.4 45 46.9 44 46.9 42.9C46.9 41.8 46.5 40.7 44.9 40.2C44.4 40 43.2 39.9 42 39.9H19.4C18.5 39.9 17.7 39.9 17.3 39.7C15.8 39.2 14.9 37.8 14.9 36.4C14.9 35 15.8 33.6 17.3 33.1C17.8 32.9 18.3 32.9 19.3 32.9H40.9C44 32.9 46.4 33.1 47.9 33.7C51.8 35.2 53.9 38.4 53.9 42.9L54 43ZM95.7 33.3C95.2 33.1 94.4 33 93.3 33H61.6C60.8 33 60.1 33 59.7 33.2C58 33.7 57 35 57 36.5C57 38 57.8 39.2 59.4 39.7C59.9 39.9 60.7 40 61.6 40H74V63.4C74 65.8 75.6 67 77.5 67C79.4 67 81 65.8 81 63.4V40H93.3C94.5 40 95.1 40 95.5 39.8C97.1 39.3 98 38 98 36.5C98 35 97.2 33.8 95.7 33.3ZM133.5 47.4C131.8 46.5 129.6 46 124.1 46H113.5C111.8 46 110.9 45.9 110.3 45.7C108.6 45.1 108 44 108 43C108 42 108.4 40.8 110.2 40.2C110.7 40 111.6 40 112.5 40H132C132.4 40 133.5 40 133.8 40C135.6 39.7 137 38.6 137 36.6C137 34.6 135.6 33.6 133.9 33.2C133.6 33.2 132.9 33.1 132 33.1H113.5C110.2 33.1 107.8 33.5 106.2 34.2C102.9 35.8 101 39.2 101 43.1C101 47 102.8 50.5 106.4 52.1C108 52.8 110.4 53.1 113.5 53.1H127C128.7 53.1 129.6 53.3 130.2 53.5C131.6 54 132 55.4 132 56.6C132 57.8 131.6 59.3 129.9 59.8C129.3 60 128.1 60.1 126.1 60.1H106.5C105.7 60.1 104.9 60.1 104.5 60.3C102.9 60.7 102 62 102 63.6C102 65.2 103 66.2 104.3 66.7C104.8 66.9 105.9 67.1 106.7 67.1H124C127.7 67.1 130.7 66.9 132.5 66.3C136.6 65.1 138.9 61.2 138.9 56.6C138.9 52 136.8 49.2 133.4 47.5L133.5 47.4Z",
773
1064
  fill: "white"
774
1065
  }
775
1066
  ),
776
- /* @__PURE__ */ jsx8(
1067
+ /* @__PURE__ */ jsx9(
777
1068
  "path",
778
1069
  {
779
1070
  d: "M92.1 15.7L92.5 15C90 11.6 84.1 9.2 78.1 9H76.9C70.9 9.2 65 11.6 62.5 15L62.9 15.7C61.8 15.7 61 16.4 61 17.3L63.3 27C63.5 27.6 63.7 27.9 64.5 27.9H90.5C91.2 27.9 91.5 27.5 91.6 27L93.9 17.3C93.9 16.4 93.1 15.7 92 15.7H92.1ZM69.3 18.8C69.1 18.8 68.8 18.7 68.6 18.7C67.6 18.7 66.9 19.4 66.9 20.3C66.9 21.2 67.6 21.8 68.5 21.8C69.4 21.8 69.3 21.7 69.5 21.4C69.5 22.2 68.6 24 67.4 24H64.9C63.2 24 63 21.7 63 21.5C63.2 21.7 63.7 21.8 64.1 21.8C64.9 21.8 65.6 21.2 65.6 20.3C65.6 19.4 64.9 18.7 63.9 18.7C62.9 18.7 63.5 18.7 63.4 18.7C63.8 18.4 64.2 17.9 64.2 17.3C64.2 16.7 63.9 16.4 63.5 16.1L65.8 15C67.3 12.5 70 10.7 73.3 10C71.5 11.3 70 12.9 68.8 15L69.6 15.7C68.8 15.8 68.2 16.5 68.2 17.3C68.2 18.1 68.6 18.5 69.2 18.8H69.3ZM76.8 18.9C76.6 18.8 76.2 18.7 76 18.7C75 18.7 74.3 19.4 74.3 20.3C74.3 21.2 75 21.8 75.9 21.8C76.8 21.8 76.7 21.7 77 21.5C77 22.3 76.4 24 75 24H72.5C70.9 24 70.5 22 70.5 21.4C70.7 21.6 71.1 21.8 71.6 21.8C72.4 21.8 73.2 21.2 73.2 20.3C73.2 19.4 72.5 18.7 71.5 18.7C70.5 18.7 70.9 18.7 70.8 18.8C71.4 18.5 71.8 18 71.8 17.3C71.8 16.6 71.4 16.1 70.8 15.9L72.6 15C73.1 13.2 74.7 10.6 76.4 9.7C76.2 10.6 76.1 12.5 76.1 15C76.1 15 76.6 15.5 77.1 15.8C76.4 16 75.9 16.6 75.9 17.3C75.9 18 76.3 18.5 76.9 18.8L76.8 18.9ZM82.5 24H80C78.6 24 78 22.3 78 21.5C78.2 21.7 78.6 21.8 79.1 21.8C80 21.8 80.7 21.2 80.7 20.3C80.7 19.4 80 18.7 79 18.7C78 18.7 78.4 18.7 78.2 18.9C78.8 18.7 79.3 18.1 79.3 17.4C79.3 16.7 78.8 16.1 78.1 15.9C78.6 15.6 79.1 15.1 79.1 15.1C79.1 12.6 79 10.7 78.7 9.8C80.5 10.7 82.1 13.2 82.6 15.1L84.4 16C83.9 16.2 83.4 16.8 83.4 17.4C83.4 18 83.8 18.6 84.4 18.9C84.2 18.9 83.9 18.8 83.7 18.8C82.7 18.8 82 19.5 82 20.4C82 21.3 82.7 21.9 83.6 21.9C84.5 21.9 84.4 21.8 84.7 21.5C84.7 22 84.3 24.1 82.7 24.1L82.5 24ZM90 24H87.5C86.2 24 85.4 22.3 85.4 21.4C85.6 21.7 86 21.8 86.5 21.8C87.3 21.8 88 21.2 88 20.3C88 19.4 87.3 18.7 86.3 18.7C85.3 18.7 85.7 18.7 85.6 18.8C86.2 18.5 86.6 18 86.6 17.3C86.6 16.6 86 15.8 85.1 15.7L86 15C84.8 12.9 83.3 11.4 81.5 10C84.7 10.7 87.5 12.4 89 15L91.4 16.1C91 16.4 90.7 16.8 90.7 17.4C90.7 18 91.1 18.6 91.6 18.9C91.5 18.9 91.2 18.8 91 18.8C90 18.8 89.3 19.5 89.3 20.4C89.3 21.3 90 21.9 90.8 21.9C91.6 21.9 91.7 21.8 91.9 21.6C91.9 21.8 91.6 24.1 90 24.1V24ZM77.5 9C76.1 9 75 7.9 75 6.5C75 5.1 75.9 4.3 77 4.1V3H76V2H77V1H78V2H79V3H78V4.1C79.1 4.3 80 5.3 80 6.6C80 7.9 78.9 9.1 77.5 9.1V9Z",
@@ -783,49 +1074,49 @@ var Footer = ({ activatedLanguage = "sv" }) => {
783
1074
  ]
784
1075
  }
785
1076
  ),
786
- /* @__PURE__ */ jsx8(
1077
+ /* @__PURE__ */ jsx9(
787
1078
  "div",
788
1079
  {
789
1080
  className: "pts-footer-linkList",
790
1081
  "aria-label": activatedLanguage === "en" ? "Footer navigation" : "Sidfotsnavigering",
791
- children: /* @__PURE__ */ jsxs8("ul", { children: [
792
- /* @__PURE__ */ jsx8("li", { children: /* @__PURE__ */ jsxs8("a", { href: "https://www.pts.se/kontakt/", target: "_blank", rel: "noopener noreferrer", children: [
793
- /* @__PURE__ */ jsx8("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Contact (opens in new tab)" : "PTS Kontakt (\xF6ppnas i ny flik)" }),
794
- /* @__PURE__ */ jsx8("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Contact" : "Kontakt" })
1082
+ children: /* @__PURE__ */ jsxs9("ul", { children: [
1083
+ /* @__PURE__ */ jsx9("li", { children: /* @__PURE__ */ jsxs9("a", { href: "https://www.pts.se/kontakt/", target: "_blank", rel: "noopener noreferrer", children: [
1084
+ /* @__PURE__ */ jsx9("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Contact (opens in new tab)" : "PTS Kontakt (\xF6ppnas i ny flik)" }),
1085
+ /* @__PURE__ */ jsx9("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Contact" : "Kontakt" })
795
1086
  ] }) }),
796
- /* @__PURE__ */ jsx8("li", { children: /* @__PURE__ */ jsxs8(
1087
+ /* @__PURE__ */ jsx9("li", { children: /* @__PURE__ */ jsxs9(
797
1088
  "a",
798
1089
  {
799
1090
  href: "https://www.pts.se/om-oss/behandling-av-personuppgifter/",
800
1091
  target: "_blank",
801
1092
  rel: "noopener noreferrer",
802
1093
  children: [
803
- /* @__PURE__ */ jsx8("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Processing of personal data (opens in new tab)" : "PTS Behandling av personuppgifter (\xF6ppnas i ny flik)" }),
804
- /* @__PURE__ */ jsx8("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Processing of personal data" : "Behandling av personuppgifter" })
1094
+ /* @__PURE__ */ jsx9("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Processing of personal data (opens in new tab)" : "PTS Behandling av personuppgifter (\xF6ppnas i ny flik)" }),
1095
+ /* @__PURE__ */ jsx9("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Processing of personal data" : "Behandling av personuppgifter" })
805
1096
  ]
806
1097
  }
807
1098
  ) }),
808
- /* @__PURE__ */ jsx8("li", { children: /* @__PURE__ */ jsxs8(
1099
+ /* @__PURE__ */ jsx9("li", { children: /* @__PURE__ */ jsxs9(
809
1100
  "a",
810
1101
  {
811
1102
  href: "https://www.pts.se/om-oss/om-pts.se/tillganglighetsredogorelse-for-pts-digitala-tjanster/",
812
1103
  target: "_blank",
813
1104
  rel: "noopener noreferrer",
814
1105
  children: [
815
- /* @__PURE__ */ jsx8("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Accessibility (opens in new tab)" : "PTS Tillg\xE4nglighetsredog\xF6relse (\xF6ppnas i ny flik)" }),
816
- /* @__PURE__ */ jsx8("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Accessibility" : "Tillg\xE4nglighetsredog\xF6relse" })
1106
+ /* @__PURE__ */ jsx9("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Accessibility (opens in new tab)" : "PTS Tillg\xE4nglighetsredog\xF6relse (\xF6ppnas i ny flik)" }),
1107
+ /* @__PURE__ */ jsx9("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Accessibility" : "Tillg\xE4nglighetsredog\xF6relse" })
817
1108
  ]
818
1109
  }
819
1110
  ) }),
820
- /* @__PURE__ */ jsx8("li", { children: /* @__PURE__ */ jsxs8(
1111
+ /* @__PURE__ */ jsx9("li", { children: /* @__PURE__ */ jsxs9(
821
1112
  "a",
822
1113
  {
823
1114
  href: "https://www.pts.se/om-oss/om-pts.se/kakor-pa-webbplatsen/kakor-pa-pts-e-tjanster/",
824
1115
  target: "_blank",
825
1116
  rel: "noopener noreferrer",
826
1117
  children: [
827
- /* @__PURE__ */ jsx8("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Cookies (opens in new tab)" : "PTS Kakor (\xF6ppnas i ny flik)" }),
828
- /* @__PURE__ */ jsx8("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Cookies" : "Kakor" })
1118
+ /* @__PURE__ */ jsx9("span", { className: "sr-only", children: activatedLanguage === "en" ? "PTS Cookies (opens in new tab)" : "PTS Kakor (\xF6ppnas i ny flik)" }),
1119
+ /* @__PURE__ */ jsx9("span", { "aria-hidden": "true", children: activatedLanguage === "en" ? "Cookies" : "Kakor" })
829
1120
  ]
830
1121
  }
831
1122
  ) })
@@ -837,374 +1128,374 @@ var Footer = ({ activatedLanguage = "sv" }) => {
837
1128
  var FooterStandard_default = Footer;
838
1129
 
839
1130
  // src/NewTextComponentStandard/HeaderStandard/Icons.tsx
840
- import { jsx as jsx9, jsxs as jsxs9 } from "react/jsx-runtime";
841
- var LanguageIcon = () => /* @__PURE__ */ jsx9("svg", { width: "15", height: "15", viewBox: "0 0 21 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx9(
1131
+ import { jsx as jsx10, jsxs as jsxs10 } from "react/jsx-runtime";
1132
+ var LanguageIcon = () => /* @__PURE__ */ jsx10("svg", { width: "15", height: "15", viewBox: "0 0 21 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx10(
842
1133
  "path",
843
1134
  {
844
1135
  d: "M9 18C7.76133 18 6.59467 17.7633 5.5 17.29C4.40533 16.8167 3.452 16.1733 2.64 15.36C1.82667 14.5487 1.18333 13.5953 0.71 12.5C0.236667 11.4053 0 10.2387 0 9C0 7.758 0.236667 6.59033 0.71 5.497C1.184 4.40367 1.82733 3.451 2.64 2.639C3.45133 1.827 4.40467 1.18433 5.5 0.711C6.59467 0.237 7.76133 0 9 0C10.242 0 11.4097 0.236667 12.503 0.71C13.5963 1.184 14.549 1.82733 15.361 2.64C16.173 3.452 16.8157 4.40433 17.289 5.497C17.763 6.59033 18 7.758 18 9C18 10.2387 17.7633 11.4053 17.29 12.5C16.8167 13.5947 16.1733 14.548 15.36 15.36C14.548 16.1727 13.5957 16.816 12.503 17.29C11.4097 17.7633 10.242 18 9 18ZM9 17.008C9.58667 16.254 10.0707 15.5137 10.452 14.787C10.8327 14.0603 11.1423 13.247 11.381 12.347H6.619C6.883 13.2977 7.199 14.1363 7.567 14.863C7.935 15.5897 8.41267 16.3047 9 17.008ZM7.727 16.858C7.26033 16.308 6.83433 15.628 6.449 14.818C6.06367 14.0087 5.777 13.1847 5.589 12.346H1.753C2.32633 13.59 3.13867 14.61 4.19 15.406C5.242 16.202 6.42067 16.686 7.726 16.858H7.727ZM10.273 16.858C11.5783 16.686 12.757 16.202 13.809 15.406C14.861 14.61 15.6733 13.59 16.246 12.346H12.412C12.1587 13.1973 11.8397 14.028 11.455 14.838C11.0697 15.6473 10.6757 16.3207 10.273 16.858ZM1.346 11.346H5.381C5.305 10.936 5.25167 10.5363 5.221 10.147C5.189 9.75767 5.173 9.37533 5.173 9C5.173 8.62467 5.18867 8.24233 5.22 7.853C5.25133 7.46367 5.30467 7.06367 5.38 6.653H1.347C1.23833 6.99967 1.15333 7.37733 1.092 7.786C1.03067 8.19467 1 8.59933 1 9C1 9.40133 1.03033 9.806 1.091 10.214C1.15233 10.6227 1.23733 11 1.346 11.346ZM6.381 11.346H11.619C11.695 10.936 11.7483 10.5427 11.779 10.166C11.811 9.79 11.827 9.40133 11.827 9C11.827 8.59867 11.8113 8.21 11.78 7.834C11.7487 7.45733 11.6953 7.064 11.62 6.654H6.38C6.30467 7.064 6.25133 7.45733 6.22 7.834C6.18867 8.21 6.173 8.59867 6.173 9C6.173 9.40133 6.18867 9.79 6.22 10.166C6.25133 10.5427 6.30567 10.936 6.381 11.346ZM12.619 11.346H16.654C16.7627 10.9993 16.8477 10.622 16.909 10.214C16.9703 9.806 17.0007 9.40133 17 9C17 8.59867 16.9697 8.194 16.909 7.786C16.8477 7.37733 16.7627 7 16.654 6.654H12.619C12.695 7.064 12.7483 7.46367 12.779 7.853C12.811 8.24233 12.827 8.62467 12.827 9C12.827 9.37533 12.8113 9.75767 12.78 10.147C12.7487 10.5363 12.6953 10.9363 12.62 11.347L12.619 11.346ZM12.412 5.654H16.246C15.66 4.38467 14.8573 3.36467 13.838 2.594C12.818 1.82333 11.6297 1.33333 10.273 1.124C10.7397 1.73733 11.1593 2.43933 11.532 3.23C11.904 4.02 12.1973 4.828 12.412 5.654ZM6.619 5.654H11.381C11.117 4.71533 10.7913 3.86667 10.404 3.108C10.0173 2.34867 9.54933 1.64333 9 0.992C8.45133 1.64333 7.98333 2.34867 7.596 3.108C7.20933 3.86667 6.88367 4.71533 6.619 5.654ZM1.754 5.654H5.588C5.80267 4.828 6.096 4.02 6.468 3.23C6.84067 2.43933 7.26033 1.737 7.727 1.123C6.35767 1.333 5.16633 1.82633 4.153 2.603C3.13967 3.38033 2.33967 4.397 1.753 5.653L1.754 5.654Z",
845
1136
  fill: "#6E3282"
846
1137
  }
847
1138
  ) });
848
- var Logo_sv = () => /* @__PURE__ */ jsxs9("svg", { width: "168.8", height: "46.67", viewBox: "0 0 168.8 46.67", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
849
- /* @__PURE__ */ jsx9(
1139
+ var Logo_sv = () => /* @__PURE__ */ jsxs10("svg", { width: "168.8", height: "46.67", viewBox: "0 0 168.8 46.67", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
1140
+ /* @__PURE__ */ jsx10(
850
1141
  "path",
851
1142
  {
852
1143
  d: "M91.7779 18.6113C92.1668 18.8335 92.5001 19.1113 92.6668 19.4446C92.8335 19.7779 93.0001 20.2224 93.0001 20.7224C93.0001 21.2224 92.889 21.6113 92.6668 22.0002C92.4446 22.3891 92.1668 22.6668 91.7779 22.8335C91.389 23.0002 90.9446 23.1113 90.4446 23.1113H88.4446V26.1113H87.5001V18.3335H90.5001C91.0001 18.3335 91.4446 18.4446 91.8335 18.6113H91.7779ZM90.3335 22.2224C90.8335 22.2224 91.2779 22.1113 91.5557 21.8335C91.8335 21.5557 92.0001 21.1668 92.0001 20.7224C92.0001 20.2779 91.8335 19.8891 91.5557 19.6113C91.2779 19.3335 90.8335 19.2224 90.3335 19.2224H88.389V22.2224H90.3335Z",
853
1144
  fill: "#141414"
854
1145
  }
855
1146
  ),
856
- /* @__PURE__ */ jsx9(
1147
+ /* @__PURE__ */ jsx10(
857
1148
  "path",
858
1149
  {
859
1150
  d: "M93.7779 24.778C93.5557 24.3336 93.4446 23.8336 93.4446 23.278C93.4446 22.7225 93.5557 22.2225 93.7779 21.778C94.0001 21.3336 94.3335 21.0003 94.7779 20.778C95.2224 20.5558 95.6668 20.3892 96.2224 20.3892C96.7779 20.3892 97.2779 20.5003 97.6668 20.778C98.1113 21.0003 98.4446 21.3892 98.6668 21.778C98.889 22.2225 99.0001 22.7225 99.0001 23.278C99.0001 23.8336 98.889 24.3336 98.6668 24.778C98.4446 25.2225 98.1113 25.5558 97.6668 25.778C97.2224 26.0003 96.7779 26.1669 96.2224 26.1669C95.6668 26.1669 95.1668 26.0558 94.7779 25.778C94.389 25.5003 94.0001 25.1669 93.7779 24.778ZM97.8335 24.3336C98.0001 24.0003 98.0557 23.6669 98.0557 23.278C98.0557 22.8892 98.0001 22.5003 97.8335 22.2225C97.6668 21.8892 97.4446 21.6669 97.1668 21.5003C96.889 21.3336 96.5557 21.2225 96.1668 21.2225C95.7779 21.2225 95.4446 21.3336 95.1668 21.5003C94.889 21.6669 94.6668 21.9447 94.5001 22.2225C94.3335 22.5558 94.2779 22.8892 94.2779 23.278C94.2779 23.6669 94.3335 24.0558 94.5001 24.3336C94.6668 24.6669 94.889 24.8892 95.1668 25.0558C95.4446 25.2225 95.7779 25.3336 96.1668 25.3336C96.5557 25.3336 96.889 25.2225 97.1668 25.0558C97.4446 24.8892 97.6668 24.6114 97.8335 24.3336Z",
860
1151
  fill: "#141414"
861
1152
  }
862
1153
  ),
863
- /* @__PURE__ */ jsx9(
1154
+ /* @__PURE__ */ jsx10(
864
1155
  "path",
865
1156
  {
866
1157
  d: "M101.222 25.0557C101.5 25.2779 101.889 25.389 102.333 25.389C102.778 25.389 103.056 25.3335 103.333 25.1668C103.556 25.0001 103.722 24.7779 103.722 24.5557C103.722 24.3335 103.667 24.1668 103.556 24.0557C103.445 23.9446 103.278 23.8335 103.111 23.8335C102.945 23.8335 102.667 23.7224 102.278 23.7224C101.778 23.6668 101.389 23.6112 101.056 23.5001C100.722 23.389 100.5 23.2224 100.278 23.0557C100.056 22.889 100 22.5557 100 22.1668C100 21.7779 100.111 21.5557 100.278 21.2779C100.445 21.0001 100.722 20.8335 101.056 20.6668C101.389 20.5001 101.722 20.4446 102.167 20.4446C102.833 20.4446 103.389 20.6112 103.778 20.889C104.222 21.2224 104.445 21.6668 104.445 22.2224H103.556C103.556 21.9446 103.389 21.6668 103.111 21.5001C102.833 21.3335 102.556 21.2224 102.167 21.2224C101.778 21.2224 101.445 21.2779 101.222 21.4446C101 21.6112 100.889 21.8335 100.889 22.0557C100.889 22.2779 100.889 22.389 101.056 22.5001C101.167 22.6112 101.333 22.6668 101.5 22.7224C101.667 22.7779 101.945 22.7779 102.278 22.8335C102.778 22.889 103.167 23.0001 103.5 23.0557C103.833 23.1112 104.056 23.3335 104.278 23.5557C104.5 23.7779 104.556 24.1112 104.556 24.5001C104.556 24.889 104.445 25.1668 104.278 25.389C104.056 25.6668 103.833 25.8335 103.445 26.0001C103.111 26.1668 102.722 26.2224 102.333 26.2224C101.611 26.2224 101 26.0557 100.556 25.7224C100.111 25.389 99.889 24.889 99.889 24.2779H100.778C100.778 24.6112 100.945 24.889 101.222 25.1112V25.0557Z",
867
1158
  fill: "#141414"
868
1159
  }
869
1160
  ),
870
- /* @__PURE__ */ jsx9(
1161
+ /* @__PURE__ */ jsx10(
871
1162
  "path",
872
1163
  {
873
1164
  d: "M104.945 21.2779V20.4446H105.945V18.8335H106.833V20.4446H108.278V21.2779H106.833V24.6113C106.833 24.8335 106.833 25.0002 106.945 25.1113C107.056 25.2224 107.222 25.2779 107.445 25.2779H108.445V26.1113H107.389C106.833 26.1113 106.5 26.0002 106.222 25.7779C106 25.5557 105.889 25.1668 105.889 24.6668V21.3335H104.889L104.945 21.2779Z",
874
1165
  fill: "#141414"
875
1166
  }
876
1167
  ),
877
- /* @__PURE__ */ jsx9("path", { d: "M108.778 22.5557H112.5V23.3334H108.778V22.5557Z", fill: "#141414" }),
878
- /* @__PURE__ */ jsx9(
1168
+ /* @__PURE__ */ jsx10("path", { d: "M108.778 22.5557H112.5V23.3334H108.778V22.5557Z", fill: "#141414" }),
1169
+ /* @__PURE__ */ jsx10(
879
1170
  "path",
880
1171
  {
881
1172
  d: "M116.778 24.778C116.556 24.3336 116.445 23.8336 116.445 23.278C116.445 22.7225 116.556 22.2225 116.778 21.778C117 21.3336 117.333 21.0003 117.778 20.778C118.222 20.5558 118.667 20.3892 119.222 20.3892C119.778 20.3892 120.278 20.5003 120.667 20.778C121.111 21.0003 121.445 21.3892 121.667 21.778C121.889 22.2225 122 22.7225 122 23.278C122 23.8336 121.889 24.3336 121.667 24.778C121.445 25.2225 121.111 25.5558 120.667 25.778C120.222 26.0003 119.778 26.1669 119.222 26.1669C118.667 26.1669 118.167 26.0558 117.778 25.778C117.389 25.5003 117 25.1669 116.778 24.778ZM120.833 24.3336C121 24.0003 121.056 23.6669 121.056 23.278C121.056 22.8892 121 22.5003 120.833 22.2225C120.667 21.8892 120.445 21.6669 120.167 21.5003C119.889 21.3336 119.556 21.2225 119.167 21.2225C118.778 21.2225 118.445 21.3336 118.167 21.5003C117.889 21.6669 117.667 21.9447 117.5 22.2225C117.333 22.5558 117.278 22.8892 117.278 23.278C117.278 23.6669 117.333 24.0558 117.5 24.3336C117.667 24.6669 117.889 24.8892 118.167 25.0558C118.445 25.2225 118.778 25.3336 119.167 25.3336C119.556 25.3336 119.889 25.2225 120.167 25.0558C120.445 24.8892 120.667 24.6114 120.833 24.3336Z",
882
1173
  fill: "#141414"
883
1174
  }
884
1175
  ),
885
- /* @__PURE__ */ jsx9(
1176
+ /* @__PURE__ */ jsx10(
886
1177
  "path",
887
1178
  {
888
1179
  d: "M125.611 26.1668C125.056 26.1668 124.556 26.0557 124.167 25.7779C123.778 25.5557 123.445 25.1668 123.222 24.7224C123 24.2779 122.889 23.7779 122.889 23.2224C122.889 22.6668 123 22.1668 123.222 21.7224C123.445 21.2779 123.778 20.9446 124.222 20.7224C124.667 20.5002 125.111 20.3335 125.667 20.3335C126.222 20.3335 126.889 20.5002 127.333 20.8891C127.778 21.2224 128.056 21.7224 128.167 22.3335H127.222C127.111 21.9446 126.945 21.6668 126.667 21.4446C126.389 21.2224 126.056 21.1113 125.667 21.1113C125.278 21.1113 124.667 21.2779 124.333 21.6668C124 22.0557 123.833 22.5557 123.833 23.1668C123.833 23.7779 124 24.2779 124.333 24.6668C124.667 25.0557 125.111 25.2779 125.667 25.2779C126.222 25.2779 126.445 25.1668 126.722 24.9446C127 24.7224 127.167 24.4446 127.278 24.0557H128.167C128.056 24.6668 127.778 25.1668 127.333 25.5557C126.889 25.8891 126.333 26.1113 125.667 26.1113L125.611 26.1668Z",
889
1180
  fill: "#141414"
890
1181
  }
891
1182
  ),
892
- /* @__PURE__ */ jsx9(
1183
+ /* @__PURE__ */ jsx10(
893
1184
  "path",
894
1185
  {
895
1186
  d: "M134.278 22.9446V26.1113H133.389V23.0002C133.389 22.3891 133.278 21.9446 133 21.6668C132.722 21.3335 132.333 21.2224 131.833 21.2224C131.333 21.2224 130.889 21.3891 130.611 21.7779C130.278 22.1668 130.167 22.6668 130.167 23.2779V26.1113H129.278V18.3335H130.167V21.3891C130.333 21.1113 130.611 20.8335 130.889 20.6668C131.222 20.5002 131.556 20.3891 132 20.3891C132.667 20.3891 133.222 20.6113 133.667 21.0002C134.111 21.3891 134.278 22.0557 134.278 22.9446Z",
896
1187
  fill: "#141414"
897
1188
  }
898
1189
  ),
899
- /* @__PURE__ */ jsx9(
1190
+ /* @__PURE__ */ jsx10(
900
1191
  "path",
901
1192
  {
902
1193
  d: "M86.6668 32.389V31.5557H87.6668V29.9446H88.5556V31.5557H90.0001V32.389H88.5556V35.7224C88.5556 35.9446 88.5557 36.1112 88.6668 36.2224C88.7779 36.3335 88.9445 36.389 89.1668 36.389H90.1668V37.2224H89.1112C88.5556 37.2224 88.2223 37.1112 87.9445 36.889C87.7223 36.6668 87.6112 36.2779 87.6112 35.7779V32.4446H86.6112L86.6668 32.389Z",
903
1194
  fill: "#141414"
904
1195
  }
905
1196
  ),
906
- /* @__PURE__ */ jsx9(
1197
+ /* @__PURE__ */ jsx10(
907
1198
  "path",
908
1199
  {
909
1200
  d: "M91.7779 31.8335C92.1668 31.6112 92.6668 31.4446 93.1668 31.4446C93.6668 31.4446 94.1668 31.5557 94.5557 31.7779C94.9446 32.0001 95.2779 32.2779 95.5001 32.7224C95.7223 33.1668 95.8334 33.6112 95.889 34.1668C95.889 34.2224 95.889 34.389 95.889 34.5557H91.5001C91.5001 35.1668 91.6668 35.6112 92.0001 35.9446C92.3334 36.2779 92.7779 36.4446 93.2779 36.4446C93.7779 36.4446 94.0557 36.3335 94.3334 36.1112C94.6112 35.889 94.8334 35.6112 94.889 35.2779H95.8334C95.7223 35.8335 95.4446 36.3335 95.0001 36.7224C94.5557 37.1112 94.0001 37.2779 93.389 37.2779C92.7779 37.2779 92.3334 37.1668 91.889 36.889C91.4445 36.6668 91.1112 36.3335 90.889 35.889C90.6668 35.4446 90.5557 34.9446 90.5557 34.389C90.5557 33.8335 90.6668 33.2779 90.889 32.889C91.1112 32.4446 91.4446 32.1112 91.8334 31.889L91.7779 31.8335ZM94.389 32.6668C94.0557 32.389 93.6668 32.2779 93.1668 32.2779C92.6668 32.2779 92.3334 32.4446 92.0557 32.7224C91.7779 33.0001 91.5557 33.389 91.5001 33.8335H94.9445C94.9445 33.3335 94.7223 33.0001 94.389 32.7224V32.6668Z",
910
1201
  fill: "#141414"
911
1202
  }
912
1203
  ),
913
- /* @__PURE__ */ jsx9("path", { d: "M97.8335 29.4446V37.2224H96.9446V29.4446H97.8335Z", fill: "#141414" }),
914
- /* @__PURE__ */ jsx9(
1204
+ /* @__PURE__ */ jsx10("path", { d: "M97.8335 29.4446V37.2224H96.9446V29.4446H97.8335Z", fill: "#141414" }),
1205
+ /* @__PURE__ */ jsx10(
915
1206
  "path",
916
1207
  {
917
1208
  d: "M100.167 31.8335C100.556 31.6112 101.056 31.4446 101.556 31.4446C102.056 31.4446 102.556 31.5557 102.945 31.7779C103.333 32.0001 103.667 32.2779 103.889 32.7224C104.111 33.1668 104.222 33.6112 104.278 34.1668C104.278 34.2224 104.278 34.389 104.278 34.5557H99.889C99.889 35.1668 100.056 35.6112 100.389 35.9446C100.722 36.2779 101.167 36.4446 101.667 36.4446C102.167 36.4446 102.445 36.3335 102.722 36.1112C103 35.889 103.222 35.6112 103.278 35.2779H104.222C104.111 35.8335 103.833 36.3335 103.389 36.7224C102.945 37.1112 102.389 37.2779 101.778 37.2779C101.167 37.2779 100.722 37.1668 100.278 36.889C99.8335 36.6668 99.5001 36.3335 99.2779 35.889C99.0557 35.4446 98.9446 34.9446 98.9446 34.389C98.9446 33.8335 99.0557 33.2779 99.2779 32.889C99.5001 32.4446 99.8335 32.1112 100.222 31.889L100.167 31.8335ZM102.778 32.6668C102.445 32.389 102.056 32.2779 101.556 32.2779C101.056 32.2779 100.722 32.4446 100.445 32.7224C100.167 33.0001 99.9446 33.389 99.889 33.8335H103.333C103.333 33.3335 103.111 33.0001 102.778 32.7224V32.6668Z",
918
1209
  fill: "#141414"
919
1210
  }
920
1211
  ),
921
- /* @__PURE__ */ jsx9(
1212
+ /* @__PURE__ */ jsx10(
922
1213
  "path",
923
1214
  {
924
1215
  d: "M106.445 36.1668C106.722 36.389 107.111 36.5001 107.556 36.5001C108 36.5001 108.278 36.4446 108.556 36.2779C108.778 36.1112 108.945 35.889 108.945 35.6668C108.945 35.4446 108.889 35.2779 108.778 35.1668C108.667 35.0557 108.5 34.9446 108.333 34.9446C108.167 34.9446 107.889 34.8334 107.5 34.8334C107 34.7779 106.611 34.7223 106.278 34.6112C105.945 34.5001 105.722 34.3334 105.5 34.1668C105.278 34.0001 105.222 33.6668 105.222 33.2779C105.222 32.889 105.333 32.6668 105.5 32.389C105.667 32.1112 105.945 31.9446 106.278 31.7779C106.611 31.6112 106.945 31.5557 107.389 31.5557C108.056 31.5557 108.611 31.7223 109 32.0001C109.445 32.3334 109.667 32.7779 109.667 33.3334H108.778C108.778 33.0557 108.611 32.7779 108.333 32.6112C108.056 32.4446 107.778 32.3334 107.389 32.3334C107 32.3334 106.667 32.389 106.445 32.5557C106.222 32.7223 106.111 32.9446 106.111 33.1668C106.111 33.389 106.111 33.5001 106.278 33.6112C106.389 33.7223 106.556 33.7779 106.722 33.8334C106.889 33.889 107.167 33.889 107.5 33.9446C108 34.0001 108.389 34.1112 108.722 34.1668C109.056 34.2223 109.278 34.4446 109.5 34.6668C109.722 34.889 109.778 35.2223 109.778 35.6112C109.778 36.0001 109.667 36.2779 109.5 36.5001C109.278 36.7779 109.056 36.9446 108.667 37.1112C108.333 37.2779 107.945 37.3334 107.556 37.3334C106.833 37.3334 106.222 37.1668 105.778 36.8334C105.333 36.5001 105.111 36.0001 105.111 35.389H106C106 35.7223 106.167 36.0001 106.445 36.2223V36.1668Z",
925
1216
  fill: "#141414"
926
1217
  }
927
1218
  ),
928
- /* @__PURE__ */ jsx9(
1219
+ /* @__PURE__ */ jsx10(
929
1220
  "path",
930
1221
  {
931
1222
  d: "M110.167 32.389V31.5557H111.167V29.9446H112.056V31.5557H113.5V32.389H112.056V35.7224C112.056 35.9446 112.056 36.1112 112.167 36.2224C112.278 36.3335 112.445 36.389 112.667 36.389H113.667V37.2224H112.611C112.056 37.2224 111.722 37.1112 111.445 36.889C111.222 36.6668 111.111 36.2779 111.111 35.7779V32.4446H110.111L110.167 32.389Z",
932
1223
  fill: "#141414"
933
1224
  }
934
1225
  ),
935
- /* @__PURE__ */ jsx9(
1226
+ /* @__PURE__ */ jsx10(
936
1227
  "path",
937
1228
  {
938
1229
  d: "M116.5 36.1668L118.167 31.5557H119.111L116.5 38.1668C116.389 38.5001 116.222 38.7779 116.167 38.9446C116.111 39.1112 115.944 39.2223 115.778 39.3334C115.611 39.389 115.389 39.4446 115.167 39.4446H114.056V38.6112H114.889C115.056 38.6112 115.222 38.6112 115.278 38.5557C115.333 38.5001 115.444 38.4446 115.5 38.389C115.5 38.2779 115.611 38.1668 115.722 37.9446L116 37.2779L113.778 31.5557H114.722L116.445 36.1668H116.5Z",
939
1230
  fill: "#141414"
940
1231
  }
941
1232
  ),
942
- /* @__PURE__ */ jsx9(
1233
+ /* @__PURE__ */ jsx10(
943
1234
  "path",
944
1235
  {
945
1236
  d: "M122.722 32.4446H122.278C121.722 32.4446 121.333 32.6112 121.111 33.0001C120.889 33.389 120.778 33.8334 120.778 34.3334V37.2223H119.889V31.5557H120.667L120.778 32.389C120.945 32.1112 121.167 31.9446 121.389 31.7779C121.611 31.6112 122 31.5557 122.445 31.5557H122.722V32.4446Z",
946
1237
  fill: "#141414"
947
1238
  }
948
1239
  ),
949
- /* @__PURE__ */ jsx9(
1240
+ /* @__PURE__ */ jsx10(
950
1241
  "path",
951
1242
  {
952
1243
  d: "M124.333 31.8335C124.722 31.6112 125.222 31.4446 125.722 31.4446C126.222 31.4446 126.722 31.5557 127.111 31.7779C127.5 32.0001 127.833 32.2779 128.056 32.7224C128.278 33.1668 128.389 33.6112 128.445 34.1668C128.445 34.2224 128.445 34.389 128.445 34.5557H124.056C124.056 35.1668 124.222 35.6112 124.556 35.9446C124.889 36.2779 125.333 36.4446 125.833 36.4446C126.333 36.4446 126.611 36.3335 126.889 36.1112C127.167 35.889 127.389 35.6112 127.445 35.2779H128.389C128.278 35.8335 128 36.3335 127.556 36.7224C127.111 37.1112 126.556 37.2779 125.945 37.2779C125.333 37.2779 124.889 37.1668 124.445 36.889C124 36.6668 123.667 36.3335 123.445 35.889C123.222 35.4446 123.111 34.9446 123.111 34.389C123.111 33.8335 123.222 33.2779 123.445 32.889C123.667 32.4446 124 32.1112 124.389 31.889L124.333 31.8335ZM126.945 32.6668C126.611 32.389 126.222 32.2779 125.722 32.2779C125.222 32.2779 124.889 32.4446 124.611 32.7224C124.333 33.0001 124.111 33.389 124.056 33.8335H127.5C127.5 33.3335 127.278 33.0001 126.945 32.7224V32.6668Z",
953
1244
  fill: "#141414"
954
1245
  }
955
1246
  ),
956
- /* @__PURE__ */ jsx9("path", { d: "M130.333 29.4446V37.2224H129.445V29.4446H130.333Z", fill: "#141414" }),
957
- /* @__PURE__ */ jsx9(
1247
+ /* @__PURE__ */ jsx10("path", { d: "M130.333 29.4446V37.2224H129.445V29.4446H130.333Z", fill: "#141414" }),
1248
+ /* @__PURE__ */ jsx10(
958
1249
  "path",
959
1250
  {
960
1251
  d: "M132.778 36.1668C133.056 36.389 133.445 36.5001 133.889 36.5001C134.333 36.5001 134.611 36.4446 134.889 36.2779C135.111 36.1112 135.278 35.889 135.278 35.6668C135.278 35.4446 135.222 35.2779 135.111 35.1668C135 35.0557 134.833 34.9446 134.667 34.9446C134.5 34.9446 134.222 34.8334 133.833 34.8334C133.333 34.7779 132.945 34.7223 132.611 34.6112C132.278 34.5001 132.056 34.3334 131.833 34.1668C131.611 34.0001 131.556 33.6668 131.556 33.2779C131.556 32.889 131.667 32.6668 131.833 32.389C132 32.1112 132.278 31.9446 132.611 31.7779C132.945 31.6112 133.278 31.5557 133.722 31.5557C134.389 31.5557 134.945 31.7223 135.333 32.0001C135.778 32.3334 136 32.7779 136 33.3334H135.111C135.111 33.0557 134.945 32.7779 134.667 32.6112C134.389 32.4446 134.111 32.3334 133.722 32.3334C133.333 32.3334 133 32.389 132.778 32.5557C132.556 32.7223 132.445 32.9446 132.445 33.1668C132.445 33.389 132.445 33.5001 132.611 33.6112C132.722 33.7223 132.889 33.7779 133.056 33.8334C133.222 33.889 133.5 33.889 133.833 33.9446C134.333 34.0001 134.722 34.1112 135.056 34.1668C135.389 34.2223 135.611 34.4446 135.833 34.6668C136.056 34.889 136.111 35.2223 136.111 35.6112C136.111 36.0001 136 36.2779 135.833 36.5001C135.611 36.7779 135.389 36.9446 135 37.1112C134.667 37.2779 134.278 37.3334 133.889 37.3334C133.167 37.3334 132.556 37.1668 132.111 36.8334C131.667 36.5001 131.445 36.0001 131.445 35.389H132.333C132.333 35.7223 132.5 36.0001 132.778 36.2223V36.1668Z",
961
1252
  fill: "#141414"
962
1253
  }
963
1254
  ),
964
- /* @__PURE__ */ jsx9(
1255
+ /* @__PURE__ */ jsx10(
965
1256
  "path",
966
1257
  {
967
1258
  d: "M138.222 31.8335C138.611 31.6112 139.111 31.4446 139.611 31.4446C140.111 31.4446 140.611 31.5557 141 31.7779C141.389 32.0001 141.722 32.2779 141.945 32.7224C142.167 33.1668 142.278 33.6112 142.333 34.1668C142.333 34.2224 142.333 34.389 142.333 34.5557H137.945C137.945 35.1668 138.111 35.6112 138.445 35.9446C138.778 36.2779 139.222 36.4446 139.722 36.4446C140.222 36.4446 140.5 36.3335 140.778 36.1112C141.056 35.889 141.278 35.6112 141.333 35.2779H142.278C142.167 35.8335 141.889 36.3335 141.445 36.7224C141 37.1112 140.445 37.2779 139.833 37.2779C139.222 37.2779 138.778 37.1668 138.333 36.889C137.889 36.6668 137.556 36.3335 137.333 35.889C137.111 35.4446 137 34.9446 137 34.389C137 33.8335 137.111 33.2779 137.333 32.889C137.556 32.4446 137.889 32.1112 138.278 31.889L138.222 31.8335ZM140.833 32.6668C140.5 32.389 140.111 32.2779 139.611 32.2779C139.111 32.2779 138.778 32.4446 138.5 32.7224C138.222 33.0001 138 33.389 137.945 33.8335H141.389C141.389 33.3335 141.167 33.0001 140.833 32.7224V32.6668Z",
968
1259
  fill: "#141414"
969
1260
  }
970
1261
  ),
971
- /* @__PURE__ */ jsx9(
1262
+ /* @__PURE__ */ jsx10(
972
1263
  "path",
973
1264
  {
974
1265
  d: "M148.445 34.0558V37.2225H147.556V34.1114C147.556 33.5002 147.445 33.0558 147.167 32.778C146.889 32.4447 146.5 32.3336 146 32.3336C145.5 32.3336 145.056 32.5002 144.722 32.8891C144.445 33.278 144.278 33.778 144.278 34.3891V37.2225H143.389V31.5558H144.167L144.278 32.3336C144.722 31.778 145.333 31.5002 146.167 31.5002C147 31.5002 147.389 31.7225 147.833 32.1114C148.278 32.5002 148.445 33.1669 148.445 34.0558Z",
975
1266
  fill: "#141414"
976
1267
  }
977
1268
  ),
978
- /* @__PURE__ */ jsx9(
1269
+ /* @__PURE__ */ jsx10(
979
1270
  "path",
980
1271
  {
981
1272
  d: "M30.0001 23.8889C30.0001 26.2223 28.6112 28.3889 26.4445 29.0556C25.4445 29.3334 24.4445 29.4445 22.7778 29.4445H13.6112C11.8889 29.4445 11.6667 29.7223 11.6667 31.3889V35.0001C11.6667 36.3334 10.8334 37.2223 9.72228 37.2223C8.61117 37.2223 7.77783 36.3334 7.77783 35.0001V32.5001C7.77783 31.3889 7.77783 30.4445 7.88894 29.9445C8.22228 28.0556 9.33339 26.6112 11.1667 25.9445C11.8889 25.6667 13.1112 25.5001 15.5001 25.5001H23.3334C24.0001 25.5001 24.6667 25.4445 24.9445 25.3334C25.7778 25.0001 26.0556 24.4445 26.0556 23.8334C26.0556 23.2223 25.8334 22.6112 24.9445 22.3334C24.6667 22.2223 24.0001 22.1667 23.3334 22.1667H10.7778C10.2778 22.1667 9.83339 22.1667 9.61117 22.0556C8.77783 21.7778 8.27783 21.0001 8.27783 20.2223C8.27783 19.4445 8.77783 18.6667 9.61117 18.3889C9.88894 18.2778 10.1667 18.2778 10.7223 18.2778H22.7223C24.4445 18.2778 25.7778 18.3889 26.6112 18.7223C28.7778 19.5556 29.9445 21.3334 29.9445 23.8334L30.0001 23.8889ZM53.1667 18.5001C52.8889 18.3889 52.4445 18.3334 51.8334 18.3334H34.2223C33.7778 18.3334 33.3889 18.3334 33.1667 18.4445C32.2223 18.7223 31.6667 19.4445 31.6667 20.2778C31.6667 21.1112 32.1112 21.7778 33.0001 22.0556C33.2778 22.1667 33.7223 22.2223 34.2223 22.2223H41.1112V35.2223C41.1112 36.5556 42.0001 37.2223 43.0556 37.2223C44.1112 37.2223 45.0001 36.5556 45.0001 35.2223V22.2223H51.8334C52.5001 22.2223 52.8334 22.2223 53.0556 22.1112C53.9445 21.8334 54.4445 21.1112 54.4445 20.2778C54.4445 19.4445 54.0001 18.7778 53.1667 18.5001ZM74.1667 26.3334C73.2223 25.8334 72.0001 25.5556 68.9445 25.5556H63.0556C62.1112 25.5556 61.6112 25.5001 61.2778 25.3889C60.3334 25.0556 60.0001 24.4445 60.0001 23.8889C60.0001 23.3334 60.2223 22.6667 61.2223 22.3334C61.5001 22.2223 62.0001 22.2223 62.5001 22.2223H73.3334C73.5556 22.2223 74.1667 22.2223 74.3334 22.2223C75.3334 22.0556 76.1112 21.4445 76.1112 20.3334C76.1112 19.2223 75.3334 18.6667 74.3889 18.4445C74.2223 18.4445 73.8334 18.3889 73.3334 18.3889H63.0556C61.2223 18.3889 59.8889 18.6112 59.0001 19.0001C57.1667 19.8889 56.1112 21.7778 56.1112 23.9445C56.1112 26.1112 57.1112 28.0556 59.1112 28.9445C60.0001 29.3334 61.3334 29.5001 63.0556 29.5001H70.5556C71.5001 29.5001 72.0001 29.6112 72.3334 29.7223C73.1112 30.0001 73.3334 30.7778 73.3334 31.4445C73.3334 32.1112 73.1112 32.9445 72.1667 33.2223C71.8334 33.3334 71.1667 33.3889 70.0556 33.3889H59.1667C58.7223 33.3889 58.2778 33.3889 58.0556 33.5001C57.1667 33.7223 56.6667 34.4445 56.6667 35.3334C56.6667 36.2223 57.2223 36.7778 57.9445 37.0556C58.2223 37.1667 58.8334 37.2778 59.2778 37.2778H68.8889C70.9445 37.2778 72.6112 37.1667 73.6112 36.8334C75.8889 36.1667 77.1667 34.0001 77.1667 31.4445C77.1667 28.8889 76.0001 27.3334 74.1112 26.3889L74.1667 26.3334Z",
982
1273
  fill: "#141414"
983
1274
  }
984
1275
  ),
985
- /* @__PURE__ */ jsx9(
1276
+ /* @__PURE__ */ jsx10(
986
1277
  "path",
987
1278
  {
988
1279
  d: "M51.1667 8.72233L51.3889 8.33344C50 6.44455 46.7222 5.11122 43.3889 5.00011H42.7223C39.3889 5.11122 36.1111 6.44455 34.7222 8.33344L34.9445 8.72233C34.3334 8.72233 33.8889 9.11122 33.8889 9.61122L35.1667 15.0001C35.2778 15.3334 35.3889 15.5001 35.8334 15.5001H50.2778C50.6667 15.5001 50.8334 15.2779 50.8889 15.0001L52.1667 9.61122C52.1667 9.11122 51.7222 8.72233 51.1111 8.72233H51.1667ZM38.5 10.4446C38.3889 10.4446 38.2222 10.389 38.1111 10.389C37.5556 10.389 37.1667 10.7779 37.1667 11.2779C37.1667 11.7779 37.5556 12.1112 38.0556 12.1112C38.5556 12.1112 38.5 12.0557 38.6111 11.889C38.6111 12.3334 38.1111 13.3334 37.4445 13.3334H36.0556C35.1111 13.3334 35 12.0557 35 11.9446C35.1111 12.0557 35.3889 12.1112 35.6111 12.1112C36.0556 12.1112 36.4445 11.7779 36.4445 11.2779C36.4445 10.7779 36.0556 10.389 35.5 10.389C34.9445 10.389 35.2778 10.389 35.2223 10.389C35.4445 10.2223 35.6667 9.94455 35.6667 9.61122C35.6667 9.27789 35.5 9.11122 35.2778 8.94455L36.5556 8.33344C37.3889 6.94455 38.8889 5.94455 40.7223 5.55566C39.7223 6.27789 38.8889 7.16678 38.2223 8.33344L38.6667 8.72233C38.2222 8.77789 37.8889 9.16677 37.8889 9.61122C37.8889 10.0557 38.1111 10.2779 38.4445 10.4446H38.5ZM42.6667 10.5001C42.5556 10.4446 42.3334 10.389 42.2222 10.389C41.6667 10.389 41.2778 10.7779 41.2778 11.2779C41.2778 11.7779 41.6667 12.1112 42.1667 12.1112C42.6667 12.1112 42.6111 12.0557 42.7778 11.9446C42.7778 12.389 42.4445 13.3334 41.6667 13.3334H40.2778C39.3889 13.3334 39.1667 12.2223 39.1667 11.889C39.2778 12.0001 39.5 12.1112 39.7778 12.1112C40.2222 12.1112 40.6667 11.7779 40.6667 11.2779C40.6667 10.7779 40.2778 10.389 39.7222 10.389C39.1667 10.389 39.3889 10.389 39.3334 10.4446C39.6667 10.2779 39.8889 10.0001 39.8889 9.61122C39.8889 9.22233 39.6667 8.94455 39.3334 8.83344L40.3334 8.33344C40.6111 7.33344 41.5 5.889 42.4445 5.389C42.3334 5.889 42.2778 6.94455 42.2778 8.33344C42.2778 8.33344 42.5556 8.61122 42.8334 8.77789C42.4445 8.889 42.1667 9.22233 42.1667 9.61122C42.1667 10.0001 42.3889 10.2779 42.7223 10.4446L42.6667 10.5001ZM45.8334 13.3334H44.4445C43.6667 13.3334 43.3334 12.389 43.3334 11.9446C43.4445 12.0557 43.6667 12.1112 43.9445 12.1112C44.4445 12.1112 44.8334 11.7779 44.8334 11.2779C44.8334 10.7779 44.4445 10.389 43.8889 10.389C43.3334 10.389 43.5556 10.389 43.4445 10.5001C43.7778 10.389 44.0556 10.0557 44.0556 9.66678C44.0556 9.27789 43.7778 8.94455 43.3889 8.83344C43.6667 8.66678 43.9445 8.389 43.9445 8.389C43.9445 7.00011 43.8889 5.94455 43.7222 5.44455C44.7222 5.94455 45.6111 7.33344 45.8889 8.389L46.8889 8.889C46.6111 9.00011 46.3334 9.33344 46.3334 9.66678C46.3334 10.0001 46.5556 10.3334 46.8889 10.5001C46.7778 10.5001 46.6111 10.4446 46.5 10.4446C45.9445 10.4446 45.5556 10.8334 45.5556 11.3334C45.5556 11.8334 45.9445 12.1668 46.4445 12.1668C46.9445 12.1668 46.8889 12.1112 47.0556 11.9446C47.0556 12.2223 46.8334 13.389 45.9445 13.389L45.8334 13.3334ZM50 13.3334H48.6111C47.8889 13.3334 47.4445 12.389 47.4445 11.889C47.5556 12.0557 47.7778 12.1112 48.0556 12.1112C48.5 12.1112 48.8889 11.7779 48.8889 11.2779C48.8889 10.7779 48.5 10.389 47.9445 10.389C47.3889 10.389 47.6111 10.389 47.5556 10.4446C47.8889 10.2779 48.1111 10.0001 48.1111 9.61122C48.1111 9.22233 47.7778 8.77789 47.2778 8.72233L47.7778 8.33344C47.1111 7.16678 46.2778 6.33344 45.2778 5.55566C47.0556 5.94455 48.6111 6.889 49.4445 8.33344L50.7778 8.94455C50.5556 9.11122 50.3889 9.33344 50.3889 9.66678C50.3889 10.0001 50.6111 10.3334 50.8889 10.5001C50.8334 10.5001 50.6667 10.4446 50.5556 10.4446C50 10.4446 49.6111 10.8334 49.6111 11.3334C49.6111 11.8334 50 12.1668 50.4445 12.1668C50.8889 12.1668 50.9445 12.1112 51.0556 12.0001C51.0556 12.1112 50.8889 13.389 50 13.389V13.3334ZM43.0556 5.00011C42.2778 5.00011 41.6667 4.389 41.6667 3.61122C41.6667 2.83344 42.1667 2.389 42.7778 2.27789V1.66678H42.2222V1.11122H42.7778V0.555664H43.3334V1.11122H43.8889V1.66678H43.3334V2.27789C43.9445 2.389 44.4445 2.94455 44.4445 3.66678C44.4445 4.389 43.8334 5.05566 43.0556 5.05566V5.00011Z",
989
1280
  fill: "#F0AA1E"
990
1281
  }
991
1282
  ),
992
- /* @__PURE__ */ jsx9("path", { d: "M82.2223 18.3335V37.2224", stroke: "black", strokeWidth: "0.8", strokeMiterlimit: "10" })
1283
+ /* @__PURE__ */ jsx10("path", { d: "M82.2223 18.3335V37.2224", stroke: "black", strokeWidth: "0.8", strokeMiterlimit: "10" })
993
1284
  ] });
994
- var Logo_en = () => /* @__PURE__ */ jsxs9("svg", { width: "189.0", height: "46.67", viewBox: "0 0 189 46.67", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", children: [
995
- /* @__PURE__ */ jsx9(
1285
+ var Logo_en = () => /* @__PURE__ */ jsxs10("svg", { width: "189.0", height: "46.67", viewBox: "0 0 189 46.67", fill: "none", xmlns: "http://www.w3.org/2000/svg", role: "img", children: [
1286
+ /* @__PURE__ */ jsx10(
996
1287
  "path",
997
1288
  {
998
1289
  d: "M30.0001 23.8889C30.0001 26.2223 28.6112 28.3889 26.4445 29.0556C25.4445 29.3334 24.4445 29.4445 22.7778 29.4445H13.6112C11.8889 29.4445 11.6667 29.7223 11.6667 31.3889V35.0001C11.6667 36.3334 10.8334 37.2223 9.72228 37.2223C8.61117 37.2223 7.77783 36.3334 7.77783 35.0001V32.5001C7.77783 31.3889 7.77783 30.4445 7.88894 29.9445C8.22228 28.0556 9.33339 26.6112 11.1667 25.9445C11.8889 25.6667 13.1112 25.5001 15.5001 25.5001H23.3334C24.0001 25.5001 24.6667 25.4445 24.9445 25.3334C25.7778 25.0001 26.0556 24.4445 26.0556 23.8334C26.0556 23.2223 25.8334 22.6112 24.9445 22.3334C24.6667 22.2223 24.0001 22.1667 23.3334 22.1667H10.7778C10.2778 22.1667 9.83339 22.1667 9.61117 22.0556C8.77783 21.7778 8.27783 21.0001 8.27783 20.2223C8.27783 19.4445 8.77783 18.6667 9.61117 18.3889C9.88894 18.2778 10.1667 18.2778 10.7223 18.2778H22.7223C24.4445 18.2778 25.7778 18.3889 26.6112 18.7223C28.7778 19.5556 29.9445 21.3334 29.9445 23.8334L30.0001 23.8889ZM53.1667 18.5001C52.8889 18.3889 52.4445 18.3334 51.8334 18.3334H34.2223C33.7778 18.3334 33.3889 18.3334 33.1667 18.4445C32.2223 18.7223 31.6667 19.4445 31.6667 20.2778C31.6667 21.1112 32.1112 21.7778 33.0001 22.0556C33.2778 22.1667 33.7223 22.2223 34.2223 22.2223H41.1112V35.2223C41.1112 36.5556 42.0001 37.2223 43.0556 37.2223C44.1112 37.2223 45.0001 36.5556 45.0001 35.2223V22.2223H51.8334C52.5001 22.2223 52.8334 22.2223 53.0556 22.1112C53.9445 21.8334 54.4445 21.1112 54.4445 20.2778C54.4445 19.4445 54.0001 18.7778 53.1667 18.5001ZM74.1667 26.3334C73.2223 25.8334 72.0001 25.5556 68.9445 25.5556H63.0556C62.1112 25.5556 61.6112 25.5001 61.2778 25.3889C60.3334 25.0556 60.0001 24.4445 60.0001 23.8889C60.0001 23.3334 60.2223 22.6667 61.2223 22.3334C61.5001 22.2223 62.0001 22.2223 62.5001 22.2223H73.3334C73.5556 22.2223 74.1667 22.2223 74.3334 22.2223C75.3334 22.0556 76.1112 21.4445 76.1112 20.3334C76.1112 19.2223 75.3334 18.6667 74.3889 18.4445C74.2223 18.4445 73.8334 18.3889 73.3334 18.3889H63.0556C61.2223 18.3889 59.8889 18.6112 59.0001 19.0001C57.1667 19.8889 56.1112 21.7778 56.1112 23.9445C56.1112 26.1112 57.1112 28.0556 59.1112 28.9445C60.0001 29.3334 61.3334 29.5001 63.0556 29.5001H70.5556C71.5001 29.5001 72.0001 29.6112 72.3334 29.7223C73.1112 30.0001 73.3334 30.7778 73.3334 31.4445C73.3334 32.1112 73.1112 32.9445 72.1667 33.2223C71.8334 33.3334 71.1667 33.3889 70.0556 33.3889H59.1667C58.7223 33.3889 58.2778 33.3889 58.0556 33.5001C57.1667 33.7223 56.6667 34.4445 56.6667 35.3334C56.6667 36.2223 57.2223 36.7778 57.9445 37.0556C58.2223 37.1667 58.8334 37.2778 59.2778 37.2778H68.8889C70.9445 37.2778 72.6112 37.1667 73.6112 36.8334C75.8889 36.1667 77.1667 34.0001 77.1667 31.4445C77.1667 28.8889 76.0001 27.3334 74.1112 26.3889L74.1667 26.3334Z",
999
1290
  fill: "#141414"
1000
1291
  }
1001
1292
  ),
1002
- /* @__PURE__ */ jsx9(
1293
+ /* @__PURE__ */ jsx10(
1003
1294
  "path",
1004
1295
  {
1005
1296
  d: "M51.1667 8.72233L51.3889 8.33344C50 6.44455 46.7222 5.11122 43.3889 5.00011H42.7223C39.3889 5.11122 36.1111 6.44455 34.7222 8.33344L34.9445 8.72233C34.3334 8.72233 33.8889 9.11122 33.8889 9.61122L35.1667 15.0001C35.2778 15.3334 35.3889 15.5001 35.8334 15.5001H50.2778C50.6667 15.5001 50.8334 15.2779 50.8889 15.0001L52.1667 9.61122C52.1667 9.11122 51.7222 8.72233 51.1111 8.72233H51.1667ZM38.5 10.4446C38.3889 10.4446 38.2222 10.389 38.1111 10.389C37.5556 10.389 37.1667 10.7779 37.1667 11.2779C37.1667 11.7779 37.5556 12.1112 38.0556 12.1112C38.5556 12.1112 38.5 12.0557 38.6111 11.889C38.6111 12.3334 38.1111 13.3334 37.4445 13.3334H36.0556C35.1111 13.3334 35 12.0557 35 11.9446C35.1111 12.0557 35.3889 12.1112 35.6111 12.1112C36.0556 12.1112 36.4445 11.7779 36.4445 11.2779C36.4445 10.7779 36.0556 10.389 35.5 10.389C34.9445 10.389 35.2778 10.389 35.2223 10.389C35.4445 10.2223 35.6667 9.94455 35.6667 9.61122C35.6667 9.27789 35.5 9.11122 35.2778 8.94455L36.5556 8.33344C37.3889 6.94455 38.8889 5.94455 40.7223 5.55566C39.7223 6.27789 38.8889 7.16678 38.2223 8.33344L38.6667 8.72233C38.2222 8.77789 37.8889 9.16677 37.8889 9.61122C37.8889 10.0557 38.1111 10.2779 38.4445 10.4446H38.5ZM42.6667 10.5001C42.5556 10.4446 42.3334 10.389 42.2222 10.389C41.6667 10.389 41.2778 10.7779 41.2778 11.2779C41.2778 11.7779 41.6667 12.1112 42.1667 12.1112C42.6667 12.1112 42.6111 12.0557 42.7778 11.9446C42.7778 12.389 42.4445 13.3334 41.6667 13.3334H40.2778C39.3889 13.3334 39.1667 12.2223 39.1667 11.889C39.2778 12.0001 39.5 12.1112 39.7778 12.1112C40.2222 12.1112 40.6667 11.7779 40.6667 11.2779C40.6667 10.7779 40.2778 10.389 39.7222 10.389C39.1667 10.389 39.3889 10.389 39.3334 10.4446C39.6667 10.2779 39.8889 10.0001 39.8889 9.61122C39.8889 9.22233 39.6667 8.94455 39.3334 8.83344L40.3334 8.33344C40.6111 7.33344 41.5 5.889 42.4445 5.389C42.3334 5.889 42.2778 6.94455 42.2778 8.33344C42.2778 8.33344 42.5556 8.61122 42.8334 8.77789C42.4445 8.889 42.1667 9.22233 42.1667 9.61122C42.1667 10.0001 42.3889 10.2779 42.7223 10.4446L42.6667 10.5001ZM45.8334 13.3334H44.4445C43.6667 13.3334 43.3334 12.389 43.3334 11.9446C43.4445 12.0557 43.6667 12.1112 43.9445 12.1112C44.4445 12.1112 44.8334 11.7779 44.8334 11.2779C44.8334 10.7779 44.4445 10.389 43.8889 10.389C43.3334 10.389 43.5556 10.389 43.4445 10.5001C43.7778 10.389 44.0556 10.0557 44.0556 9.66678C44.0556 9.27789 43.7778 8.94455 43.3889 8.83344C43.6667 8.66678 43.9445 8.389 43.9445 8.389C43.9445 7.00011 43.8889 5.94455 43.7222 5.44455C44.7222 5.94455 45.6111 7.33344 45.8889 8.389L46.8889 8.889C46.6111 9.00011 46.3334 9.33344 46.3334 9.66678C46.3334 10.0001 46.5556 10.3334 46.8889 10.5001C46.7778 10.5001 46.6111 10.4446 46.5 10.4446C45.9445 10.4446 45.5556 10.8334 45.5556 11.3334C45.5556 11.8334 45.9445 12.1668 46.4445 12.1668C46.9445 12.1668 46.8889 12.1112 47.0556 11.9446C47.0556 12.2223 46.8334 13.389 45.9445 13.389L45.8334 13.3334ZM50 13.3334H48.6111C47.8889 13.3334 47.4445 12.389 47.4445 11.889C47.5556 12.0557 47.7778 12.1112 48.0556 12.1112C48.5 12.1112 48.8889 11.7779 48.8889 11.2779C48.8889 10.7779 48.5 10.389 47.9445 10.389C47.3889 10.389 47.6111 10.389 47.5556 10.4446C47.8889 10.2779 48.1111 10.0001 48.1111 9.61122C48.1111 9.22233 47.7778 8.77789 47.2778 8.72233L47.7778 8.33344C47.1111 7.16678 46.2778 6.33344 45.2778 5.55566C47.0556 5.94455 48.6111 6.889 49.4445 8.33344L50.7778 8.94455C50.5556 9.11122 50.3889 9.33344 50.3889 9.66678C50.3889 10.0001 50.6111 10.3334 50.8889 10.5001C50.8334 10.5001 50.6667 10.4446 50.5556 10.4446C50 10.4446 49.6111 10.8334 49.6111 11.3334C49.6111 11.8334 50 12.1668 50.4445 12.1668C50.8889 12.1668 50.9445 12.1112 51.0556 12.0001C51.0556 12.1112 50.8889 13.389 50 13.389V13.3334ZM43.0556 5.00011C42.2778 5.00011 41.6667 4.389 41.6667 3.61122C41.6667 2.83344 42.1667 2.389 42.7778 2.27789V1.66678H42.2222V1.11122H42.7778V0.555664H43.3334V1.11122H43.8889V1.66678H43.3334V2.27789C43.9445 2.389 44.4445 2.94455 44.4445 3.66678C44.4445 4.389 43.8334 5.05566 43.0556 5.05566V5.00011Z",
1006
1297
  fill: "#F0AA1E"
1007
1298
  }
1008
1299
  ),
1009
- /* @__PURE__ */ jsx9("path", { d: "M82.2223 18.3335V37.2224", stroke: "#141414", strokeWidth: "0.8", strokeMiterlimit: "10" }),
1010
- /* @__PURE__ */ jsx9(
1300
+ /* @__PURE__ */ jsx10("path", { d: "M82.2223 18.3335V37.2224", stroke: "#141414", strokeWidth: "0.8", strokeMiterlimit: "10" }),
1301
+ /* @__PURE__ */ jsx10(
1011
1302
  "path",
1012
1303
  {
1013
1304
  d: "M88.9445 24.8335C89.3334 25.1669 89.8334 25.3335 90.3889 25.3335C90.9445 25.3335 91.3334 25.2224 91.6667 25.0002C92 24.778 92.1667 24.4446 92.1667 24.0002C92.1667 23.5557 92.0556 23.4446 91.8889 23.278C91.7222 23.1113 91.5 22.9446 91.1667 22.8891C90.8334 22.8335 90.5 22.7224 90 22.6113C89.2222 22.5002 88.6111 22.278 88.1667 21.9446C87.7222 21.6669 87.5 21.1669 87.5 20.4446C87.5 19.7224 87.6111 19.6113 87.8334 19.278C88.0556 18.9446 88.3889 18.6669 88.7778 18.5002C89.1667 18.3335 89.6667 18.2224 90.1667 18.2224C90.6667 18.2224 91.2222 18.3335 91.6111 18.5002C92.0556 18.7224 92.3889 19.0002 92.6111 19.3335C92.8334 19.6669 93 20.1113 93 20.5557H92.0556C92 20.1113 91.7778 19.7224 91.4445 19.4446C91.1111 19.1669 90.6667 19.0557 90.1667 19.0557C89.6667 19.0557 89.2223 19.1669 88.9445 19.3891C88.6667 19.6113 88.5 19.9446 88.5 20.3335C88.5 20.7224 88.6111 20.8891 88.7778 21.0557C88.9445 21.2224 89.1667 21.3335 89.4445 21.4446C89.7222 21.5557 90.1111 21.6113 90.6111 21.7224C91.3889 21.8335 92 22.0557 92.5 22.3891C92.9445 22.7224 93.2223 23.1669 93.2223 23.8891C93.2223 24.6113 93.1111 24.7224 92.8889 25.0557C92.6667 25.3891 92.3334 25.6669 91.8889 25.8891C91.4445 26.0557 91 26.1669 90.4445 26.1669C89.8889 26.1669 89.3334 26.0557 88.8334 25.8335C88.3889 25.6113 88.0556 25.3335 87.7778 24.8891C87.5556 24.5002 87.3889 24.0557 87.3889 23.5002H88.3334C88.3334 24.0002 88.5556 24.4446 88.9445 24.778V24.8335Z",
1014
1305
  fill: "#141414"
1015
1306
  }
1016
1307
  ),
1017
- /* @__PURE__ */ jsx9(
1308
+ /* @__PURE__ */ jsx10(
1018
1309
  "path",
1019
1310
  {
1020
1311
  d: "M94.5557 20.4446L95.9446 25.0557L97.4446 20.4446H98.2779L99.6668 25.0557L101.167 20.4446H102.111L100.222 26.1112H99.2223L97.8334 21.889L96.389 26.1112H95.389L93.5557 20.4446H94.5001H94.5557Z",
1021
1312
  fill: "#141414"
1022
1313
  }
1023
1314
  ),
1024
- /* @__PURE__ */ jsx9(
1315
+ /* @__PURE__ */ jsx10(
1025
1316
  "path",
1026
1317
  {
1027
1318
  d: "M103.778 20.7224C104.167 20.5002 104.667 20.3335 105.167 20.3335C105.667 20.3335 106.167 20.4446 106.556 20.6668C106.945 20.8891 107.278 21.1668 107.5 21.6113C107.722 22.0002 107.833 22.5002 107.889 23.0557C107.889 23.1113 107.889 23.2779 107.889 23.4446H103.5C103.5 24.0557 103.667 24.5002 104 24.8335C104.333 25.1668 104.778 25.3335 105.278 25.3335C105.778 25.3335 106.056 25.2224 106.333 25.0002C106.611 24.7779 106.833 24.5002 106.889 24.1668H107.833C107.722 24.7224 107.445 25.2224 107 25.6113C106.556 26.0002 106 26.1668 105.389 26.1668C104.778 26.1668 104.333 26.0557 103.889 25.7779C103.445 25.5557 103.111 25.2224 102.889 24.7779C102.667 24.3335 102.556 23.8335 102.556 23.2779C102.556 22.7224 102.667 22.1668 102.889 21.7779C103.111 21.3335 103.445 21.0002 103.833 20.7779L103.778 20.7224ZM106.389 21.5557C106.056 21.2779 105.667 21.1668 105.167 21.1668C104.667 21.1668 104.333 21.3335 104.056 21.6113C103.778 21.8891 103.556 22.2779 103.5 22.7224H106.945C106.945 22.2224 106.722 21.8891 106.389 21.6113V21.5557Z",
1028
1319
  fill: "#141414"
1029
1320
  }
1030
1321
  ),
1031
- /* @__PURE__ */ jsx9(
1322
+ /* @__PURE__ */ jsx10(
1032
1323
  "path",
1033
1324
  {
1034
1325
  d: "M114.278 26.1114H113.5L113.389 25.2225C112.889 25.8892 112.278 26.2225 111.445 26.2225C110.611 26.2225 110.445 26.1114 110.056 25.8892C109.667 25.6669 109.333 25.3336 109.111 24.8892C108.889 24.4447 108.778 23.9447 108.778 23.3336C108.778 22.7225 108.889 22.2781 109.111 21.8336C109.333 21.3892 109.667 21.0558 110.111 20.8336C110.556 20.6114 111 20.4447 111.5 20.4447C112 20.4447 112.333 20.5003 112.667 20.7225C113 20.8892 113.222 21.1114 113.444 21.3892V18.3892H114.333V26.1669L114.278 26.1114ZM113.111 24.3892C113.278 24.0558 113.333 23.7225 113.333 23.3336C113.333 22.9447 113.278 22.5558 113.111 22.2225C112.945 21.8892 112.722 21.6669 112.444 21.4447C112.167 21.278 111.833 21.1669 111.445 21.1669C110.889 21.1669 110.445 21.3892 110.056 21.7781C109.667 22.1669 109.556 22.6669 109.556 23.2781C109.556 23.8892 109.722 24.3892 110.056 24.778C110.389 25.1669 110.833 25.3892 111.445 25.3892C112.056 25.3892 112.111 25.2781 112.444 25.1114C112.722 24.9447 112.945 24.6669 113.111 24.3892Z",
1035
1326
  fill: "#141414"
1036
1327
  }
1037
1328
  ),
1038
- /* @__PURE__ */ jsx9(
1329
+ /* @__PURE__ */ jsx10(
1039
1330
  "path",
1040
1331
  {
1041
1332
  d: "M116.556 18.8335C116.556 19.0002 116.5 19.1669 116.389 19.278C116.278 19.3891 116.111 19.4446 115.944 19.4446C115.778 19.4446 115.611 19.3891 115.5 19.278C115.389 19.1669 115.333 19.0002 115.333 18.8335C115.333 18.6669 115.389 18.5002 115.5 18.3891C115.611 18.278 115.778 18.2224 115.944 18.2224C116.111 18.2224 116.278 18.278 116.389 18.3891C116.5 18.5002 116.556 18.6669 116.556 18.8335ZM116.444 20.4446V26.1113H115.556V20.4446H116.444Z",
1042
1333
  fill: "#141414"
1043
1334
  }
1044
1335
  ),
1045
- /* @__PURE__ */ jsx9(
1336
+ /* @__PURE__ */ jsx10(
1046
1337
  "path",
1047
1338
  {
1048
1339
  d: "M118.833 25.0557C119.111 25.2779 119.5 25.389 119.945 25.389C120.389 25.389 120.667 25.3335 120.945 25.1668C121.167 25.0001 121.333 24.7779 121.333 24.5557C121.333 24.3335 121.278 24.1668 121.167 24.0557C121.056 23.9446 120.889 23.8335 120.722 23.8335C120.556 23.8335 120.278 23.7224 119.889 23.7224C119.389 23.6668 119 23.6112 118.667 23.5001C118.333 23.389 118.111 23.2224 117.889 23.0557C117.722 22.8335 117.611 22.5557 117.611 22.1668C117.611 21.7779 117.722 21.5557 117.889 21.2779C118.056 21.0001 118.333 20.8335 118.667 20.6668C119 20.5001 119.333 20.4446 119.778 20.4446C120.445 20.4446 121 20.6112 121.389 20.889C121.833 21.2224 122.056 21.6668 122.056 22.2224H121.167C121.167 21.9446 121 21.6668 120.722 21.5001C120.445 21.3335 120.167 21.2224 119.778 21.2224C119.389 21.2224 119.056 21.2779 118.833 21.4446C118.611 21.6112 118.5 21.8335 118.5 22.0557C118.5 22.2779 118.5 22.389 118.667 22.5001C118.778 22.6112 118.945 22.6668 119.111 22.7224C119.278 22.7224 119.556 22.7779 119.889 22.8335C120.389 22.889 120.778 23.0001 121.111 23.0557C121.445 23.1668 121.667 23.3335 121.889 23.5557C122.111 23.7779 122.167 24.1112 122.167 24.5001C122.167 24.889 122.056 25.1668 121.889 25.389C121.667 25.6668 121.445 25.8335 121.056 26.0001C120.722 26.1668 120.333 26.2224 119.945 26.2224C119.222 26.2224 118.611 26.0557 118.167 25.7224C117.722 25.389 117.5 24.889 117.5 24.2779H118.389C118.389 24.6112 118.556 24.889 118.833 25.1112V25.0557Z",
1049
1340
  fill: "#141414"
1050
1341
  }
1051
1342
  ),
1052
- /* @__PURE__ */ jsx9(
1343
+ /* @__PURE__ */ jsx10(
1053
1344
  "path",
1054
1345
  {
1055
1346
  d: "M128.278 22.9446V26.1113H127.389V23.0002C127.389 22.3891 127.278 21.9446 127 21.6668C126.722 21.3335 126.333 21.2224 125.833 21.2224C125.333 21.2224 124.889 21.3891 124.611 21.7779C124.278 22.1668 124.167 22.6668 124.167 23.2779V26.1113H123.278V18.3335H124.167V21.3891C124.333 21.1113 124.611 20.8335 124.889 20.6668C125.222 20.5002 125.556 20.3891 126 20.3891C126.667 20.3891 127.222 20.6113 127.667 21.0002C128.111 21.3891 128.278 22.0557 128.278 22.9446Z",
1056
1347
  fill: "#141414"
1057
1348
  }
1058
1349
  ),
1059
- /* @__PURE__ */ jsx9(
1350
+ /* @__PURE__ */ jsx10(
1060
1351
  "path",
1061
1352
  {
1062
1353
  d: "M136.833 18.6113C137.222 18.8335 137.556 19.1113 137.722 19.4446C137.945 19.7779 138.056 20.2224 138.056 20.7224C138.056 21.2224 137.945 21.6113 137.722 22.0002C137.5 22.3891 137.222 22.6668 136.833 22.8335C136.445 23.0002 136 23.1113 135.5 23.1113H133.5V26.1113H132.556V18.3335H135.556C136.056 18.3335 136.5 18.4446 136.889 18.6113H136.833ZM135.389 22.2224C135.889 22.2224 136.333 22.1113 136.611 21.8335C136.889 21.5557 137.056 21.1668 137.056 20.7224C137.056 20.2779 136.889 19.8891 136.611 19.6113C136.333 19.3335 135.889 19.2224 135.389 19.2224H133.445V22.2224H135.389Z",
1063
1354
  fill: "#141414"
1064
1355
  }
1065
1356
  ),
1066
- /* @__PURE__ */ jsx9(
1357
+ /* @__PURE__ */ jsx10(
1067
1358
  "path",
1068
1359
  {
1069
1360
  d: "M138.833 24.778C138.611 24.3336 138.5 23.8336 138.5 23.278C138.5 22.7225 138.611 22.2225 138.833 21.778C139.056 21.3336 139.389 21.0003 139.833 20.778C140.278 20.5558 140.722 20.3892 141.278 20.3892C141.833 20.3892 142.333 20.5003 142.722 20.778C143.167 21.0003 143.5 21.3892 143.722 21.778C143.945 22.2225 144.056 22.7225 144.056 23.278C144.056 23.8336 143.945 24.3336 143.722 24.778C143.5 25.2225 143.167 25.5558 142.722 25.778C142.278 26.0003 141.833 26.1669 141.278 26.1669C140.722 26.1669 140.222 26.0558 139.833 25.778C139.445 25.5003 139.056 25.1669 138.833 24.778ZM142.945 24.3336C143.111 24.0003 143.167 23.6669 143.167 23.278C143.167 22.8892 143.111 22.5003 142.945 22.2225C142.778 21.8892 142.556 21.6669 142.278 21.5003C142 21.3336 141.667 21.2225 141.278 21.2225C140.889 21.2225 140.556 21.3336 140.278 21.5003C140 21.6669 139.778 21.9447 139.611 22.2225C139.445 22.5003 139.389 22.8892 139.389 23.278C139.389 23.6669 139.445 24.0558 139.611 24.3336C139.778 24.6669 140 24.8892 140.278 25.0558C140.556 25.2225 140.889 25.3336 141.278 25.3336C141.667 25.3336 142 25.2225 142.278 25.0558C142.556 24.8892 142.778 24.6114 142.945 24.3336Z",
1070
1361
  fill: "#141414"
1071
1362
  }
1072
1363
  ),
1073
- /* @__PURE__ */ jsx9(
1364
+ /* @__PURE__ */ jsx10(
1074
1365
  "path",
1075
1366
  {
1076
1367
  d: "M146.278 25.0557C146.556 25.2779 146.945 25.389 147.389 25.389C147.833 25.389 148.111 25.3335 148.389 25.1668C148.611 25.0001 148.778 24.7779 148.778 24.5557C148.778 24.3335 148.722 24.1668 148.611 24.0557C148.5 23.9446 148.333 23.8335 148.167 23.8335C148 23.8335 147.722 23.7224 147.333 23.7224C146.833 23.6668 146.445 23.6112 146.111 23.5001C145.778 23.389 145.556 23.2224 145.333 23.0557C145.167 22.8335 145.056 22.5557 145.056 22.1668C145.056 21.7779 145.167 21.5557 145.333 21.2779C145.5 21.0001 145.778 20.8335 146.111 20.6668C146.445 20.5001 146.778 20.4446 147.222 20.4446C147.889 20.4446 148.445 20.6112 148.833 20.889C149.278 21.2224 149.5 21.6668 149.5 22.2224H148.611C148.611 21.9446 148.445 21.6668 148.167 21.5001C147.889 21.3335 147.611 21.2224 147.222 21.2224C146.833 21.2224 146.5 21.2779 146.278 21.4446C146.056 21.6112 145.945 21.8335 145.945 22.0557C145.945 22.2779 145.945 22.389 146.111 22.5001C146.222 22.6112 146.389 22.6668 146.556 22.7224C146.722 22.7224 147 22.7779 147.333 22.8335C147.833 22.889 148.222 23.0001 148.556 23.0557C148.889 23.1668 149.111 23.3335 149.333 23.5557C149.556 23.7779 149.611 24.1112 149.611 24.5001C149.611 24.889 149.5 25.1668 149.333 25.389C149.111 25.6668 148.889 25.8335 148.5 26.0001C148.167 26.1668 147.778 26.2224 147.389 26.2224C146.667 26.2224 146.056 26.0557 145.611 25.7224C145.167 25.389 144.945 24.889 144.945 24.2779H145.833C145.833 24.6112 146 24.889 146.278 25.1112V25.0557Z",
1077
1368
  fill: "#141414"
1078
1369
  }
1079
1370
  ),
1080
- /* @__PURE__ */ jsx9(
1371
+ /* @__PURE__ */ jsx10(
1081
1372
  "path",
1082
1373
  {
1083
1374
  d: "M150 21.2779V20.4446H151V18.8335H151.889V20.4446H153.333V21.2779H151.889V24.6113C151.889 24.8335 151.889 25.0002 152 25.1113C152.111 25.2224 152.278 25.2779 152.5 25.2779H153.5V26.1113H152.445C151.889 26.1113 151.556 26.0002 151.278 25.7779C151.056 25.5557 150.945 25.1668 150.945 24.6668V21.3335H149.945L150 21.2779Z",
1084
1375
  fill: "#141414"
1085
1376
  }
1086
1377
  ),
1087
- /* @__PURE__ */ jsx9(
1378
+ /* @__PURE__ */ jsx10(
1088
1379
  "path",
1089
1380
  {
1090
1381
  d: "M162.445 26.1113H161.945C161.556 26.1113 161.333 26.0557 161.167 25.8891C161 25.7224 160.945 25.5002 160.945 25.2224C160.5 25.8335 159.889 26.1668 159.056 26.1668C158.222 26.1668 157.945 26.0002 157.556 25.7224C157.167 25.4446 157 25.0002 157 24.5002C157 24.0002 157.167 23.5002 157.556 23.1668C157.945 22.8335 158.5 22.7224 159.278 22.7224H160.945V22.3335C160.945 21.9446 160.833 21.6668 160.556 21.4446C160.333 21.2224 159.945 21.1113 159.5 21.1113C159.056 21.1113 158.778 21.2224 158.5 21.3891C158.222 21.5557 158.111 21.7779 158 22.0557H157.111C157.167 21.5002 157.445 21.0557 157.833 20.7779C158.222 20.5002 158.833 20.3335 159.5 20.3335C160.167 20.3335 160.778 20.5002 161.167 20.8891C161.556 21.2224 161.778 21.7224 161.778 22.3891V24.8335C161.778 25.1113 161.889 25.2224 162.167 25.2224H162.445V26.0557V26.1113ZM159.111 23.5002C158.278 23.5002 157.833 23.8335 157.833 24.4446C157.833 25.0557 157.945 24.9446 158.167 25.1113C158.389 25.2779 158.667 25.3891 159.056 25.3891C159.611 25.3891 160.056 25.2224 160.389 24.9446C160.722 24.6668 160.889 24.2779 160.889 23.7779V23.5002H159.111Z",
1091
1382
  fill: "#141414"
1092
1383
  }
1093
1384
  ),
1094
- /* @__PURE__ */ jsx9(
1385
+ /* @__PURE__ */ jsx10(
1095
1386
  "path",
1096
1387
  {
1097
1388
  d: "M168.167 22.9447V26.1114H167.278V23.0003C167.278 22.3892 167.167 21.9447 166.889 21.6669C166.611 21.3892 166.222 21.2225 165.722 21.2225C165.222 21.2225 164.778 21.3892 164.445 21.778C164.167 22.1669 164 22.6669 164 23.278V26.1114H163.111V20.4447H163.889L164 21.2225C164.445 20.6669 165.056 20.3892 165.889 20.3892C166.722 20.3892 167.111 20.6114 167.556 21.0003C168 21.3892 168.167 22.0558 168.167 22.9447Z",
1098
1389
  fill: "#141414"
1099
1390
  }
1100
1391
  ),
1101
- /* @__PURE__ */ jsx9(
1392
+ /* @__PURE__ */ jsx10(
1102
1393
  "path",
1103
1394
  {
1104
1395
  d: "M174.722 26.1114H173.945L173.833 25.2225C173.333 25.8892 172.722 26.2225 171.889 26.2225C171.056 26.2225 170.889 26.1114 170.5 25.8892C170.111 25.6669 169.778 25.3336 169.556 24.8892C169.333 24.4447 169.222 23.9447 169.222 23.3336C169.222 22.7225 169.333 22.2781 169.556 21.8336C169.778 21.3892 170.111 21.0558 170.556 20.8336C171 20.6114 171.445 20.4447 171.945 20.4447C172.445 20.4447 172.778 20.5003 173.111 20.7225C173.445 20.8892 173.667 21.1114 173.889 21.3892V18.3892H174.778V26.1669L174.722 26.1114ZM173.611 24.3892C173.778 24.0558 173.833 23.7225 173.833 23.3336C173.833 22.9447 173.778 22.5558 173.611 22.2225C173.445 21.8892 173.222 21.6669 172.945 21.4447C172.667 21.278 172.333 21.1669 171.945 21.1669C171.389 21.1669 170.945 21.3892 170.556 21.7781C170.167 22.1669 170.056 22.6669 170.056 23.2781C170.056 23.8892 170.222 24.3892 170.556 24.778C170.889 25.1669 171.333 25.3892 171.945 25.3892C172.556 25.3892 172.611 25.2781 172.945 25.1114C173.222 24.9447 173.445 24.6669 173.611 24.3892Z",
1105
1396
  fill: "#141414"
1106
1397
  }
1107
1398
  ),
1108
- /* @__PURE__ */ jsx9(
1399
+ /* @__PURE__ */ jsx10(
1109
1400
  "path",
1110
1401
  {
1111
1402
  d: "M92.6112 29.4446V30.3335H90.1112V37.2224H89.1667V30.3335H86.6667V29.4446H92.6667H92.6112Z",
1112
1403
  fill: "#141414"
1113
1404
  }
1114
1405
  ),
1115
- /* @__PURE__ */ jsx9(
1406
+ /* @__PURE__ */ jsx10(
1116
1407
  "path",
1117
1408
  {
1118
1409
  d: "M93.6111 31.8335C94 31.6112 94.5 31.4446 95 31.4446C95.5 31.4446 96 31.5557 96.3889 31.7779C96.7778 32.0001 97.1111 32.2779 97.3334 32.7224C97.5556 33.1112 97.6667 33.6112 97.7222 34.1668C97.7222 34.2224 97.7222 34.389 97.7222 34.5557H93.3334C93.3334 35.1668 93.5 35.6112 93.8334 35.9446C94.1667 36.2779 94.6111 36.4446 95.1111 36.4446C95.6111 36.4446 95.8889 36.3335 96.1667 36.1112C96.4445 35.889 96.6667 35.6112 96.7223 35.2779H97.6667C97.5556 35.8335 97.2778 36.3335 96.8334 36.7224C96.3889 37.1112 95.8334 37.2779 95.2222 37.2779C94.6111 37.2779 94.1667 37.1668 93.7222 36.889C93.2778 36.6668 92.9445 36.3335 92.7222 35.889C92.5 35.4446 92.3889 34.9446 92.3889 34.389C92.3889 33.8335 92.5 33.2779 92.7222 32.889C92.9445 32.4446 93.2778 32.1112 93.6667 31.889L93.6111 31.8335ZM96.2222 32.6668C95.8889 32.389 95.5 32.2779 95 32.2779C94.5 32.2779 94.1667 32.4446 93.8889 32.7224C93.5556 33.0001 93.3889 33.389 93.3334 33.8335H96.7778C96.7778 33.3335 96.5556 33.0001 96.2222 32.7224V32.6668Z",
1119
1410
  fill: "#141414"
1120
1411
  }
1121
1412
  ),
1122
- /* @__PURE__ */ jsx9("path", { d: "M99.6667 29.4446V37.2224H98.7778V29.4446H99.6667Z", fill: "#141414" }),
1123
- /* @__PURE__ */ jsx9(
1413
+ /* @__PURE__ */ jsx10("path", { d: "M99.6667 29.4446V37.2224H98.7778V29.4446H99.6667Z", fill: "#141414" }),
1414
+ /* @__PURE__ */ jsx10(
1124
1415
  "path",
1125
1416
  {
1126
1417
  d: "M102 31.8335C102.389 31.6112 102.889 31.4446 103.389 31.4446C103.889 31.4446 104.389 31.5557 104.778 31.7779C105.167 32.0001 105.5 32.2779 105.722 32.7224C105.945 33.1112 106.056 33.6112 106.111 34.1668C106.111 34.2224 106.111 34.389 106.111 34.5557H101.722C101.722 35.1668 101.889 35.6112 102.222 35.9446C102.556 36.2779 103 36.4446 103.5 36.4446C104 36.4446 104.278 36.3335 104.556 36.1112C104.833 35.889 105.056 35.6112 105.111 35.2779H106.056C105.944 35.8335 105.667 36.3335 105.222 36.7224C104.778 37.1112 104.222 37.2779 103.611 37.2779C103 37.2779 102.556 37.1668 102.111 36.889C101.667 36.6668 101.333 36.3335 101.111 35.889C100.889 35.4446 100.778 34.9446 100.778 34.389C100.778 33.8335 100.889 33.2779 101.111 32.889C101.333 32.4446 101.667 32.1112 102.056 31.889L102 31.8335ZM104.611 32.6668C104.278 32.389 103.889 32.2779 103.389 32.2779C102.889 32.2779 102.556 32.4446 102.278 32.7224C101.945 33.0001 101.778 33.389 101.722 33.8335H105.167C105.167 33.3335 104.945 33.0001 104.611 32.7224V32.6668Z",
1127
1418
  fill: "#141414"
1128
1419
  }
1129
1420
  ),
1130
- /* @__PURE__ */ jsx9(
1421
+ /* @__PURE__ */ jsx10(
1131
1422
  "path",
1132
1423
  {
1133
1424
  d: "M109.667 37.2779C109.111 37.2779 108.611 37.1668 108.222 36.889C107.833 36.6668 107.5 36.2779 107.278 35.8335C107.056 35.389 106.945 34.889 106.945 34.3335C106.945 33.7779 107.056 33.2779 107.278 32.8335C107.5 32.389 107.833 32.0557 108.278 31.8335C108.722 31.6112 109.167 31.4446 109.722 31.4446C110.278 31.4446 110.945 31.6112 111.389 32.0001C111.833 32.389 112.111 32.8335 112.222 33.4446H111.278C111.167 33.0557 111 32.7779 110.722 32.5557C110.445 32.3335 110.111 32.2224 109.722 32.2224C109.333 32.2224 108.722 32.389 108.389 32.7779C108.056 33.1668 107.889 33.6668 107.889 34.2779C107.889 34.889 108.056 35.389 108.389 35.7779C108.722 36.1668 109.167 36.389 109.722 36.389C110.278 36.389 110.5 36.2779 110.778 36.0557C111.056 35.8335 111.222 35.5557 111.333 35.1668H112.222C112.111 35.7779 111.833 36.2779 111.389 36.6668C110.945 37.0001 110.389 37.2224 109.722 37.2224L109.667 37.2779Z",
1134
1425
  fill: "#141414"
1135
1426
  }
1136
1427
  ),
1137
- /* @__PURE__ */ jsx9(
1428
+ /* @__PURE__ */ jsx10(
1138
1429
  "path",
1139
1430
  {
1140
1431
  d: "M113.278 35.8891C113.056 35.4447 112.945 34.9447 112.945 34.3891C112.945 33.8336 113.056 33.3336 113.278 32.8891C113.5 32.4447 113.833 32.1114 114.278 31.8891C114.722 31.6669 115.167 31.5002 115.722 31.5002C116.278 31.5002 116.778 31.6114 117.167 31.8891C117.611 32.1114 117.945 32.5002 118.167 32.8891C118.389 33.3336 118.5 33.8336 118.5 34.3891C118.5 34.9447 118.389 35.4447 118.167 35.8891C117.945 36.3336 117.611 36.6669 117.167 36.8891C116.722 37.1114 116.278 37.278 115.722 37.278C115.167 37.278 114.667 37.1669 114.278 36.8891C113.889 36.6114 113.5 36.278 113.278 35.8891ZM117.333 35.4447C117.5 35.1114 117.556 34.778 117.556 34.3891C117.556 34.0002 117.5 33.6114 117.333 33.3336C117.167 33.0002 116.945 32.778 116.667 32.6114C116.389 32.4447 116.056 32.3336 115.667 32.3336C115.278 32.3336 114.945 32.4447 114.667 32.6114C114.389 32.778 114.167 33.0558 114 33.3336C113.833 33.6669 113.778 34.0002 113.778 34.3891C113.778 34.778 113.833 35.1669 114 35.4447C114.167 35.778 114.389 36.0002 114.667 36.1669C114.945 36.3336 115.278 36.4447 115.667 36.4447C116.056 36.4447 116.389 36.3336 116.667 36.1669C116.945 36.0002 117.167 35.7225 117.333 35.4447Z",
1141
1432
  fill: "#141414"
1142
1433
  }
1143
1434
  ),
1144
- /* @__PURE__ */ jsx9(
1435
+ /* @__PURE__ */ jsx10(
1145
1436
  "path",
1146
1437
  {
1147
1438
  d: "M128.056 33.9446V37.2224H127.167V34.0001C127.167 33.4446 127.056 33.0557 126.833 32.7224C126.611 32.4446 126.278 32.2779 125.833 32.2779C125.389 32.2779 125 32.4446 124.722 32.7779C124.445 33.1112 124.333 33.5557 124.333 34.1668V37.2224H123.445V34.0001C123.445 33.4446 123.333 33.0557 123.111 32.7224C122.889 32.4446 122.556 32.2779 122.111 32.2779C121.667 32.2779 121.278 32.4446 121 32.7779C120.722 33.1112 120.611 33.6112 120.611 34.1668V37.1668H119.722V31.5001H120.5L120.611 32.2779C121 31.7224 121.556 31.4446 122.278 31.4446C123 31.4446 123.056 31.5557 123.389 31.7224C123.722 31.889 123.945 32.1668 124.111 32.5557C124.5 31.8335 125.167 31.5001 126.056 31.5001C126.945 31.5001 127.222 31.7224 127.611 32.1112C128 32.5001 128.222 33.1112 128.222 34.0001L128.056 33.9446Z",
1148
1439
  fill: "#141414"
1149
1440
  }
1150
1441
  ),
1151
- /* @__PURE__ */ jsx9(
1442
+ /* @__PURE__ */ jsx10(
1152
1443
  "path",
1153
1444
  {
1154
1445
  d: "M134.556 29.4446H135.722L138.667 37.2224H137.611L136.778 35.1112H133.389L132.556 37.2224H131.556L134.5 29.4446H134.556ZM136.556 34.2224L135.167 30.5001L133.778 34.2224H136.611H136.556Z",
1155
1446
  fill: "#141414"
1156
1447
  }
1157
1448
  ),
1158
- /* @__PURE__ */ jsx9(
1449
+ /* @__PURE__ */ jsx10(
1159
1450
  "path",
1160
1451
  {
1161
1452
  d: "M144.111 37.2223H143.333L143.222 36.4446C142.778 37.0001 142.167 37.2779 141.389 37.2779C140.611 37.2779 140.167 37.0557 139.778 36.6668C139.389 36.2779 139.167 35.6112 139.167 34.7223V31.5557H140.056V34.6668C140.056 35.2779 140.167 35.7223 140.445 36.0001C140.722 36.3334 141.056 36.4446 141.556 36.4446C142.056 36.4446 142.5 36.2779 142.778 35.889C143.056 35.5001 143.222 35.0001 143.222 34.389V31.5557H144.111V37.2223Z",
1162
1453
  fill: "#141414"
1163
1454
  }
1164
1455
  ),
1165
- /* @__PURE__ */ jsx9(
1456
+ /* @__PURE__ */ jsx10(
1166
1457
  "path",
1167
1458
  {
1168
1459
  d: "M144.722 32.389V31.5557H145.722V29.9446H146.611V31.5557H148.056V32.389H146.611V35.7224C146.611 35.9446 146.611 36.1112 146.722 36.2224C146.833 36.3335 147 36.389 147.222 36.389H148.222V37.2224H147.167C146.611 37.2224 146.278 37.1112 146 36.889C145.778 36.6668 145.667 36.2779 145.667 35.7779V32.4446H144.667L144.722 32.389Z",
1169
1460
  fill: "#141414"
1170
1461
  }
1171
1462
  ),
1172
- /* @__PURE__ */ jsx9(
1463
+ /* @__PURE__ */ jsx10(
1173
1464
  "path",
1174
1465
  {
1175
1466
  d: "M154 34.0557V37.2224H153.111V34.1112C153.111 33.5001 153 33.0557 152.722 32.7779C152.445 32.4446 152.056 32.3335 151.556 32.3335C151.056 32.3335 150.611 32.5001 150.333 32.889C150 33.2779 149.889 33.7779 149.889 34.389V37.2224H149V29.4446H149.889V32.5001C150.056 32.2224 150.333 31.9446 150.611 31.7779C150.945 31.6112 151.278 31.5001 151.722 31.5001C152.389 31.5001 152.945 31.7224 153.389 32.1112C153.833 32.5001 154 33.1668 154 34.0557Z",
1176
1467
  fill: "#141414"
1177
1468
  }
1178
1469
  ),
1179
- /* @__PURE__ */ jsx9(
1470
+ /* @__PURE__ */ jsx10(
1180
1471
  "path",
1181
1472
  {
1182
1473
  d: "M155.333 35.8891C155.111 35.4447 155 34.9447 155 34.3891C155 33.8336 155.111 33.3336 155.333 32.8891C155.556 32.4447 155.889 32.1114 156.333 31.8891C156.778 31.6669 157.222 31.5002 157.778 31.5002C158.333 31.5002 158.833 31.6114 159.222 31.8891C159.667 32.1114 160 32.5002 160.222 32.8891C160.445 33.3336 160.556 33.8336 160.556 34.3891C160.556 34.9447 160.445 35.4447 160.222 35.8891C160 36.3336 159.667 36.6669 159.222 36.8891C158.778 37.1114 158.333 37.278 157.778 37.278C157.222 37.278 156.722 37.1669 156.333 36.8891C155.945 36.6114 155.556 36.278 155.333 35.8891ZM159.445 35.4447C159.611 35.1114 159.667 34.778 159.667 34.3891C159.667 34.0002 159.611 33.6114 159.445 33.3336C159.278 33.0002 159.056 32.778 158.778 32.6114C158.5 32.4447 158.167 32.3336 157.778 32.3336C157.389 32.3336 157.056 32.4447 156.778 32.6114C156.5 32.778 156.278 33.0558 156.111 33.3336C155.945 33.6669 155.889 34.0002 155.889 34.3891C155.889 34.778 155.945 35.1669 156.111 35.4447C156.278 35.778 156.5 36.0002 156.778 36.1669C157.056 36.3336 157.389 36.4447 157.778 36.4447C158.167 36.4447 158.5 36.3336 158.778 36.1669C159.056 36.0002 159.278 35.7225 159.445 35.4447Z",
1183
1474
  fill: "#141414"
1184
1475
  }
1185
1476
  ),
1186
- /* @__PURE__ */ jsx9(
1477
+ /* @__PURE__ */ jsx10(
1187
1478
  "path",
1188
1479
  {
1189
1480
  d: "M164.5 32.4446H164.056C163.5 32.4446 163.111 32.6112 162.889 33.0001C162.667 33.389 162.556 33.8334 162.556 34.3334V37.2223H161.667V31.5557H162.445L162.556 32.389C162.722 32.1112 162.945 31.9446 163.167 31.7779C163.445 31.6112 163.778 31.5557 164.222 31.5557H164.5V32.4446Z",
1190
1481
  fill: "#141414"
1191
1482
  }
1192
1483
  ),
1193
- /* @__PURE__ */ jsx9(
1484
+ /* @__PURE__ */ jsx10(
1194
1485
  "path",
1195
1486
  {
1196
1487
  d: "M166.389 29.9446C166.389 30.1113 166.333 30.2779 166.222 30.3891C166.111 30.5002 165.945 30.5557 165.778 30.5557C165.611 30.5557 165.445 30.5002 165.333 30.3891C165.222 30.2779 165.167 30.1113 165.167 29.9446C165.167 29.7779 165.222 29.6113 165.333 29.5002C165.445 29.3891 165.611 29.3335 165.778 29.3335C165.945 29.3335 166.111 29.3891 166.222 29.5002C166.333 29.6113 166.389 29.7779 166.389 29.9446ZM166.278 31.5557V37.2224H165.389V31.5557H166.278Z",
1197
1488
  fill: "#141414"
1198
1489
  }
1199
1490
  ),
1200
- /* @__PURE__ */ jsx9(
1491
+ /* @__PURE__ */ jsx10(
1201
1492
  "path",
1202
1493
  {
1203
1494
  d: "M166.833 32.389V31.5557H167.833V29.9446H168.722V31.5557H170.167V32.389H168.722V35.7224C168.722 35.9446 168.722 36.1112 168.833 36.2224C168.944 36.3335 169.111 36.389 169.333 36.389H170.333V37.2224H169.278C168.722 37.2224 168.389 37.1112 168.111 36.889C167.889 36.6668 167.778 36.2779 167.778 35.7779V32.4446H166.778L166.833 32.389Z",
1204
1495
  fill: "#141414"
1205
1496
  }
1206
1497
  ),
1207
- /* @__PURE__ */ jsx9(
1498
+ /* @__PURE__ */ jsx10(
1208
1499
  "path",
1209
1500
  {
1210
1501
  d: "M173.167 36.1668L174.833 31.5557H175.778L173.167 38.1668C173.056 38.5001 172.889 38.7779 172.833 38.9446C172.778 39.1112 172.611 39.2223 172.445 39.3334C172.278 39.389 172.056 39.4446 171.833 39.4446H170.722V38.6112H171.556C171.722 38.6112 171.889 38.6112 171.945 38.5557C172 38.5001 172.111 38.4446 172.167 38.389C172.167 38.2779 172.278 38.1668 172.389 37.9446L172.667 37.2779L170.445 31.5557H171.389L173.111 36.1668H173.167Z",
@@ -1214,7 +1505,7 @@ var Logo_en = () => /* @__PURE__ */ jsxs9("svg", { width: "189.0", height: "46.6
1214
1505
  ] });
1215
1506
 
1216
1507
  // src/NewTextComponentStandard/HeaderStandard/HeaderStandard.tsx
1217
- import { jsx as jsx10, jsxs as jsxs10 } from "react/jsx-runtime";
1508
+ import { jsx as jsx11, jsxs as jsxs11 } from "react/jsx-runtime";
1218
1509
  var Header = ({ activatedLanguage = "sv", useLanguage = true, SetActivatedLanguage = () => {
1219
1510
  } }) => {
1220
1511
  const logoLink = activatedLanguage === "en" ? "https://pts.se/en" : "https://pts.se/";
@@ -1229,26 +1520,26 @@ var Header = ({ activatedLanguage = "sv", useLanguage = true, SetActivatedLangua
1229
1520
  if (activatedLanguage === "sv") return "English";
1230
1521
  else return "Svenska";
1231
1522
  };
1232
- return /* @__PURE__ */ jsxs10("div", { className: "pts-header-container", children: [
1233
- /* @__PURE__ */ jsx10(
1523
+ return /* @__PURE__ */ jsxs11("div", { className: "pts-header-container", children: [
1524
+ /* @__PURE__ */ jsx11(
1234
1525
  "a",
1235
1526
  {
1236
1527
  className: "pts-header-logo",
1237
1528
  href: logoLink,
1238
1529
  target: "_blank",
1239
1530
  "aria-label": activatedLanguage === "en" ? "PTS logotype (to the homepage on pts.se, opens in new tab)" : "PTS logotyp (till startsidan p\xE5 pts.se, \xF6ppnas i ny flik)",
1240
- children: activatedLanguage === "en" ? /* @__PURE__ */ jsx10("span", { "aria-hidden": "true", children: /* @__PURE__ */ jsx10(Logo_en, {}) }) : /* @__PURE__ */ jsx10("span", { "aria-hidden": "true", children: /* @__PURE__ */ jsx10(Logo_sv, {}) })
1531
+ children: activatedLanguage === "en" ? /* @__PURE__ */ jsx11("span", { "aria-hidden": "true", children: /* @__PURE__ */ jsx11(Logo_en, {}) }) : /* @__PURE__ */ jsx11("span", { "aria-hidden": "true", children: /* @__PURE__ */ jsx11(Logo_sv, {}) })
1241
1532
  }
1242
1533
  ),
1243
- useLanguage && /* @__PURE__ */ jsxs10(
1534
+ useLanguage && /* @__PURE__ */ jsxs11(
1244
1535
  "button",
1245
1536
  {
1246
1537
  "aria-label": activatedLanguage === "en" ? "Change language to Svenska" : "\xC4ndra spr\xE5k till English",
1247
1538
  className: "pts-languageButton",
1248
1539
  onClick: handleLanguageClick,
1249
1540
  children: [
1250
- /* @__PURE__ */ jsx10("span", { "aria-hidden": "true", children: /* @__PURE__ */ jsx10(LanguageIcon, {}) }),
1251
- /* @__PURE__ */ jsx10("span", { className: "pts-languageButton", children: getLanguageLabel() })
1541
+ /* @__PURE__ */ jsx11("span", { "aria-hidden": "true", children: /* @__PURE__ */ jsx11(LanguageIcon, {}) }),
1542
+ /* @__PURE__ */ jsx11("span", { className: "pts-languageButton", children: getLanguageLabel() })
1252
1543
  ]
1253
1544
  }
1254
1545
  )
@@ -1257,9 +1548,9 @@ var Header = ({ activatedLanguage = "sv", useLanguage = true, SetActivatedLangua
1257
1548
  var HeaderStandard_default = Header;
1258
1549
 
1259
1550
  // src/NewTextComponentStandard/InfoOnlyStandard/InfoOnlyStandard.tsx
1260
- import { useEffect as useEffect2 } from "react";
1551
+ import { useEffect as useEffect3 } from "react";
1261
1552
  import DOMPurify3 from "dompurify";
1262
- import { Fragment as Fragment7, jsx as jsx11, jsxs as jsxs11 } from "react/jsx-runtime";
1553
+ import { Fragment as Fragment7, jsx as jsx12, jsxs as jsxs12 } from "react/jsx-runtime";
1263
1554
  var cleanText = (text) => DOMPurify3.sanitize(text, { ADD_ATTR: ["target", "class"] });
1264
1555
  var InfoOnly = ({
1265
1556
  questionObject,
@@ -1271,7 +1562,7 @@ var InfoOnly = ({
1271
1562
  tabIndex = -1,
1272
1563
  activatedLanguage = "sv"
1273
1564
  }) => {
1274
- useEffect2(() => {
1565
+ useEffect3(() => {
1275
1566
  handleSeenText(questionObject);
1276
1567
  }, []);
1277
1568
  const handleSeenText = (questionObject2) => {
@@ -1279,8 +1570,8 @@ var InfoOnly = ({
1279
1570
  const e = { target: { value: questionObject2.questionLabel + avoidBugInRedux } };
1280
1571
  isTouched(e, questionObject2);
1281
1572
  };
1282
- return /* @__PURE__ */ jsxs11(Fragment7, { children: [
1283
- showConfigure && visible && /* @__PURE__ */ jsx11("div", { className: "pts-infoOnly-container", children: /* @__PURE__ */ jsx11("div", { className: "InfoOnlyText", tabIndex, children: questionObject.questionLabel && /* @__PURE__ */ jsx11(
1573
+ return /* @__PURE__ */ jsxs12(Fragment7, { children: [
1574
+ showConfigure && visible && /* @__PURE__ */ jsx12("div", { className: "pts-infoOnly-container", children: /* @__PURE__ */ jsx12("div", { className: "InfoOnlyText", tabIndex, children: questionObject.questionLabel && /* @__PURE__ */ jsx12(
1284
1575
  "p",
1285
1576
  {
1286
1577
  dangerouslySetInnerHTML: {
@@ -1288,12 +1579,12 @@ var InfoOnly = ({
1288
1579
  }
1289
1580
  }
1290
1581
  ) }) }),
1291
- showPreview && /* @__PURE__ */ jsx11(PreviewInfoOnly, { questionObject })
1582
+ showPreview && /* @__PURE__ */ jsx12(PreviewInfoOnly, { questionObject })
1292
1583
  ] });
1293
1584
  };
1294
1585
  var InfoOnlyStandard_default = InfoOnly;
1295
1586
  var PreviewInfoOnly = ({ questionObject }) => {
1296
- return /* @__PURE__ */ jsx11(Fragment7, { children: questionObject.answer && /* @__PURE__ */ jsx11("div", { className: "pts-infoOnly-preview", children: /* @__PURE__ */ jsx11("div", { className: "InfoOnlyText", children: /* @__PURE__ */ jsx11(
1587
+ return /* @__PURE__ */ jsx12(Fragment7, { children: questionObject.answer && /* @__PURE__ */ jsx12("div", { className: "pts-infoOnly-preview", children: /* @__PURE__ */ jsx12("div", { className: "InfoOnlyText", children: /* @__PURE__ */ jsx12(
1297
1588
  "p",
1298
1589
  {
1299
1590
  dangerouslySetInnerHTML: {
@@ -1304,7 +1595,7 @@ var PreviewInfoOnly = ({ questionObject }) => {
1304
1595
  };
1305
1596
 
1306
1597
  // src/NewTextComponentStandard/ModalStandard/ModalStandard.tsx
1307
- import { jsx as jsx12, jsxs as jsxs12 } from "react/jsx-runtime";
1598
+ import { jsx as jsx13, jsxs as jsxs13 } from "react/jsx-runtime";
1308
1599
  var CONTENT = {
1309
1600
  en: {
1310
1601
  heading: "Please wait",
@@ -1318,24 +1609,24 @@ var CONTENT = {
1318
1609
  var Modal = ({ showModal: isOpen, activatedLanguage = "" }) => {
1319
1610
  const currentContent = activatedLanguage === "en" ? CONTENT.en : CONTENT.sv;
1320
1611
  if (!isOpen) return null;
1321
- return /* @__PURE__ */ jsx12("div", { className: "pts-modal-overlay", children: /* @__PURE__ */ jsxs12("div", { className: "pts-modal-content", children: [
1322
- /* @__PURE__ */ jsx12("h1", { children: currentContent.heading }),
1323
- /* @__PURE__ */ jsx12("p", { children: currentContent.message }),
1324
- /* @__PURE__ */ jsx12("div", { className: "pts-spinner-border" })
1612
+ return /* @__PURE__ */ jsx13("div", { className: "pts-modal-overlay", children: /* @__PURE__ */ jsxs13("div", { className: "pts-modal-content", children: [
1613
+ /* @__PURE__ */ jsx13("h1", { children: currentContent.heading }),
1614
+ /* @__PURE__ */ jsx13("p", { children: currentContent.message }),
1615
+ /* @__PURE__ */ jsx13("div", { className: "pts-spinner-border" })
1325
1616
  ] }) });
1326
1617
  };
1327
1618
  var ModalStandard_default = Modal;
1328
1619
 
1329
1620
  // src/NewTextComponentStandard/TextHeadlineAndBodyStandard/TextHeadlineAndBodyStandard.tsx
1330
1621
  import DOMPurify4 from "dompurify";
1331
- import { jsx as jsx13, jsxs as jsxs13 } from "react/jsx-runtime";
1622
+ import { jsx as jsx14, jsxs as jsxs14 } from "react/jsx-runtime";
1332
1623
  var TextHeadlineAndBody = ({ data, headlineType = "h2" }) => {
1333
1624
  const HeadlineTag = headlineType;
1334
- return /* @__PURE__ */ jsxs13("section", { className: "pts-textHeadlineAndBody-container", children: [
1335
- data.headline && /* @__PURE__ */ jsx13(HeadlineTag, { children: data.headline }),
1336
- data.body && /* @__PURE__ */ jsx13("div", { dangerouslySetInnerHTML: { __html: DOMPurify4.sanitize(data.body) } }),
1337
- data.linksForMoreInfo && data.linksForMoreInfo.length > 0 && /* @__PURE__ */ jsx13("ul", { className: "pts-moreinfo-list", children: data.linksForMoreInfo.map((link, index) => /* @__PURE__ */ jsx13("li", { className: index > 0 ? "notFirstInList" : "", children: /* @__PURE__ */ jsxs13("a", { href: link.url, target: "_blank", rel: "noopener noreferrer", "aria-label": link.ariaLabel, children: [
1338
- /* @__PURE__ */ jsx13("span", { className: "MoreInfoIcon", children: /* @__PURE__ */ jsx13(
1625
+ return /* @__PURE__ */ jsxs14("section", { className: "pts-textHeadlineAndBody-container", children: [
1626
+ data.headline && /* @__PURE__ */ jsx14(HeadlineTag, { children: data.headline }),
1627
+ data.body && /* @__PURE__ */ jsx14("div", { dangerouslySetInnerHTML: { __html: DOMPurify4.sanitize(data.body) } }),
1628
+ data.linksForMoreInfo && data.linksForMoreInfo.length > 0 && /* @__PURE__ */ jsx14("ul", { className: "pts-moreinfo-list", children: data.linksForMoreInfo.map((link, index) => /* @__PURE__ */ jsx14("li", { className: index > 0 ? "notFirstInList" : "", children: /* @__PURE__ */ jsxs14("a", { href: link.url, target: "_blank", rel: "noopener noreferrer", "aria-label": link.ariaLabel, children: [
1629
+ /* @__PURE__ */ jsx14("span", { className: "MoreInfoIcon", children: /* @__PURE__ */ jsx14(
1339
1630
  "svg",
1340
1631
  {
1341
1632
  "aria-hidden": "true",
@@ -1344,7 +1635,7 @@ var TextHeadlineAndBody = ({ data, headlineType = "h2" }) => {
1344
1635
  height: "10",
1345
1636
  viewBox: "0 0 12 10",
1346
1637
  fill: "none",
1347
- children: /* @__PURE__ */ jsx13(
1638
+ children: /* @__PURE__ */ jsx14(
1348
1639
  "path",
1349
1640
  {
1350
1641
  d: "M6.00001 9.63253L5.10321 8.82184L8.62749 5.57905H0.965332V4.42091H8.62749L5.10321 1.17813L6.00001 0.367432L11.0347 4.99998L6.00001 9.63253Z",
@@ -1360,7 +1651,7 @@ var TextHeadlineAndBody = ({ data, headlineType = "h2" }) => {
1360
1651
  var TextHeadlineAndBodyStandard_default = TextHeadlineAndBody;
1361
1652
 
1362
1653
  // src/NewTextComponentStandard/PrincipleOfPublicityStandard/PrincipleOfPublicityStandard.tsx
1363
- import { jsx as jsx14 } from "react/jsx-runtime";
1654
+ import { jsx as jsx15 } from "react/jsx-runtime";
1364
1655
  var CONTENT2 = {
1365
1656
  en: {
1366
1657
  headline: "The principle of publicity and processing of personal data",
@@ -1395,7 +1686,7 @@ var CONTENT2 = {
1395
1686
  };
1396
1687
  var PrincipleOfPublicity = ({ activatedLanguage = "" }) => {
1397
1688
  const currentContent = activatedLanguage === "en" ? CONTENT2.en : CONTENT2.sv;
1398
- return /* @__PURE__ */ jsx14(
1689
+ return /* @__PURE__ */ jsx15(
1399
1690
  TextHeadlineAndBodyStandard_default,
1400
1691
  {
1401
1692
  data: {
@@ -1415,13 +1706,13 @@ var PrincipleOfPublicityStandard_default = PrincipleOfPublicity;
1415
1706
 
1416
1707
  // src/NewTextComponentStandard/ServiceHeadlineAndBodyStandard/ServiceHeadlineAndBodyStandard.tsx
1417
1708
  import DOMPurify5 from "dompurify";
1418
- import { jsx as jsx15, jsxs as jsxs14 } from "react/jsx-runtime";
1709
+ import { jsx as jsx16, jsxs as jsxs15 } from "react/jsx-runtime";
1419
1710
  var ServiceHeadlineAndBody = ({ data, activeStep = 1 }) => {
1420
- return /* @__PURE__ */ jsxs14("div", { className: "pts-serviceHeadlineAndBody-container", children: [
1421
- data.mainHeadline && /* @__PURE__ */ jsx15("h1", { id: "pts-main-service-headline", children: data.mainHeadline }),
1422
- activeStep === 1 && data.ingressBody && /* @__PURE__ */ jsx15("div", { dangerouslySetInnerHTML: { __html: DOMPurify5.sanitize(data.ingressBody) } }),
1423
- activeStep === 1 && data.linksForMoreInfo && data.linksForMoreInfo.length > 0 && /* @__PURE__ */ jsx15("ul", { className: "pts-moreinfo-list", children: data.linksForMoreInfo.map((moreInfo, index) => /* @__PURE__ */ jsx15("li", { className: index > 0 ? "notFirstInList" : "", children: /* @__PURE__ */ jsxs14("a", { href: moreInfo.url, target: "_blank", rel: "noopener noreferrer", children: [
1424
- /* @__PURE__ */ jsx15(
1711
+ return /* @__PURE__ */ jsxs15("div", { className: "pts-serviceHeadlineAndBody-container", children: [
1712
+ data.mainHeadline && /* @__PURE__ */ jsx16("h1", { id: "pts-main-service-headline", children: data.mainHeadline }),
1713
+ activeStep === 1 && data.ingressBody && /* @__PURE__ */ jsx16("div", { dangerouslySetInnerHTML: { __html: DOMPurify5.sanitize(data.ingressBody) } }),
1714
+ activeStep === 1 && data.linksForMoreInfo && data.linksForMoreInfo.length > 0 && /* @__PURE__ */ jsx16("ul", { className: "pts-moreinfo-list", children: data.linksForMoreInfo.map((moreInfo, index) => /* @__PURE__ */ jsx16("li", { className: index > 0 ? "notFirstInList" : "", children: /* @__PURE__ */ jsxs15("a", { href: moreInfo.url, target: "_blank", rel: "noopener noreferrer", children: [
1715
+ /* @__PURE__ */ jsx16(
1425
1716
  "svg",
1426
1717
  {
1427
1718
  xmlns: "http://www.w3.org/2000/svg",
@@ -1430,7 +1721,7 @@ var ServiceHeadlineAndBody = ({ data, activeStep = 1 }) => {
1430
1721
  viewBox: "0 0 12 10",
1431
1722
  fill: "none",
1432
1723
  "aria-hidden": "true",
1433
- children: /* @__PURE__ */ jsx15(
1724
+ children: /* @__PURE__ */ jsx16(
1434
1725
  "path",
1435
1726
  {
1436
1727
  d: "M6.00001 9.63253L5.10321 8.82184L8.62749 5.57905H0.965332V4.42091H8.62749L5.10321 1.17813L6.00001 0.367432L11.0347 4.99998L6.00001 9.63253Z",
@@ -1439,21 +1730,21 @@ var ServiceHeadlineAndBody = ({ data, activeStep = 1 }) => {
1439
1730
  )
1440
1731
  }
1441
1732
  ),
1442
- /* @__PURE__ */ jsx15("span", { className: "pts-moreinfo-link-text", children: moreInfo.title })
1733
+ /* @__PURE__ */ jsx16("span", { className: "pts-moreinfo-link-text", children: moreInfo.title })
1443
1734
  ] }) }, moreInfo.title + index)) })
1444
1735
  ] });
1445
1736
  };
1446
1737
  var ServiceHeadlineAndBodyStandard_default = ServiceHeadlineAndBody;
1447
1738
 
1448
1739
  // src/NewTextComponentStandard/SkipLinkStandard/SkipLinkStandard.tsx
1449
- import { jsx as jsx16 } from "react/jsx-runtime";
1740
+ import { jsx as jsx17 } from "react/jsx-runtime";
1450
1741
  var SkipLink = () => {
1451
- return /* @__PURE__ */ jsx16("div", { className: "pts-skipLink-container", children: /* @__PURE__ */ jsx16("a", { href: "#main-content", children: "Till huvudinneh\xE5ll" }) });
1742
+ return /* @__PURE__ */ jsx17("div", { className: "pts-skipLink-container", children: /* @__PURE__ */ jsx17("a", { href: "#main-content", children: "Till huvudinneh\xE5ll" }) });
1452
1743
  };
1453
1744
  var SkipLinkStandard_default = SkipLink;
1454
1745
 
1455
1746
  // src/NewTextComponentStandard/StepperButtonsStandard/StepperButtonsStandard.tsx
1456
- import { jsx as jsx17, jsxs as jsxs15 } from "react/jsx-runtime";
1747
+ import { jsx as jsx18, jsxs as jsxs16 } from "react/jsx-runtime";
1457
1748
  var StepperButtons = ({
1458
1749
  languageSupported,
1459
1750
  handleActiveStep,
@@ -1463,9 +1754,9 @@ var StepperButtons = ({
1463
1754
  activeStep
1464
1755
  }) => {
1465
1756
  const totalSteps = arraySteps ? arraySteps.length : "";
1466
- return /* @__PURE__ */ jsxs15("div", { className: "pts-stepperButtons-container", children: [
1467
- activeStep !== 1 && /* @__PURE__ */ jsx17("button", { onClick: () => handleActiveStep(activeStep - 1), className: "pts-backButton", type: "button", children: languageSupported ? languageSupported.backButton : "<<" }),
1468
- /* @__PURE__ */ jsxs15(
1757
+ return /* @__PURE__ */ jsxs16("div", { className: "pts-stepperButtons-container", children: [
1758
+ activeStep !== 1 && /* @__PURE__ */ jsx18("button", { onClick: () => handleActiveStep(activeStep - 1), className: "pts-backButton", type: "button", children: languageSupported ? languageSupported.backButton : "<<" }),
1759
+ /* @__PURE__ */ jsxs16(
1469
1760
  "button",
1470
1761
  {
1471
1762
  type: activeStep === totalSteps ? "submit" : "button",
@@ -1482,20 +1773,20 @@ var StepperButtons = ({
1482
1773
  var StepperButtonsStandard_default = StepperButtons;
1483
1774
 
1484
1775
  // src/NewTextComponentStandard/StepperStandard/StepperStandard.tsx
1485
- import React3 from "react";
1486
- import { jsx as jsx18, jsxs as jsxs16 } from "react/jsx-runtime";
1776
+ import React4 from "react";
1777
+ import { jsx as jsx19, jsxs as jsxs17 } from "react/jsx-runtime";
1487
1778
  var Stepper = ({ arraySteps = [], activeStep = 1 }) => {
1488
- return /* @__PURE__ */ jsx18("div", { className: "pts-stepper-container", "aria-hidden": "true", children: arraySteps.map((step, index) => {
1779
+ return /* @__PURE__ */ jsx19("div", { className: "pts-stepper-container", "aria-hidden": "true", children: arraySteps.map((step, index) => {
1489
1780
  const isActive = step.step === activeStep;
1490
1781
  const lastElement = arraySteps.length;
1491
1782
  const isDone = step.step < activeStep;
1492
- return /* @__PURE__ */ jsxs16(React3.Fragment, { children: [
1493
- /* @__PURE__ */ jsxs16("div", { className: "pts-stepper-step", children: [
1494
- /* @__PURE__ */ jsx18(
1783
+ return /* @__PURE__ */ jsxs17(React4.Fragment, { children: [
1784
+ /* @__PURE__ */ jsxs17("div", { className: "pts-stepper-step", children: [
1785
+ /* @__PURE__ */ jsx19(
1495
1786
  "div",
1496
1787
  {
1497
1788
  className: "pts-stepperDot" + (isActive ? " pts-stepperDotActive" : "") + (isDone ? " pts-stepperDotDone" : ""),
1498
- children: isDone ? /* @__PURE__ */ jsx18(
1789
+ children: isDone ? /* @__PURE__ */ jsx19(
1499
1790
  "svg",
1500
1791
  {
1501
1792
  xmlns: "http://www.w3.org/2000/svg",
@@ -1503,7 +1794,7 @@ var Stepper = ({ arraySteps = [], activeStep = 1 }) => {
1503
1794
  height: "12",
1504
1795
  viewBox: "0 0 15 12",
1505
1796
  fill: "none",
1506
- children: /* @__PURE__ */ jsx18(
1797
+ children: /* @__PURE__ */ jsx19(
1507
1798
  "path",
1508
1799
  {
1509
1800
  d: "M1.5 5.4375L4.875 10.3125L13.5 1.6875",
@@ -1516,9 +1807,9 @@ var Stepper = ({ arraySteps = [], activeStep = 1 }) => {
1516
1807
  ) : step.step
1517
1808
  }
1518
1809
  ),
1519
- /* @__PURE__ */ jsx18("div", { className: "pts-shortNameInStepper", children: step.shortNameInStepper })
1810
+ /* @__PURE__ */ jsx19("div", { className: "pts-shortNameInStepper", children: step.shortNameInStepper })
1520
1811
  ] }, index),
1521
- step.step !== lastElement && /* @__PURE__ */ jsx18("div", { className: "pts-stepperLine" })
1812
+ step.step !== lastElement && /* @__PURE__ */ jsx19("div", { className: "pts-stepperLine" })
1522
1813
  ] }, `step-${step.step}`);
1523
1814
  }) });
1524
1815
  };
@@ -1527,6 +1818,7 @@ export {
1527
1818
  CreateApiDataObject_default as CreateApiDataObject,
1528
1819
  DoCategoriesAndQuestionsVisible_default as DoCategoriesAndQuestionsVisible,
1529
1820
  EditPreviewLinkStandard_default as EditPreviewLinkStandard,
1821
+ FilesUploadStandard_default as FilesUploadStandard,
1530
1822
  FooterStandard_default as FooterStandard,
1531
1823
  GroupQuestionByStepPreviewPage_default as GroupQuestionByStepPreviewPage,
1532
1824
  GroupQuestionsByStepCategoryGroup_default as GroupQuestionsByStepCategoryGroup,