pixel-react 1.3.9 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (148) hide show
  1. package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
  2. package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
  3. package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
  4. package/lib/components/AddButton/AddButton.d.ts +5 -0
  5. package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
  6. package/lib/components/AddButton/index.d.ts +1 -0
  7. package/lib/components/AddButton/types.d.ts +4 -0
  8. package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
  9. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
  10. package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
  11. package/lib/components/AttachImage/AttachImage.stories.d.ts +7 -0
  12. package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
  13. package/lib/components/Avatar/Avatar.stories.d.ts +10 -0
  14. package/lib/components/Button/Button.stories.d.ts +13 -0
  15. package/lib/components/Charts/BarChart/BarChart.stories.d.ts +6 -0
  16. package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
  17. package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
  18. package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
  19. package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
  20. package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -0
  21. package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
  22. package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
  23. package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
  24. package/lib/components/Chip/Chip.stories.d.ts +14 -0
  25. package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
  26. package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
  27. package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
  28. package/lib/components/Drawer/Drawer.stories.d.ts +12 -0
  29. package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
  30. package/lib/components/Editor/Editor.stories.d.ts +6 -0
  31. package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
  32. package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
  33. package/lib/components/ExcelFile/ColorBarSelector/ColorBarSelector.d.ts +8 -0
  34. package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
  35. package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
  36. package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
  37. package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
  38. package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
  39. package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
  40. package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
  41. package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
  42. package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
  43. package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
  44. package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
  45. package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
  46. package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
  47. package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
  48. package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
  49. package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +174 -0
  50. package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
  51. package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
  52. package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
  53. package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
  54. package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
  55. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
  56. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
  57. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
  58. package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
  59. package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
  60. package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
  61. package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
  62. package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
  63. package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
  64. package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
  65. package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
  66. package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
  67. package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +44 -0
  68. package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +19 -0
  69. package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
  70. package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +12 -0
  71. package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +15 -0
  72. package/lib/components/ExcelFile/ImportExcelStyles.d.ts +24 -0
  73. package/lib/components/ExcelFile/Types.d.ts +129 -0
  74. package/lib/components/ExcelFile/index.d.ts +1 -0
  75. package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
  76. package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
  77. package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
  78. package/lib/components/Form/Form.stories.d.ts +7 -0
  79. package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
  80. package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
  81. package/lib/components/Icon/Icon.stories.d.ts +8 -0
  82. package/lib/components/IconButton/IconButton.stories.d.ts +7 -0
  83. package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
  84. package/lib/components/Input/Input.stories.d.ts +9 -0
  85. package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +9 -0
  86. package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +13 -0
  87. package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
  88. package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
  89. package/lib/components/MenuOption/MenuOption.stories.d.ts +16 -0
  90. package/lib/components/MiniModal/MiniModal.stories.d.ts +10 -0
  91. package/lib/components/Modal/Modal.stories.d.ts +7 -0
  92. package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
  93. package/lib/components/MultiSelect/MultiSelect.stories.d.ts +11 -0
  94. package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
  95. package/lib/components/Paper/Paper.stories.d.ts +11 -0
  96. package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
  97. package/lib/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
  98. package/lib/components/Search/Search.stories.d.ts +6 -0
  99. package/lib/components/Select/Select.stories.d.ts +14 -0
  100. package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
  101. package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +17 -0
  102. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
  103. package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
  104. package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
  105. package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -0
  106. package/lib/components/Table/Table.stories.d.ts +13 -0
  107. package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
  108. package/lib/components/Tabs/Tabs.stories.d.ts +9 -0
  109. package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
  110. package/lib/components/Toast/Toast.stories.d.ts +6 -0
  111. package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
  112. package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
  113. package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
  114. package/lib/components/Typography/Typography.stories.d.ts +10 -0
  115. package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
  116. package/lib/index.d.ts +3 -1
  117. package/lib/index.esm.js +80 -44
  118. package/lib/index.esm.js.map +1 -1
  119. package/lib/index.js +80 -43
  120. package/lib/index.js.map +1 -1
  121. package/lib/tsconfig.tsbuildinfo +1 -1
  122. package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
  123. package/lib/utils/compareArrays/compareArrays.stories.d.ts +6 -0
  124. package/lib/utils/compareObjects/compareObjects.stories.d.ts +6 -0
  125. package/lib/utils/debounce/debounce.stories.d.ts +6 -0
  126. package/lib/utils/downloadFile/saveFileFromBlob.d.ts +1 -0
  127. package/lib/utils/ffID/ffID.stories.d.ts +6 -0
  128. package/lib/utils/find/findAndInsert.d.ts +7 -0
  129. package/lib/utils/find/findAndInsert.stories.d.ts +7 -0
  130. package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
  131. package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
  132. package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
  133. package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
  134. package/lib/utils/throttle/throttle.stories.d.ts +6 -0
  135. package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
  136. package/package.json +1 -1
  137. package/src/assets/icons/sample_template_first.svg +29 -0
  138. package/src/assets/icons/sample_template_second.svg +47 -0
  139. package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +2 -3
  140. package/src/components/AllProjectsDropdown/AllProjectsDropdown.tsx +1 -0
  141. package/src/components/AppHeader/AppHeader.scss +0 -1
  142. package/src/components/Icon/Icon.tsx +1 -0
  143. package/src/components/Icon/iconList.ts +6 -2
  144. package/src/components/Modal/Modal.tsx +2 -2
  145. package/src/index.ts +2 -0
  146. package/src/utils/downloadFile/saveFileFromBlob.stories.tsx +62 -0
  147. package/src/utils/downloadFile/saveFileFromBlob.ts +40 -0
  148. /package/src/assets/icons/{fireflink_standard_template.svg → standard_template.svg} +0 -0
@@ -1 +1 @@
1
- {"root":["../src/index.ts","../src/styleguide/colorpalette/colorpalette.tsx","../src/styleguide/colorpalette/colorpalettelist.ts","../src/styleguide/colorpalette/index.ts","../src/styleguide/colorpalette/types.ts","../src/styleguide/typography/typography.tsx","../src/styleguide/typography/typographylist.ts","../src/styleguide/typography/types.ts","../src/assets/utils/functionutils.ts","../src/components/accordion/accordion.tsx","../src/components/accordion/index.ts","../src/components/accordion/types.ts","../src/components/addresourcebutton/addbutton.tsx","../src/components/addresourcebutton/index.ts","../src/components/addresourcebutton/type.ts","../src/components/addresourcebutton/arrowsbutton/arrowsbutton.tsx","../src/components/allprojectsdropdown/allprojectsdropdown.tsx","../src/components/allprojectsdropdown/index.ts","../src/components/allprojectsdropdown/types.ts","../src/components/appheader/appheader.tsx","../src/components/appheader/index.ts","../src/components/appheader/types.ts","../src/components/attachimage/attachimage.tsx","../src/components/attachimage/index.ts","../src/components/attachimage/types.ts","../src/components/attachmentbutton/attachmentbutton.tsx","../src/components/attachmentbutton/index.ts","../src/components/attachmentbutton/types.ts","../src/components/avatar/avatar.tsx","../src/components/avatar/index.ts","../src/components/avatar/types.ts","../src/components/button/button.tsx","../src/components/button/index.ts","../src/components/button/types.ts","../src/components/charts/barchart/barchart.tsx","../src/components/charts/barchart/index.ts","../src/components/charts/barchart/types.ts","../src/components/charts/dashboarddonutchart/dashboarddonutchart.tsx","../src/components/charts/dashboarddonutchart/index.ts","../src/components/charts/dashboarddonutchart/types.ts","../src/components/charts/donutchart/donutchart.tsx","../src/components/charts/donutchart/index.ts","../src/components/charts/donutchart/type.ts","../src/components/charts/iconradialchart/iconradialchart.tsx","../src/components/charts/iconradialchart/index.ts","../src/components/charts/iconradialchart/types.ts","../src/components/charts/linechart/linechart.tsx","../src/components/charts/linechart/index.ts","../src/components/charts/linechart/types.ts","../src/components/charts/multiradialchart/multiradialchart.tsx","../src/components/charts/multiradialchart/index.ts","../src/components/charts/multiradialchart/types.ts","../src/components/charts/piechart/piechart.tsx","../src/components/charts/piechart/index.ts","../src/components/charts/piechart/types.ts","../src/components/charts/radialchart/radialchart.tsx","../src/components/charts/radialchart/index.ts","../src/components/charts/radialchart/types.ts","../src/components/checkbox/checkbox.tsx","../src/components/checkbox/index.ts","../src/components/checkbox/types.ts","../src/components/chip/chip.tsx","../src/components/chip/index.ts","../src/components/chip/types.ts","../src/components/connectingbranch/connectingbranch.tsx","../src/components/connectingbranch/data.ts","../src/components/connectingbranch/index.ts","../src/components/connectingbranch/types.ts","../src/components/connectingbranch/branchcomponents/machineinstances.tsx","../src/components/datepicker/datepicker.tsx","../src/components/datepicker/timepicker.tsx","../src/components/datepicker/index.ts","../src/components/datepicker/types.ts","../src/components/draganddrop/draganddrop.ts","../src/components/draganddrop/draganddroplist.tsx","../src/components/draganddrop/index.ts","../src/components/drawer/drawer.tsx","../src/components/drawer/types.ts","../src/components/drawer/index.ts","../src/components/edittextfield/edittextfield.tsx","../src/components/edittextfield/index.ts","../src/components/edittextfield/types.ts","../src/components/editor/editor.tsx","../src/components/editor/variabledropdown.tsx","../src/components/editor/constants.ts","../src/components/editor/index.ts","../src/components/editor/types.ts","../src/components/excel/types.ts","../src/components/excel/index.ts","../src/components/excel/colorbarselector/colorbarselector.tsx","../src/components/excel/contextmenu/contextmenu.tsx","../src/components/excel/excelfile/excelfile.tsx","../src/components/excel/excelfile/excelfilecomponents/activecell.tsx","../src/components/excel/excelfile/excelfilecomponents/cell.tsx","../src/components/excel/excelfile/excelfilecomponents/columnindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/copied.tsx","../src/components/excel/excelfile/excelfilecomponents/cornerindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/dataeditor.tsx","../src/components/excel/excelfile/excelfilecomponents/dataviewer.tsx","../src/components/excel/excelfile/excelfilecomponents/floatingrect.tsx","../src/components/excel/excelfile/excelfilecomponents/headerrow.tsx","../src/components/excel/excelfile/excelfilecomponents/row.tsx","../src/components/excel/excelfile/excelfilecomponents/rowindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/selected.tsx","../src/components/excel/excelfile/excelfilecomponents/spreadsheet.tsx","../src/components/excel/excelfile/excelfilecomponents/table.tsx","../src/components/excel/excelfile/excelfilecomponents/actions.ts","../src/components/excel/excelfile/excelfilecomponents/aremodelsequal.ts","../src/components/excel/excelfile/excelfilecomponents/context.ts","../src/components/excel/excelfile/excelfilecomponents/index.ts","../src/components/excel/excelfile/excelfilecomponents/matrix.ts","../src/components/excel/excelfile/excelfilecomponents/point-range.ts","../src/components/excel/excelfile/excelfilecomponents/point.ts","../src/components/excel/excelfile/excelfilecomponents/reducer.ts","../src/components/excel/excelfile/excelfilecomponents/reducerfunctions.ts","../src/components/excel/excelfile/excelfilecomponents/selection.ts","../src/components/excel/excelfile/excelfilecomponents/types.ts","../src/components/excel/excelfile/excelfilecomponents/use-dispatch.ts","../src/components/excel/excelfile/excelfilecomponents/use-selector.ts","../src/components/excel/excelfile/excelfilecomponents/util.ts","../src/components/excel/excelfile/excelfilecomponents/engine/engine.ts","../src/components/excel/excelfile/excelfilecomponents/engine/formula.ts","../src/components/excel/excelfile/excelfilecomponents/engine/index.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-graph.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-hash.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-set.ts","../src/components/excel/excelfile/excelfilecomponents/typings/fast-formula-parser.d.ts","../src/components/excel/exceltoolbar/exceltoolbar.tsx","../src/components/expandablemenu/expandablemenu.tsx","../src/components/expandablemenu/index.ts","../src/components/expandablemenu/types.ts","../src/components/ff_captcha/recaptcha.tsx","../src/components/ff_captcha/index.ts","../src/components/ff_captcha/types.ts","../src/components/filedropzone/dropzone.tsx","../src/components/filedropzone/filedropzone.tsx","../src/components/filedropzone/filepreview.tsx","../src/components/filedropzone/index.ts","../src/components/filedropzone/types.ts","../src/components/form/form.ts","../src/components/form/forms.tsx","../src/components/form/index.ts","../src/components/form/types.ts","../src/components/gridlayout/gridlayout.tsx","../src/components/gridlayout/index.ts","../src/components/gridlayout/types.ts","../src/components/highlighttext/highlighttext.tsx","../src/components/highlighttext/index.ts","../src/components/highlighttext/types.ts","../src/components/icon/icon.tsx","../src/components/icon/iconlist.ts","../src/components/icon/index.ts","../src/components/icon/types.ts","../src/components/iconbutton/iconbutton.tsx","../src/components/iconbutton/index.ts","../src/components/iconbutton/types.ts","../src/components/iconradiogroup/iconradiogroup.tsx","../src/components/iconradiogroup/index.ts","../src/components/iconradiogroup/type.ts","../src/components/input/input.tsx","../src/components/input/index.ts","../src/components/input/types.ts","../src/components/inputwithdropdown/inputwithdropdown.tsx","../src/components/inputwithdropdown/index.ts","../src/components/inputwithdropdown/types.ts","../src/components/labeledittextfield/labeledittextfield.tsx","../src/components/labeledittextfield/index.ts","../src/components/labeledittextfield/types.ts","../src/components/lazyload/lazyload.ts","../src/components/lazyload/lazyloading.tsx","../src/components/lazyload/index.ts","../src/components/machineinputfield/machineinputfield.tsx","../src/components/machineinputfield/index.ts","../src/components/machineinputfield/types.ts","../src/components/menuoption/menuoption.tsx","../src/components/menuoption/index.ts","../src/components/menuoption/types.ts","../src/components/minimodal/minimodal.tsx","../src/components/minimodal/index.ts","../src/components/minimodal/types.ts","../src/components/modal/modal.tsx","../src/components/modal/index.tsx","../src/components/modal/types.ts","../src/components/moduleschip/modulechip.tsx","../src/components/moduleschip/index.ts","../src/components/moduleschip/types.ts","../src/components/multiselect/dropdown.tsx","../src/components/multiselect/multiselect.tsx","../src/components/multiselect/multiselecttypes.ts","../src/components/multiselect/dropdowntypes.ts","../src/components/multiselect/index.ts","../src/components/nlpinput/nlpinput.tsx","../src/components/nlpinput/index.ts","../src/components/nlpinput/type.tsx","../src/components/nlpinput/components/nlpdropdown/nlpdropdowntype.ts","../src/components/nlpinput/components/nlpdropdown/nlpdropdown.tsx","../src/components/paper/paper.tsx","../src/components/paper/index.ts","../src/components/paper/types.ts","../src/components/radiobutton/radiobutton.tsx","../src/components/radiobutton/index.ts","../src/components/radiobutton/radiobuttontypes.tsx","../src/components/radiogroup/radiogroup.tsx","../src/components/radiogroup/index.ts","../src/components/radiogroup/radiogrouptypes.tsx","../src/components/search/search.tsx","../src/components/search/index.ts","../src/components/search/types.ts","../src/components/select/select.tsx","../src/components/select/index.ts","../src/components/select/types.ts","../src/components/select/components/dropdown.tsx","../src/components/select/components/types.ts","../src/components/sequentialconnectingbranch/sequentialconnectingbranch.tsx","../src/components/sequentialconnectingbranch/index.ts","../src/components/sequentialconnectingbranch/types.ts","../src/components/sequentialconnectingbranch/components/addbrowsermodal/addbrowsermodal.tsx","../src/components/sequentialconnectingbranch/components/addbrowsermodal/types.ts","../src/components/sequentialconnectingbranch/components/branches/branches.tsx","../src/components/sequentialconnectingbranch/components/branches/types.ts","../src/components/sequentialconnectingbranch/components/connectingbranches/connectingbranches.tsx","../src/components/sequentialconnectingbranch/components/connectingbranches/types.ts","../src/components/sequentialconnectingbranch/components/datasetlistmodal/datasetlistmodal.tsx","../src/components/sequentialconnectingbranch/components/datasetlistmodal/types.ts","../src/components/statedropdown/statedropdown.tsx","../src/components/statedropdown/statedropdowntypes.tsx","../src/components/statedropdown/index.ts","../src/components/statusbutton/statusbutton.tsx","../src/components/statusbutton/index.ts","../src/components/statusbutton/types.ts","../src/components/statuscard/statuscard.tsx","../src/components/statuscard/index.ts","../src/components/statuscard/types.ts","../src/components/table/table.tsx","../src/components/table/types.ts","../src/components/table/index.ts","../src/components/tabletree/tabletree.tsx","../src/components/tabletree/data.ts","../src/components/tabletree/index.ts","../src/components/tabs/tabs.tsx","../src/components/tabs/index.ts","../src/components/tabs/types.ts","../src/components/textarea/textarea.tsx","../src/components/textarea/types.ts","../src/components/textarea/index.tsx","../src/components/themeprovider/themeprovider.tsx","../src/components/themeprovider/index.ts","../src/components/themeprovider/types.ts","../src/components/toast/toast.tsx","../src/components/toast/index.ts","../src/components/toast/types.ts","../src/components/toastify/toastify.tsx","../src/components/toastify/index.ts","../src/components/toastify/types.ts","../src/components/toggle/toggle.tsx","../src/components/toggle/index.ts","../src/components/toggle/types.ts","../src/components/tooltip/tooltip.tsx","../src/components/tooltip/index.ts","../src/components/tooltip/types.ts","../src/components/typography/typography.tsx","../src/components/typography/index.ts","../src/components/typography/types.ts","../src/components/variableinput/variableinput.tsx","../src/components/variableinput/index.ts","../src/components/variableinput/types.ts","../src/hooks/useclickoutside.tsx","../src/hooks/usefiledropzone.tsx","../src/hooks/useportalposition.tsx","../src/hooks/usetheme.tsx","../src/hooks/keyboardevents/useesckeyevent.tsx","../src/utils/tablecell/tablecell.ts","../src/utils/checkempty/checkempty.ts","../src/utils/comparearrays/comparearrays.ts","../src/utils/compareobjects/compareobjects.ts","../src/utils/debounce/debounce.ts","../src/utils/ffid/ffid.ts","../src/utils/findandinsert/findandinsert.ts","../src/utils/getencrypteddata/getencrypteddata.ts","../src/utils/getextension/getextension.ts","../src/utils/getselectoptionvalue/getselectoptionvalue.ts","../src/utils/getsequentialpayload/getsequentialpayload.ts","../src/utils/getsequentialpayload/types.ts","../src/utils/throttle/throttle.ts","../src/utils/truncatetext/truncatetext.ts"],"version":"5.6.3"}
1
+ {"root":["../src/index.ts","../src/styleguide/colorpalette/colorpalette.tsx","../src/styleguide/colorpalette/colorpalettelist.ts","../src/styleguide/colorpalette/index.ts","../src/styleguide/colorpalette/types.ts","../src/styleguide/typography/typography.tsx","../src/styleguide/typography/typographylist.ts","../src/styleguide/typography/types.ts","../src/assets/utils/functionutils.ts","../src/components/accordion/accordion.tsx","../src/components/accordion/index.ts","../src/components/accordion/types.ts","../src/components/addresourcebutton/addbutton.tsx","../src/components/addresourcebutton/index.ts","../src/components/addresourcebutton/type.ts","../src/components/addresourcebutton/arrowsbutton/arrowsbutton.tsx","../src/components/allprojectsdropdown/allprojectsdropdown.tsx","../src/components/allprojectsdropdown/index.ts","../src/components/allprojectsdropdown/types.ts","../src/components/appheader/appheader.tsx","../src/components/appheader/index.ts","../src/components/appheader/types.ts","../src/components/attachimage/attachimage.tsx","../src/components/attachimage/index.ts","../src/components/attachimage/types.ts","../src/components/attachmentbutton/attachmentbutton.tsx","../src/components/attachmentbutton/index.ts","../src/components/attachmentbutton/types.ts","../src/components/avatar/avatar.tsx","../src/components/avatar/index.ts","../src/components/avatar/types.ts","../src/components/button/button.tsx","../src/components/button/index.ts","../src/components/button/types.ts","../src/components/charts/barchart/barchart.tsx","../src/components/charts/barchart/index.ts","../src/components/charts/barchart/types.ts","../src/components/charts/dashboarddonutchart/dashboarddonutchart.tsx","../src/components/charts/dashboarddonutchart/index.ts","../src/components/charts/dashboarddonutchart/types.ts","../src/components/charts/donutchart/donutchart.tsx","../src/components/charts/donutchart/index.ts","../src/components/charts/donutchart/type.ts","../src/components/charts/iconradialchart/iconradialchart.tsx","../src/components/charts/iconradialchart/index.ts","../src/components/charts/iconradialchart/types.ts","../src/components/charts/linechart/linechart.tsx","../src/components/charts/linechart/index.ts","../src/components/charts/linechart/types.ts","../src/components/charts/multiradialchart/multiradialchart.tsx","../src/components/charts/multiradialchart/index.ts","../src/components/charts/multiradialchart/types.ts","../src/components/charts/piechart/piechart.tsx","../src/components/charts/piechart/index.ts","../src/components/charts/piechart/types.ts","../src/components/charts/radialchart/radialchart.tsx","../src/components/charts/radialchart/index.ts","../src/components/charts/radialchart/types.ts","../src/components/checkbox/checkbox.tsx","../src/components/checkbox/index.ts","../src/components/checkbox/types.ts","../src/components/chip/chip.tsx","../src/components/chip/index.ts","../src/components/chip/types.ts","../src/components/connectingbranch/connectingbranch.tsx","../src/components/connectingbranch/data.ts","../src/components/connectingbranch/index.ts","../src/components/connectingbranch/types.ts","../src/components/connectingbranch/branchcomponents/machineinstances.tsx","../src/components/datepicker/datepicker.tsx","../src/components/datepicker/timepicker.tsx","../src/components/datepicker/index.ts","../src/components/datepicker/types.ts","../src/components/draganddrop/draganddrop.ts","../src/components/draganddrop/draganddroplist.tsx","../src/components/draganddrop/index.ts","../src/components/drawer/drawer.tsx","../src/components/drawer/types.ts","../src/components/drawer/index.ts","../src/components/edittextfield/edittextfield.tsx","../src/components/edittextfield/index.ts","../src/components/edittextfield/types.ts","../src/components/editor/editor.tsx","../src/components/editor/variabledropdown.tsx","../src/components/editor/constants.ts","../src/components/editor/index.ts","../src/components/editor/types.ts","../src/components/excel/types.ts","../src/components/excel/index.ts","../src/components/excel/colorbarselector/colorbarselector.tsx","../src/components/excel/contextmenu/contextmenu.tsx","../src/components/excel/excelfile/excelfile.tsx","../src/components/excel/excelfile/excelfilecomponents/activecell.tsx","../src/components/excel/excelfile/excelfilecomponents/cell.tsx","../src/components/excel/excelfile/excelfilecomponents/columnindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/copied.tsx","../src/components/excel/excelfile/excelfilecomponents/cornerindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/dataeditor.tsx","../src/components/excel/excelfile/excelfilecomponents/dataviewer.tsx","../src/components/excel/excelfile/excelfilecomponents/floatingrect.tsx","../src/components/excel/excelfile/excelfilecomponents/headerrow.tsx","../src/components/excel/excelfile/excelfilecomponents/row.tsx","../src/components/excel/excelfile/excelfilecomponents/rowindicator.tsx","../src/components/excel/excelfile/excelfilecomponents/selected.tsx","../src/components/excel/excelfile/excelfilecomponents/spreadsheet.tsx","../src/components/excel/excelfile/excelfilecomponents/table.tsx","../src/components/excel/excelfile/excelfilecomponents/actions.ts","../src/components/excel/excelfile/excelfilecomponents/aremodelsequal.ts","../src/components/excel/excelfile/excelfilecomponents/context.ts","../src/components/excel/excelfile/excelfilecomponents/index.ts","../src/components/excel/excelfile/excelfilecomponents/matrix.ts","../src/components/excel/excelfile/excelfilecomponents/point-range.ts","../src/components/excel/excelfile/excelfilecomponents/point.ts","../src/components/excel/excelfile/excelfilecomponents/reducer.ts","../src/components/excel/excelfile/excelfilecomponents/reducerfunctions.ts","../src/components/excel/excelfile/excelfilecomponents/selection.ts","../src/components/excel/excelfile/excelfilecomponents/types.ts","../src/components/excel/excelfile/excelfilecomponents/use-dispatch.ts","../src/components/excel/excelfile/excelfilecomponents/use-selector.ts","../src/components/excel/excelfile/excelfilecomponents/util.ts","../src/components/excel/excelfile/excelfilecomponents/engine/engine.ts","../src/components/excel/excelfile/excelfilecomponents/engine/formula.ts","../src/components/excel/excelfile/excelfilecomponents/engine/index.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-graph.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-hash.ts","../src/components/excel/excelfile/excelfilecomponents/engine/point-set.ts","../src/components/excel/excelfile/excelfilecomponents/typings/fast-formula-parser.d.ts","../src/components/excel/exceltoolbar/exceltoolbar.tsx","../src/components/expandablemenu/expandablemenu.tsx","../src/components/expandablemenu/index.ts","../src/components/expandablemenu/types.ts","../src/components/ff_captcha/recaptcha.tsx","../src/components/ff_captcha/index.ts","../src/components/ff_captcha/types.ts","../src/components/filedropzone/dropzone.tsx","../src/components/filedropzone/filedropzone.tsx","../src/components/filedropzone/filepreview.tsx","../src/components/filedropzone/index.ts","../src/components/filedropzone/types.ts","../src/components/form/form.ts","../src/components/form/forms.tsx","../src/components/form/index.ts","../src/components/form/types.ts","../src/components/gridlayout/gridlayout.tsx","../src/components/gridlayout/index.ts","../src/components/gridlayout/types.ts","../src/components/highlighttext/highlighttext.tsx","../src/components/highlighttext/index.ts","../src/components/highlighttext/types.ts","../src/components/icon/icon.tsx","../src/components/icon/iconlist.ts","../src/components/icon/index.ts","../src/components/icon/types.ts","../src/components/iconbutton/iconbutton.tsx","../src/components/iconbutton/index.ts","../src/components/iconbutton/types.ts","../src/components/iconradiogroup/iconradiogroup.tsx","../src/components/iconradiogroup/index.ts","../src/components/iconradiogroup/type.ts","../src/components/input/input.tsx","../src/components/input/index.ts","../src/components/input/types.ts","../src/components/inputwithdropdown/inputwithdropdown.tsx","../src/components/inputwithdropdown/index.ts","../src/components/inputwithdropdown/types.ts","../src/components/labeledittextfield/labeledittextfield.tsx","../src/components/labeledittextfield/index.ts","../src/components/labeledittextfield/types.ts","../src/components/lazyload/lazyload.ts","../src/components/lazyload/lazyloading.tsx","../src/components/lazyload/index.ts","../src/components/machineinputfield/machineinputfield.tsx","../src/components/machineinputfield/index.ts","../src/components/machineinputfield/types.ts","../src/components/menuoption/menuoption.tsx","../src/components/menuoption/index.ts","../src/components/menuoption/types.ts","../src/components/minimodal/minimodal.tsx","../src/components/minimodal/index.ts","../src/components/minimodal/types.ts","../src/components/modal/modal.tsx","../src/components/modal/index.tsx","../src/components/modal/types.ts","../src/components/moduleschip/modulechip.tsx","../src/components/moduleschip/index.ts","../src/components/moduleschip/types.ts","../src/components/multiselect/dropdown.tsx","../src/components/multiselect/multiselect.tsx","../src/components/multiselect/multiselecttypes.ts","../src/components/multiselect/dropdowntypes.ts","../src/components/multiselect/index.ts","../src/components/nlpinput/nlpinput.tsx","../src/components/nlpinput/index.ts","../src/components/nlpinput/type.tsx","../src/components/nlpinput/components/nlpdropdown/nlpdropdowntype.ts","../src/components/nlpinput/components/nlpdropdown/nlpdropdown.tsx","../src/components/paper/paper.tsx","../src/components/paper/index.ts","../src/components/paper/types.ts","../src/components/radiobutton/radiobutton.tsx","../src/components/radiobutton/index.ts","../src/components/radiobutton/radiobuttontypes.tsx","../src/components/radiogroup/radiogroup.tsx","../src/components/radiogroup/index.ts","../src/components/radiogroup/radiogrouptypes.tsx","../src/components/search/search.tsx","../src/components/search/index.ts","../src/components/search/types.ts","../src/components/select/select.tsx","../src/components/select/index.ts","../src/components/select/types.ts","../src/components/select/components/dropdown.tsx","../src/components/select/components/types.ts","../src/components/sequentialconnectingbranch/sequentialconnectingbranch.tsx","../src/components/sequentialconnectingbranch/index.ts","../src/components/sequentialconnectingbranch/types.ts","../src/components/sequentialconnectingbranch/components/addbrowsermodal/addbrowsermodal.tsx","../src/components/sequentialconnectingbranch/components/addbrowsermodal/types.ts","../src/components/sequentialconnectingbranch/components/branches/branches.tsx","../src/components/sequentialconnectingbranch/components/branches/types.ts","../src/components/sequentialconnectingbranch/components/connectingbranches/connectingbranches.tsx","../src/components/sequentialconnectingbranch/components/connectingbranches/types.ts","../src/components/sequentialconnectingbranch/components/datasetlistmodal/datasetlistmodal.tsx","../src/components/sequentialconnectingbranch/components/datasetlistmodal/types.ts","../src/components/statedropdown/statedropdown.tsx","../src/components/statedropdown/statedropdowntypes.tsx","../src/components/statedropdown/index.ts","../src/components/statusbutton/statusbutton.tsx","../src/components/statusbutton/index.ts","../src/components/statusbutton/types.ts","../src/components/statuscard/statuscard.tsx","../src/components/statuscard/index.ts","../src/components/statuscard/types.ts","../src/components/table/table.tsx","../src/components/table/types.ts","../src/components/table/index.ts","../src/components/tabletree/tabletree.tsx","../src/components/tabletree/data.ts","../src/components/tabletree/index.ts","../src/components/tabs/tabs.tsx","../src/components/tabs/index.ts","../src/components/tabs/types.ts","../src/components/textarea/textarea.tsx","../src/components/textarea/types.ts","../src/components/textarea/index.tsx","../src/components/themeprovider/themeprovider.tsx","../src/components/themeprovider/index.ts","../src/components/themeprovider/types.ts","../src/components/toast/toast.tsx","../src/components/toast/index.ts","../src/components/toast/types.ts","../src/components/toastify/toastify.tsx","../src/components/toastify/index.ts","../src/components/toastify/types.ts","../src/components/toggle/toggle.tsx","../src/components/toggle/index.ts","../src/components/toggle/types.ts","../src/components/tooltip/tooltip.tsx","../src/components/tooltip/index.ts","../src/components/tooltip/types.ts","../src/components/typography/typography.tsx","../src/components/typography/index.ts","../src/components/typography/types.ts","../src/components/variableinput/variableinput.tsx","../src/components/variableinput/index.ts","../src/components/variableinput/types.ts","../src/hooks/useclickoutside.tsx","../src/hooks/usefiledropzone.tsx","../src/hooks/useportalposition.tsx","../src/hooks/usetheme.tsx","../src/hooks/keyboardevents/useesckeyevent.tsx","../src/utils/tablecell/tablecell.ts","../src/utils/checkempty/checkempty.ts","../src/utils/comparearrays/comparearrays.ts","../src/utils/compareobjects/compareobjects.ts","../src/utils/debounce/debounce.ts","../src/utils/downloadfile/savefilefromblob.ts","../src/utils/ffid/ffid.ts","../src/utils/findandinsert/findandinsert.ts","../src/utils/getencrypteddata/getencrypteddata.ts","../src/utils/getextension/getextension.ts","../src/utils/getselectoptionvalue/getselectoptionvalue.ts","../src/utils/getsequentialpayload/getsequentialpayload.ts","../src/utils/getsequentialpayload/types.ts","../src/utils/throttle/throttle.ts","../src/utils/truncatetext/truncatetext.ts"],"version":"5.6.3"}
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (value: any) => boolean;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (arr1: unknown[], arr2: unknown[]) => boolean;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (obj1: import("./compareObjects").AnyObject | null, obj2: import("./compareObjects").AnyObject | null) => boolean;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (func: (...args: any[]) => void, delay: number) => import("./debounce").DebouncedFunction;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const saveFileFromBlob: (blob: Blob, filename: string) => void;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { ffid } from './ffid';
3
+ declare const meta: Meta<typeof ffid>;
4
+ type Story = StoryObj;
5
+ export declare const Primary: Story;
6
+ export default meta;
@@ -0,0 +1,7 @@
1
+ export type AnyObject = {
2
+ id: number;
3
+ [key: string]: any;
4
+ };
5
+ export declare function findAndInsert<T extends AnyObject>(data: T[], key: keyof T, targetId: number, newEntry: T, insertPosition: 'above' | 'below' | 'replace', childrenKey?: string): {
6
+ updatedArray: T[];
7
+ } | null;
@@ -0,0 +1,7 @@
1
+ import { findAndInsert } from './findAndInsert';
2
+ declare const _default: {
3
+ title: string;
4
+ component: typeof findAndInsert;
5
+ };
6
+ export default _default;
7
+ export declare const InteractivePlayground: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,7 @@
1
+ import { findAndInsert } from './findAndInsert';
2
+ declare const _default: {
3
+ title: string;
4
+ component: typeof findAndInsert;
5
+ };
6
+ export default _default;
7
+ export declare const InteractivePlayground: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (data: string, publicKey: string) => string | false;
4
+ };
5
+ export default _default;
6
+ export declare const InteractivePlayground: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (value: string | File) => string | undefined;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import type { Meta, StoryObj } from '@storybook/react';
3
+ import { MachineExecutionInstanceDataSet } from './types';
4
+ declare const SequentialPayloadComponent: React.FC<{
5
+ machineInstances: MachineExecutionInstanceDataSet[];
6
+ }>;
7
+ declare const meta: Meta<typeof SequentialPayloadComponent>;
8
+ type Story = StoryObj<typeof SequentialPayloadComponent>;
9
+ export declare const Primary: Story;
10
+ export default meta;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (func: (...args: any[]) => void, limit: number) => import("./throttle").ThrottledFunction;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ title: string;
3
+ component: (text: string, maxLength: number) => string;
4
+ };
5
+ export default _default;
6
+ export declare const Default: () => import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pixel-react",
3
3
  "description": "Great for pixel-perfect, design-focused components in React",
4
- "version": "1.3.9",
4
+ "version": "1.4.0",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.esm.js",
7
7
  "types": "lib/index.d.ts",
@@ -0,0 +1,29 @@
1
+ <svg width="390" height="285" viewBox="0 0 390 285" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="130" width="120" height="26" rx="4" fill="#71347B"/>
3
+ <path d="M152.484 8.624V13.808C152.484 14.376 152.632 14.812 152.928 15.116C153.224 15.412 153.64 15.56 154.176 15.56C154.72 15.56 155.14 15.412 155.436 15.116C155.732 14.812 155.88 14.376 155.88 13.808V8.624H157.572V13.796C157.572 14.508 157.416 15.112 157.104 15.608C156.8 16.096 156.388 16.464 155.868 16.712C155.356 16.96 154.784 17.084 154.152 17.084C153.528 17.084 152.96 16.96 152.448 16.712C151.944 16.464 151.544 16.096 151.248 15.608C150.952 15.112 150.804 14.508 150.804 13.796V8.624H152.484ZM162.879 10.256C163.671 10.256 164.311 10.508 164.799 11.012C165.287 11.508 165.531 12.204 165.531 13.1V17H163.851V13.328C163.851 12.8 163.719 12.396 163.455 12.116C163.191 11.828 162.831 11.684 162.375 11.684C161.911 11.684 161.543 11.828 161.271 12.116C161.007 12.396 160.875 12.8 160.875 13.328V17H159.195V10.352H160.875V11.18C161.099 10.892 161.383 10.668 161.727 10.508C162.079 10.34 162.463 10.256 162.879 10.256ZM166.697 13.676C166.697 12.988 166.837 12.388 167.117 11.876C167.397 11.356 167.785 10.956 168.281 10.676C168.777 10.388 169.345 10.244 169.985 10.244C170.809 10.244 171.489 10.452 172.025 10.868C172.569 11.276 172.933 11.852 173.117 12.596H171.305C171.209 12.308 171.045 12.084 170.813 11.924C170.589 11.756 170.309 11.672 169.973 11.672C169.493 11.672 169.113 11.848 168.833 12.2C168.553 12.544 168.413 13.036 168.413 13.676C168.413 14.308 168.553 14.8 168.833 15.152C169.113 15.496 169.493 15.668 169.973 15.668C170.653 15.668 171.097 15.364 171.305 14.756H173.117C172.933 15.476 172.569 16.048 172.025 16.472C171.481 16.896 170.801 17.108 169.985 17.108C169.345 17.108 168.777 16.968 168.281 16.688C167.785 16.4 167.397 16 167.117 15.488C166.837 14.968 166.697 14.364 166.697 13.676ZM177.3 17.108C176.66 17.108 176.084 16.968 175.572 16.688C175.06 16.4 174.656 15.996 174.36 15.476C174.072 14.956 173.928 14.356 173.928 13.676C173.928 12.996 174.076 12.396 174.372 11.876C174.676 11.356 175.088 10.956 175.608 10.676C176.128 10.388 176.708 10.244 177.348 10.244C177.988 10.244 178.568 10.388 179.088 10.676C179.608 10.956 180.016 11.356 180.312 11.876C180.616 12.396 180.768 12.996 180.768 13.676C180.768 14.356 180.612 14.956 180.3 15.476C179.996 15.996 179.58 16.4 179.052 16.688C178.532 16.968 177.948 17.108 177.3 17.108ZM177.3 15.644C177.604 15.644 177.888 15.572 178.152 15.428C178.424 15.276 178.64 15.052 178.8 14.756C178.96 14.46 179.04 14.1 179.04 13.676C179.04 13.044 178.872 12.56 178.536 12.224C178.208 11.88 177.804 11.708 177.324 11.708C176.844 11.708 176.44 11.88 176.112 12.224C175.792 12.56 175.632 13.044 175.632 13.676C175.632 14.308 175.788 14.796 176.1 15.14C176.42 15.476 176.82 15.644 177.3 15.644ZM185.684 10.256C186.476 10.256 187.116 10.508 187.604 11.012C188.092 11.508 188.336 12.204 188.336 13.1V17H186.656V13.328C186.656 12.8 186.524 12.396 186.26 12.116C185.996 11.828 185.636 11.684 185.18 11.684C184.716 11.684 184.348 11.828 184.076 12.116C183.812 12.396 183.68 12.8 183.68 13.328V17H182V10.352H183.68V11.18C183.904 10.892 184.188 10.668 184.532 10.508C184.884 10.34 185.268 10.256 185.684 10.256ZM192.981 11.732H191.817V17H190.113V11.732H189.357V10.352H190.113V10.016C190.113 9.2 190.345 8.6 190.809 8.216C191.273 7.832 191.973 7.652 192.909 7.676V9.092C192.501 9.084 192.217 9.152 192.057 9.296C191.897 9.44 191.817 9.7 191.817 10.076V10.352H192.981V11.732ZM194.922 9.56C194.626 9.56 194.378 9.468 194.178 9.284C193.986 9.092 193.89 8.856 193.89 8.576C193.89 8.296 193.986 8.064 194.178 7.88C194.378 7.688 194.626 7.592 194.922 7.592C195.218 7.592 195.462 7.688 195.654 7.88C195.854 8.064 195.954 8.296 195.954 8.576C195.954 8.856 195.854 9.092 195.654 9.284C195.462 9.468 195.218 9.56 194.922 9.56ZM195.75 10.352V17H194.07V10.352H195.75ZM199.09 11.384C199.306 11.032 199.586 10.756 199.93 10.556C200.282 10.356 200.682 10.256 201.13 10.256V12.02H200.686C200.158 12.02 199.758 12.144 199.486 12.392C199.222 12.64 199.09 13.072 199.09 13.688V17H197.41V10.352H199.09V11.384ZM210.518 10.256C211.334 10.256 211.99 10.508 212.486 11.012C212.99 11.508 213.242 12.204 213.242 13.1V17H211.562V13.328C211.562 12.808 211.43 12.412 211.166 12.14C210.902 11.86 210.542 11.72 210.086 11.72C209.63 11.72 209.266 11.86 208.994 12.14C208.73 12.412 208.598 12.808 208.598 13.328V17H206.918V13.328C206.918 12.808 206.786 12.412 206.522 12.14C206.258 11.86 205.898 11.72 205.442 11.72C204.978 11.72 204.61 11.86 204.338 12.14C204.074 12.412 203.942 12.808 203.942 13.328V17H202.262V10.352H203.942V11.156C204.158 10.876 204.434 10.656 204.77 10.496C205.114 10.336 205.49 10.256 205.898 10.256C206.418 10.256 206.882 10.368 207.29 10.592C207.698 10.808 208.014 11.12 208.238 11.528C208.454 11.144 208.766 10.836 209.174 10.604C209.59 10.372 210.038 10.256 210.518 10.256ZM221.016 13.532C221.016 13.772 221 13.988 220.968 14.18H216.108C216.148 14.66 216.316 15.036 216.612 15.308C216.908 15.58 217.272 15.716 217.704 15.716C218.328 15.716 218.772 15.448 219.036 14.912H220.848C220.656 15.552 220.288 16.08 219.744 16.496C219.2 16.904 218.532 17.108 217.74 17.108C217.1 17.108 216.524 16.968 216.012 16.688C215.508 16.4 215.112 15.996 214.824 15.476C214.544 14.956 214.404 14.356 214.404 13.676C214.404 12.988 214.544 12.384 214.824 11.864C215.104 11.344 215.496 10.944 216 10.664C216.504 10.384 217.084 10.244 217.74 10.244C218.372 10.244 218.936 10.38 219.432 10.652C219.936 10.924 220.324 11.312 220.596 11.816C220.876 12.312 221.016 12.884 221.016 13.532ZM219.276 13.052C219.268 12.62 219.112 12.276 218.808 12.02C218.504 11.756 218.132 11.624 217.692 11.624C217.276 11.624 216.924 11.752 216.636 12.008C216.356 12.256 216.184 12.604 216.12 13.052H219.276ZM221.81 13.652C221.81 12.98 221.942 12.384 222.206 11.864C222.478 11.344 222.846 10.944 223.31 10.664C223.774 10.384 224.29 10.244 224.858 10.244C225.29 10.244 225.702 10.34 226.094 10.532C226.486 10.716 226.798 10.964 227.03 11.276V8.12H228.734V17H227.03V16.016C226.822 16.344 226.53 16.608 226.154 16.808C225.778 17.008 225.342 17.108 224.846 17.108C224.286 17.108 223.774 16.964 223.31 16.676C222.846 16.388 222.478 15.984 222.206 15.464C221.942 14.936 221.81 14.332 221.81 13.652ZM227.042 13.676C227.042 13.268 226.962 12.92 226.802 12.632C226.642 12.336 226.426 12.112 226.154 11.96C225.882 11.8 225.59 11.72 225.278 11.72C224.966 11.72 224.678 11.796 224.414 11.948C224.15 12.1 223.934 12.324 223.766 12.62C223.606 12.908 223.526 13.252 223.526 13.652C223.526 14.052 223.606 14.404 223.766 14.708C223.934 15.004 224.15 15.232 224.414 15.392C224.686 15.552 224.974 15.632 225.278 15.632C225.59 15.632 225.882 15.556 226.154 15.404C226.426 15.244 226.642 15.02 226.802 14.732C226.962 14.436 227.042 14.084 227.042 13.676Z" fill="white"/>
4
+ <path d="M189.646 46.3536C189.842 46.5488 190.158 46.5488 190.354 46.3536L193.536 43.1716C193.731 42.9763 193.731 42.6597 193.536 42.4645C193.34 42.2692 193.024 42.2692 192.828 42.4645L190 45.2929L187.172 42.4645C186.976 42.2692 186.66 42.2692 186.464 42.4645C186.269 42.6597 186.269 42.9763 186.464 43.1716L189.646 46.3536ZM189.5 26V46H190.5V26H189.5Z" fill="#A3A3A3"/>
5
+ <rect x="130" y="46" width="120" height="26" rx="4" fill="#71347B"/>
6
+ <path d="M184.492 63H182.812L179.008 57.252V63H177.328V54.612H179.008L182.812 60.372V54.612H184.492V63ZM192.332 59.532C192.332 59.772 192.316 59.988 192.284 60.18H187.424C187.464 60.66 187.632 61.036 187.928 61.308C188.224 61.58 188.588 61.716 189.02 61.716C189.644 61.716 190.088 61.448 190.352 60.912H192.164C191.972 61.552 191.604 62.08 191.06 62.496C190.516 62.904 189.848 63.108 189.056 63.108C188.416 63.108 187.84 62.968 187.328 62.688C186.824 62.4 186.428 61.996 186.14 61.476C185.86 60.956 185.72 60.356 185.72 59.676C185.72 58.988 185.86 58.384 186.14 57.864C186.42 57.344 186.812 56.944 187.316 56.664C187.82 56.384 188.4 56.244 189.056 56.244C189.688 56.244 190.252 56.38 190.748 56.652C191.252 56.924 191.64 57.312 191.912 57.816C192.192 58.312 192.332 58.884 192.332 59.532ZM190.592 59.052C190.584 58.62 190.428 58.276 190.124 58.02C189.82 57.756 189.448 57.624 189.008 57.624C188.592 57.624 188.24 57.752 187.952 58.008C187.672 58.256 187.5 58.604 187.436 59.052H190.592ZM202.774 56.352L200.83 63H199.018L197.806 58.356L196.594 63H194.77L192.814 56.352H194.518L195.694 61.416L196.966 56.352H198.742L199.99 61.404L201.166 56.352H202.774Z" fill="white"/>
7
+ <path d="M189.646 92.3536C189.842 92.5488 190.158 92.5488 190.354 92.3536L193.536 89.1716C193.731 88.9763 193.731 88.6597 193.536 88.4645C193.34 88.2692 193.024 88.2692 192.828 88.4645L190 91.2929L187.172 88.4645C186.976 88.2692 186.66 88.2692 186.464 88.4645C186.269 88.6597 186.269 88.9763 186.464 89.1716L189.646 92.3536ZM189.5 72V92H190.5V72H189.5Z" fill="#A3A3A3"/>
8
+ <rect x="130" y="92" width="120" height="26" rx="4" fill="#71347B"/>
9
+ <path d="M167.464 107.404H164.128L163.576 109H161.812L164.824 100.612H166.78L169.792 109H168.016L167.464 107.404ZM167.008 106.06L165.796 102.556L164.584 106.06H167.008ZM173.462 109.108C172.918 109.108 172.43 109.012 171.998 108.82C171.566 108.62 171.222 108.352 170.966 108.016C170.718 107.68 170.582 107.308 170.558 106.9H172.25C172.282 107.156 172.406 107.368 172.622 107.536C172.846 107.704 173.122 107.788 173.45 107.788C173.77 107.788 174.018 107.724 174.194 107.596C174.378 107.468 174.47 107.304 174.47 107.104C174.47 106.888 174.358 106.728 174.134 106.624C173.918 106.512 173.57 106.392 173.09 106.264C172.594 106.144 172.186 106.02 171.866 105.892C171.554 105.764 171.282 105.568 171.05 105.304C170.826 105.04 170.714 104.684 170.714 104.236C170.714 103.868 170.818 103.532 171.026 103.228C171.242 102.924 171.546 102.684 171.938 102.508C172.338 102.332 172.806 102.244 173.342 102.244C174.134 102.244 174.766 102.444 175.238 102.844C175.71 103.236 175.97 103.768 176.018 104.44H174.41C174.386 104.176 174.274 103.968 174.074 103.816C173.882 103.656 173.622 103.576 173.294 103.576C172.99 103.576 172.754 103.632 172.586 103.744C172.426 103.856 172.346 104.012 172.346 104.212C172.346 104.436 172.458 104.608 172.682 104.728C172.906 104.84 173.254 104.956 173.726 105.076C174.206 105.196 174.602 105.32 174.914 105.448C175.226 105.576 175.494 105.776 175.718 106.048C175.95 106.312 176.07 106.664 176.078 107.104C176.078 107.488 175.97 107.832 175.754 108.136C175.546 108.44 175.242 108.68 174.842 108.856C174.45 109.024 173.99 109.108 173.462 109.108ZM180.001 109.108C179.457 109.108 178.969 109.012 178.537 108.82C178.105 108.62 177.761 108.352 177.505 108.016C177.257 107.68 177.121 107.308 177.097 106.9H178.789C178.821 107.156 178.945 107.368 179.161 107.536C179.385 107.704 179.661 107.788 179.989 107.788C180.309 107.788 180.557 107.724 180.733 107.596C180.917 107.468 181.009 107.304 181.009 107.104C181.009 106.888 180.897 106.728 180.673 106.624C180.457 106.512 180.109 106.392 179.629 106.264C179.133 106.144 178.725 106.02 178.405 105.892C178.093 105.764 177.821 105.568 177.589 105.304C177.365 105.04 177.253 104.684 177.253 104.236C177.253 103.868 177.357 103.532 177.565 103.228C177.781 102.924 178.085 102.684 178.477 102.508C178.877 102.332 179.345 102.244 179.881 102.244C180.673 102.244 181.305 102.444 181.777 102.844C182.249 103.236 182.509 103.768 182.557 104.44H180.949C180.925 104.176 180.813 103.968 180.613 103.816C180.421 103.656 180.161 103.576 179.833 103.576C179.529 103.576 179.293 103.632 179.125 103.744C178.965 103.856 178.885 104.012 178.885 104.212C178.885 104.436 178.997 104.608 179.221 104.728C179.445 104.84 179.793 104.956 180.265 105.076C180.745 105.196 181.141 105.32 181.453 105.448C181.765 105.576 182.033 105.776 182.257 106.048C182.489 106.312 182.609 106.664 182.617 107.104C182.617 107.488 182.509 107.832 182.293 108.136C182.085 108.44 181.781 108.68 181.381 108.856C180.989 109.024 180.529 109.108 180.001 109.108ZM184.848 101.56C184.552 101.56 184.304 101.468 184.104 101.284C183.912 101.092 183.816 100.856 183.816 100.576C183.816 100.296 183.912 100.064 184.104 99.88C184.304 99.688 184.552 99.592 184.848 99.592C185.144 99.592 185.388 99.688 185.58 99.88C185.78 100.064 185.88 100.296 185.88 100.576C185.88 100.856 185.78 101.092 185.58 101.284C185.388 101.468 185.144 101.56 184.848 101.56ZM185.676 102.352V109H183.996V102.352H185.676ZM189.94 102.244C190.436 102.244 190.872 102.344 191.248 102.544C191.624 102.736 191.92 102.988 192.136 103.3V102.352H193.828V109.048C193.828 109.664 193.704 110.212 193.456 110.692C193.208 111.18 192.836 111.564 192.34 111.844C191.844 112.132 191.244 112.276 190.54 112.276C189.596 112.276 188.82 112.056 188.212 111.616C187.612 111.176 187.272 110.576 187.192 109.816H188.86C188.948 110.12 189.136 110.36 189.424 110.536C189.72 110.72 190.076 110.812 190.492 110.812C190.98 110.812 191.376 110.664 191.68 110.368C191.984 110.08 192.136 109.64 192.136 109.048V108.016C191.92 108.328 191.62 108.588 191.236 108.796C190.86 109.004 190.428 109.108 189.94 109.108C189.38 109.108 188.868 108.964 188.404 108.676C187.94 108.388 187.572 107.984 187.3 107.464C187.036 106.936 186.904 106.332 186.904 105.652C186.904 104.98 187.036 104.384 187.3 103.864C187.572 103.344 187.936 102.944 188.392 102.664C188.856 102.384 189.372 102.244 189.94 102.244ZM192.136 105.676C192.136 105.268 192.056 104.92 191.896 104.632C191.736 104.336 191.52 104.112 191.248 103.96C190.976 103.8 190.684 103.72 190.372 103.72C190.06 103.72 189.772 103.796 189.508 103.948C189.244 104.1 189.028 104.324 188.86 104.62C188.7 104.908 188.62 105.252 188.62 105.652C188.62 106.052 188.7 106.404 188.86 106.708C189.028 107.004 189.244 107.232 189.508 107.392C189.78 107.552 190.068 107.632 190.372 107.632C190.684 107.632 190.976 107.556 191.248 107.404C191.52 107.244 191.736 107.02 191.896 106.732C192.056 106.436 192.136 106.084 192.136 105.676ZM199.153 102.256C199.945 102.256 200.585 102.508 201.073 103.012C201.561 103.508 201.805 104.204 201.805 105.1V109H200.125V105.328C200.125 104.8 199.993 104.396 199.729 104.116C199.465 103.828 199.105 103.684 198.649 103.684C198.185 103.684 197.817 103.828 197.545 104.116C197.281 104.396 197.149 104.8 197.149 105.328V109H195.469V102.352H197.149V103.18C197.373 102.892 197.657 102.668 198.001 102.508C198.353 102.34 198.737 102.256 199.153 102.256ZM209.582 105.532C209.582 105.772 209.566 105.988 209.534 106.18H204.674C204.714 106.66 204.882 107.036 205.178 107.308C205.474 107.58 205.838 107.716 206.27 107.716C206.894 107.716 207.338 107.448 207.602 106.912H209.414C209.222 107.552 208.854 108.08 208.31 108.496C207.766 108.904 207.098 109.108 206.306 109.108C205.666 109.108 205.09 108.968 204.578 108.688C204.074 108.4 203.678 107.996 203.39 107.476C203.11 106.956 202.97 106.356 202.97 105.676C202.97 104.988 203.11 104.384 203.39 103.864C203.67 103.344 204.062 102.944 204.566 102.664C205.07 102.384 205.65 102.244 206.306 102.244C206.938 102.244 207.502 102.38 207.998 102.652C208.502 102.924 208.89 103.312 209.162 103.816C209.442 104.312 209.582 104.884 209.582 105.532ZM207.842 105.052C207.834 104.62 207.678 104.276 207.374 104.02C207.07 103.756 206.698 103.624 206.258 103.624C205.842 103.624 205.49 103.752 205.202 104.008C204.922 104.256 204.75 104.604 204.686 105.052H207.842ZM210.376 105.652C210.376 104.98 210.508 104.384 210.772 103.864C211.044 103.344 211.412 102.944 211.876 102.664C212.34 102.384 212.856 102.244 213.424 102.244C213.856 102.244 214.268 102.34 214.66 102.532C215.052 102.716 215.364 102.964 215.596 103.276V100.12H217.3V109H215.596V108.016C215.388 108.344 215.096 108.608 214.72 108.808C214.344 109.008 213.908 109.108 213.412 109.108C212.852 109.108 212.34 108.964 211.876 108.676C211.412 108.388 211.044 107.984 210.772 107.464C210.508 106.936 210.376 106.332 210.376 105.652ZM215.608 105.676C215.608 105.268 215.528 104.92 215.368 104.632C215.208 104.336 214.992 104.112 214.72 103.96C214.448 103.8 214.156 103.72 213.844 103.72C213.532 103.72 213.244 103.796 212.98 103.948C212.716 104.1 212.5 104.324 212.332 104.62C212.172 104.908 212.092 105.252 212.092 105.652C212.092 106.052 212.172 106.404 212.332 106.708C212.5 107.004 212.716 107.232 212.98 107.392C213.252 107.552 213.54 107.632 213.844 107.632C214.156 107.632 214.448 107.556 214.72 107.404C214.992 107.244 215.208 107.02 215.368 106.732C215.528 106.436 215.608 106.084 215.608 105.676Z" fill="white"/>
10
+ <path d="M189.646 138.354C189.842 138.549 190.158 138.549 190.354 138.354L193.536 135.172C193.731 134.976 193.731 134.66 193.536 134.464C193.34 134.269 193.024 134.269 192.828 134.464L190 137.293L187.172 134.464C186.976 134.269 186.66 134.269 186.464 134.464C186.269 134.66 186.269 134.976 186.464 135.172L189.646 138.354ZM189.5 118V138H190.5V118H189.5Z" fill="#A3A3A3"/>
11
+ <rect x="130" y="138" width="120" height="26" rx="4" fill="#71347B"/>
12
+ <path d="M167.148 155L165.3 151.736H164.508V155H162.828V146.624H165.972C166.62 146.624 167.172 146.74 167.628 146.972C168.084 147.196 168.424 147.504 168.648 147.896C168.88 148.28 168.996 148.712 168.996 149.192C168.996 149.744 168.836 150.244 168.516 150.692C168.196 151.132 167.72 151.436 167.088 151.604L169.092 155H167.148ZM164.508 150.476H165.912C166.368 150.476 166.708 150.368 166.932 150.152C167.156 149.928 167.268 149.62 167.268 149.228C167.268 148.844 167.156 148.548 166.932 148.34C166.708 148.124 166.368 148.016 165.912 148.016H164.508V150.476ZM176.696 151.532C176.696 151.772 176.68 151.988 176.648 152.18H171.788C171.828 152.66 171.996 153.036 172.292 153.308C172.588 153.58 172.952 153.716 173.384 153.716C174.008 153.716 174.452 153.448 174.716 152.912H176.528C176.336 153.552 175.968 154.08 175.424 154.496C174.88 154.904 174.212 155.108 173.42 155.108C172.78 155.108 172.204 154.968 171.692 154.688C171.188 154.4 170.792 153.996 170.504 153.476C170.224 152.956 170.083 152.356 170.083 151.676C170.083 150.988 170.224 150.384 170.504 149.864C170.784 149.344 171.176 148.944 171.68 148.664C172.184 148.384 172.764 148.244 173.42 148.244C174.052 148.244 174.616 148.38 175.112 148.652C175.616 148.924 176.004 149.312 176.276 149.816C176.556 150.312 176.696 150.884 176.696 151.532ZM174.956 151.052C174.948 150.62 174.792 150.276 174.488 150.02C174.184 149.756 173.812 149.624 173.372 149.624C172.956 149.624 172.604 149.752 172.316 150.008C172.036 150.256 171.864 150.604 171.8 151.052H174.956ZM180.466 155.108C179.922 155.108 179.434 155.012 179.002 154.82C178.57 154.62 178.226 154.352 177.97 154.016C177.722 153.68 177.586 153.308 177.562 152.9H179.254C179.286 153.156 179.41 153.368 179.626 153.536C179.85 153.704 180.126 153.788 180.454 153.788C180.774 153.788 181.022 153.724 181.198 153.596C181.382 153.468 181.474 153.304 181.474 153.104C181.474 152.888 181.362 152.728 181.138 152.624C180.922 152.512 180.574 152.392 180.094 152.264C179.598 152.144 179.19 152.02 178.87 151.892C178.558 151.764 178.286 151.568 178.054 151.304C177.83 151.04 177.718 150.684 177.718 150.236C177.718 149.868 177.822 149.532 178.03 149.228C178.246 148.924 178.55 148.684 178.942 148.508C179.342 148.332 179.81 148.244 180.346 148.244C181.138 148.244 181.77 148.444 182.242 148.844C182.714 149.236 182.974 149.768 183.022 150.44H181.414C181.39 150.176 181.278 149.968 181.078 149.816C180.886 149.656 180.626 149.576 180.298 149.576C179.994 149.576 179.758 149.632 179.59 149.744C179.43 149.856 179.35 150.012 179.35 150.212C179.35 150.436 179.462 150.608 179.686 150.728C179.91 150.84 180.258 150.956 180.73 151.076C181.21 151.196 181.606 151.32 181.918 151.448C182.23 151.576 182.498 151.776 182.722 152.048C182.954 152.312 183.074 152.664 183.082 153.104C183.082 153.488 182.974 153.832 182.758 154.136C182.55 154.44 182.246 154.68 181.846 154.856C181.454 155.024 180.994 155.108 180.466 155.108ZM187.413 155.108C186.773 155.108 186.197 154.968 185.685 154.688C185.173 154.4 184.769 153.996 184.473 153.476C184.185 152.956 184.041 152.356 184.041 151.676C184.041 150.996 184.189 150.396 184.485 149.876C184.789 149.356 185.201 148.956 185.721 148.676C186.241 148.388 186.821 148.244 187.461 148.244C188.101 148.244 188.681 148.388 189.201 148.676C189.721 148.956 190.129 149.356 190.425 149.876C190.729 150.396 190.881 150.996 190.881 151.676C190.881 152.356 190.725 152.956 190.413 153.476C190.109 153.996 189.693 154.4 189.165 154.688C188.645 154.968 188.061 155.108 187.413 155.108ZM187.413 153.644C187.717 153.644 188.001 153.572 188.265 153.428C188.537 153.276 188.753 153.052 188.913 152.756C189.073 152.46 189.153 152.1 189.153 151.676C189.153 151.044 188.985 150.56 188.649 150.224C188.321 149.88 187.917 149.708 187.437 149.708C186.957 149.708 186.553 149.88 186.225 150.224C185.905 150.56 185.745 151.044 185.745 151.676C185.745 152.308 185.901 152.796 186.213 153.14C186.533 153.476 186.933 153.644 187.413 153.644ZM193.793 146.12V155H192.113V146.12H193.793ZM198.225 153.452L199.905 148.352H201.693L199.233 155H197.193L194.745 148.352H196.545L198.225 153.452ZM208.817 151.532C208.817 151.772 208.801 151.988 208.769 152.18H203.909C203.949 152.66 204.117 153.036 204.413 153.308C204.709 153.58 205.073 153.716 205.505 153.716C206.129 153.716 206.573 153.448 206.837 152.912H208.649C208.457 153.552 208.089 154.08 207.545 154.496C207.001 154.904 206.333 155.108 205.541 155.108C204.901 155.108 204.325 154.968 203.813 154.688C203.309 154.4 202.913 153.996 202.625 153.476C202.345 152.956 202.205 152.356 202.205 151.676C202.205 150.988 202.345 150.384 202.625 149.864C202.905 149.344 203.297 148.944 203.801 148.664C204.305 148.384 204.885 148.244 205.541 148.244C206.173 148.244 206.737 148.38 207.233 148.652C207.737 148.924 208.125 149.312 208.397 149.816C208.677 150.312 208.817 150.884 208.817 151.532ZM207.077 151.052C207.069 150.62 206.913 150.276 206.609 150.02C206.305 149.756 205.933 149.624 205.493 149.624C205.077 149.624 204.725 149.752 204.437 150.008C204.157 150.256 203.985 150.604 203.921 151.052H207.077ZM209.611 151.652C209.611 150.98 209.743 150.384 210.007 149.864C210.279 149.344 210.647 148.944 211.111 148.664C211.575 148.384 212.091 148.244 212.659 148.244C213.091 148.244 213.503 148.34 213.895 148.532C214.287 148.716 214.599 148.964 214.831 149.276V146.12H216.535V155H214.831V154.016C214.623 154.344 214.331 154.608 213.955 154.808C213.579 155.008 213.143 155.108 212.647 155.108C212.087 155.108 211.575 154.964 211.111 154.676C210.647 154.388 210.279 153.984 210.007 153.464C209.743 152.936 209.611 152.332 209.611 151.652ZM214.843 151.676C214.843 151.268 214.763 150.92 214.603 150.632C214.443 150.336 214.227 150.112 213.955 149.96C213.683 149.8 213.391 149.72 213.079 149.72C212.767 149.72 212.479 149.796 212.215 149.948C211.951 150.1 211.735 150.324 211.567 150.62C211.407 150.908 211.327 151.252 211.327 151.652C211.327 152.052 211.407 152.404 211.567 152.708C211.735 153.004 211.951 153.232 212.215 153.392C212.487 153.552 212.775 153.632 213.079 153.632C213.391 153.632 213.683 153.556 213.955 153.404C214.227 153.244 214.443 153.02 214.603 152.732C214.763 152.436 214.843 152.084 214.843 151.676Z" fill="white"/>
13
+ <path d="M130 109L125 111.887V106.113L130 109ZM48 109H47.5V108.5H48V109ZM47.5 188L47.5 109H48.5L48.5 188H47.5ZM48 108.5H125.5V109.5H48V108.5Z" fill="#A3A3A3"/>
14
+ <path d="M130 143L125 145.887V140.113L130 143ZM56 143H55.5V142.5H56V143ZM55.5 188V143H56.5V188H55.5ZM56 142.5H125.5V143.5H56V142.5Z" fill="#A3A3A3"/>
15
+ <path d="M64 188L61.1132 183H66.8868L64 188ZM64 159H63.5V158.5H64V159ZM63.5 183.5V159H64.5V183.5H63.5ZM64 158.5H130V159.5H64V158.5Z" fill="#A3A3A3"/>
16
+ <path d="M130 56L125 58.8868V53.1132L130 56ZM110 56H109.5V55.5H110V56ZM110 101V101.5H109.5V101H110ZM110 55.5H125.5V56.5H110V55.5ZM130 101.5H110V100.5H130V101.5ZM109.5 101V56H110.5V101H109.5Z" fill="#A3A3A3"/>
17
+ <path d="M250 143L255 145.887V140.113L250 143ZM308 56H308.5V55.5H308V56ZM308 143V143.5H308.5V143H308ZM250 56.5H308V55.5H250V56.5ZM307.5 56V143H308.5V56H307.5ZM308 142.5H254.5V143.5H308V142.5Z" fill="#A3A3A3"/>
18
+ <path d="M250 151L255 153.887V148.113L250 151ZM321 151V151.5H321.5V151H321ZM321 14H321.5V13.5H321V14ZM321 150.5L254.5 150.5V151.5L321 151.5V150.5ZM250 14.5L321 14.5V13.5L250 13.5V14.5ZM320.5 14L320.5 151H321.5L321.5 14H320.5Z" fill="#A3A3A3"/>
19
+ <path d="M321 188L323.887 183H318.113L321 188ZM321 159H321.5V158.5H321V159ZM321.5 183.5V159H320.5V183.5H321.5ZM321 158.5L250 158.5V159.5L321 159.5V158.5Z" fill="#A3A3A3"/>
20
+ <rect y="188" width="120" height="26" rx="4" fill="#71347B"/>
21
+ <path d="M41.648 205L39.8 201.736H39.008V205H37.328V196.624H40.472C41.12 196.624 41.672 196.74 42.128 196.972C42.584 197.196 42.924 197.504 43.148 197.896C43.38 198.28 43.496 198.712 43.496 199.192C43.496 199.744 43.336 200.244 43.016 200.692C42.696 201.132 42.22 201.436 41.588 201.604L43.592 205H41.648ZM39.008 200.476H40.412C40.868 200.476 41.208 200.368 41.432 200.152C41.656 199.928 41.768 199.62 41.768 199.228C41.768 198.844 41.656 198.548 41.432 198.34C41.208 198.124 40.868 198.016 40.412 198.016H39.008V200.476ZM51.1955 201.532C51.1955 201.772 51.1795 201.988 51.1475 202.18H46.2875C46.3275 202.66 46.4955 203.036 46.7915 203.308C47.0875 203.58 47.4515 203.716 47.8835 203.716C48.5075 203.716 48.9515 203.448 49.2155 202.912H51.0275C50.8355 203.552 50.4675 204.08 49.9235 204.496C49.3795 204.904 48.7115 205.108 47.9195 205.108C47.2795 205.108 46.7035 204.968 46.1915 204.688C45.6875 204.4 45.2915 203.996 45.0035 203.476C44.7235 202.956 44.5835 202.356 44.5835 201.676C44.5835 200.988 44.7235 200.384 45.0035 199.864C45.2835 199.344 45.6755 198.944 46.1795 198.664C46.6835 198.384 47.2635 198.244 47.9195 198.244C48.5515 198.244 49.1155 198.38 49.6115 198.652C50.1155 198.924 50.5035 199.312 50.7755 199.816C51.0555 200.312 51.1955 200.884 51.1955 201.532ZM49.4555 201.052C49.4475 200.62 49.2915 200.276 48.9875 200.02C48.6835 199.756 48.3115 199.624 47.8715 199.624C47.4555 199.624 47.1035 199.752 46.8155 200.008C46.5355 200.256 46.3635 200.604 46.2995 201.052H49.4555ZM55.3738 205.108C54.7338 205.108 54.1578 204.968 53.6458 204.688C53.1338 204.4 52.7298 203.996 52.4338 203.476C52.1458 202.956 52.0018 202.356 52.0018 201.676C52.0018 200.996 52.1498 200.396 52.4458 199.876C52.7498 199.356 53.1618 198.956 53.6818 198.676C54.2018 198.388 54.7818 198.244 55.4218 198.244C56.0618 198.244 56.6418 198.388 57.1618 198.676C57.6818 198.956 58.0898 199.356 58.3858 199.876C58.6898 200.396 58.8418 200.996 58.8418 201.676C58.8418 202.356 58.6858 202.956 58.3737 203.476C58.0698 203.996 57.6538 204.4 57.1258 204.688C56.6058 204.968 56.0218 205.108 55.3738 205.108ZM55.3738 203.644C55.6778 203.644 55.9618 203.572 56.2258 203.428C56.4978 203.276 56.7138 203.052 56.8738 202.756C57.0338 202.46 57.1138 202.1 57.1138 201.676C57.1138 201.044 56.9458 200.56 56.6098 200.224C56.2818 199.88 55.8778 199.708 55.3978 199.708C54.9178 199.708 54.5138 199.88 54.1858 200.224C53.8658 200.56 53.7058 201.044 53.7058 201.676C53.7058 202.308 53.8618 202.796 54.1738 203.14C54.4938 203.476 54.8938 203.644 55.3738 203.644ZM61.7541 199.312C61.9701 199.008 62.2661 198.756 62.6421 198.556C63.0261 198.348 63.4621 198.244 63.9501 198.244C64.5181 198.244 65.0301 198.384 65.4861 198.664C65.9501 198.944 66.3141 199.344 66.5781 199.864C66.8501 200.376 66.9861 200.972 66.9861 201.652C66.9861 202.332 66.8501 202.936 66.5781 203.464C66.3141 203.984 65.9501 204.388 65.4861 204.676C65.0301 204.964 64.5181 205.108 63.9501 205.108C63.4621 205.108 63.0301 205.008 62.6541 204.808C62.2861 204.608 61.9861 204.356 61.7541 204.052V208.168H60.0741V198.352H61.7541V199.312ZM65.2701 201.652C65.2701 201.252 65.1861 200.908 65.0181 200.62C64.8581 200.324 64.6421 200.1 64.3701 199.948C64.1061 199.796 63.8181 199.72 63.5061 199.72C63.2021 199.72 62.9141 199.8 62.6421 199.96C62.3781 200.112 62.1621 200.336 61.9941 200.632C61.8341 200.928 61.7541 201.276 61.7541 201.676C61.7541 202.076 61.8341 202.424 61.9941 202.72C62.1621 203.016 62.3781 203.244 62.6421 203.404C62.9141 203.556 63.2021 203.632 63.5061 203.632C63.8181 203.632 64.1061 203.552 64.3701 203.392C64.6421 203.232 64.8581 203.004 65.0181 202.708C65.1861 202.412 65.2701 202.06 65.2701 201.652ZM74.3869 201.532C74.3869 201.772 74.3709 201.988 74.3389 202.18H69.4789C69.5189 202.66 69.6869 203.036 69.9829 203.308C70.2789 203.58 70.6429 203.716 71.0749 203.716C71.6989 203.716 72.1429 203.448 72.4069 202.912H74.2189C74.0269 203.552 73.6589 204.08 73.1149 204.496C72.5709 204.904 71.9029 205.108 71.1109 205.108C70.4709 205.108 69.8949 204.968 69.3829 204.688C68.8789 204.4 68.4829 203.996 68.1949 203.476C67.9149 202.956 67.7749 202.356 67.7749 201.676C67.7749 200.988 67.9149 200.384 68.1949 199.864C68.4749 199.344 68.8669 198.944 69.3709 198.664C69.8749 198.384 70.4549 198.244 71.1109 198.244C71.7429 198.244 72.3069 198.38 72.8029 198.652C73.3069 198.924 73.6949 199.312 73.9669 199.816C74.2469 200.312 74.3869 200.884 74.3869 201.532ZM72.6469 201.052C72.6389 200.62 72.4829 200.276 72.1789 200.02C71.8749 199.756 71.5029 199.624 71.0629 199.624C70.6469 199.624 70.2949 199.752 70.0069 200.008C69.7269 200.256 69.5549 200.604 69.4909 201.052H72.6469ZM79.2972 198.256C80.0892 198.256 80.7292 198.508 81.2172 199.012C81.7052 199.508 81.9492 200.204 81.9492 201.1V205H80.2692V201.328C80.2692 200.8 80.1372 200.396 79.8732 200.116C79.6092 199.828 79.2492 199.684 78.7932 199.684C78.3292 199.684 77.9612 199.828 77.6892 200.116C77.4252 200.396 77.2932 200.8 77.2932 201.328V205H75.6132V198.352H77.2932V199.18C77.5172 198.892 77.8012 198.668 78.1452 198.508C78.4972 198.34 78.8812 198.256 79.2972 198.256Z" fill="white"/>
22
+ <path d="M120 201L125 203.887V198.113L120 201ZM124.5 201.5H260V200.5H124.5V201.5Z" fill="#A3A3A3"/>
23
+ <rect x="130" y="259" width="120" height="26" rx="4" fill="#71347B"/>
24
+ <path d="M168.92 271.8C168.92 270.976 169.104 270.24 169.472 269.592C169.848 268.936 170.356 268.428 170.996 268.068C171.644 267.7 172.368 267.516 173.168 267.516C174.104 267.516 174.924 267.756 175.628 268.236C176.332 268.716 176.824 269.38 177.104 270.228H175.172C174.98 269.828 174.708 269.528 174.356 269.328C174.012 269.128 173.612 269.028 173.156 269.028C172.668 269.028 172.232 269.144 171.848 269.376C171.472 269.6 171.176 269.92 170.96 270.336C170.752 270.752 170.648 271.24 170.648 271.8C170.648 272.352 170.752 272.84 170.96 273.264C171.176 273.68 171.472 274.004 171.848 274.236C172.232 274.46 172.668 274.572 173.156 274.572C173.612 274.572 174.012 274.472 174.356 274.272C174.708 274.064 174.98 273.76 175.172 273.36H177.104C176.824 274.216 176.332 274.884 175.628 275.364C174.932 275.836 174.112 276.072 173.168 276.072C172.368 276.072 171.644 275.892 170.996 275.532C170.356 275.164 169.848 274.656 169.472 274.008C169.104 273.36 168.92 272.624 168.92 271.8ZM180.219 267.12V276H178.539V267.12H180.219ZM184.831 276.108C184.191 276.108 183.615 275.968 183.103 275.688C182.591 275.4 182.187 274.996 181.891 274.476C181.603 273.956 181.459 273.356 181.459 272.676C181.459 271.996 181.607 271.396 181.903 270.876C182.207 270.356 182.619 269.956 183.139 269.676C183.659 269.388 184.239 269.244 184.879 269.244C185.519 269.244 186.099 269.388 186.619 269.676C187.139 269.956 187.547 270.356 187.843 270.876C188.147 271.396 188.299 271.996 188.299 272.676C188.299 273.356 188.143 273.956 187.831 274.476C187.527 274.996 187.111 275.4 186.583 275.688C186.063 275.968 185.479 276.108 184.831 276.108ZM184.831 274.644C185.135 274.644 185.419 274.572 185.683 274.428C185.955 274.276 186.171 274.052 186.331 273.756C186.491 273.46 186.571 273.1 186.571 272.676C186.571 272.044 186.403 271.56 186.067 271.224C185.739 270.88 185.335 270.708 184.855 270.708C184.375 270.708 183.971 270.88 183.643 271.224C183.323 271.56 183.163 272.044 183.163 272.676C183.163 273.308 183.319 273.796 183.631 274.14C183.951 274.476 184.351 274.644 184.831 274.644ZM192.075 276.108C191.531 276.108 191.043 276.012 190.611 275.82C190.179 275.62 189.835 275.352 189.579 275.016C189.331 274.68 189.195 274.308 189.171 273.9H190.863C190.895 274.156 191.019 274.368 191.235 274.536C191.459 274.704 191.735 274.788 192.063 274.788C192.383 274.788 192.631 274.724 192.807 274.596C192.991 274.468 193.083 274.304 193.083 274.104C193.083 273.888 192.971 273.728 192.747 273.624C192.531 273.512 192.183 273.392 191.703 273.264C191.207 273.144 190.799 273.02 190.479 272.892C190.167 272.764 189.895 272.568 189.663 272.304C189.439 272.04 189.327 271.684 189.327 271.236C189.327 270.868 189.431 270.532 189.639 270.228C189.855 269.924 190.159 269.684 190.551 269.508C190.951 269.332 191.419 269.244 191.955 269.244C192.747 269.244 193.379 269.444 193.851 269.844C194.323 270.236 194.583 270.768 194.631 271.44H193.023C192.999 271.176 192.887 270.968 192.687 270.816C192.495 270.656 192.235 270.576 191.907 270.576C191.603 270.576 191.367 270.632 191.199 270.744C191.039 270.856 190.959 271.012 190.959 271.212C190.959 271.436 191.071 271.608 191.295 271.728C191.519 271.84 191.867 271.956 192.339 272.076C192.819 272.196 193.215 272.32 193.527 272.448C193.839 272.576 194.107 272.776 194.331 273.048C194.563 273.312 194.683 273.664 194.691 274.104C194.691 274.488 194.583 274.832 194.367 275.136C194.159 275.44 193.855 275.68 193.455 275.856C193.063 276.024 192.603 276.108 192.075 276.108ZM202.25 272.532C202.25 272.772 202.234 272.988 202.202 273.18H197.342C197.382 273.66 197.55 274.036 197.846 274.308C198.142 274.58 198.506 274.716 198.938 274.716C199.562 274.716 200.006 274.448 200.27 273.912H202.082C201.89 274.552 201.522 275.08 200.978 275.496C200.434 275.904 199.766 276.108 198.974 276.108C198.334 276.108 197.758 275.968 197.246 275.688C196.742 275.4 196.346 274.996 196.058 274.476C195.778 273.956 195.638 273.356 195.638 272.676C195.638 271.988 195.778 271.384 196.058 270.864C196.338 270.344 196.73 269.944 197.234 269.664C197.738 269.384 198.318 269.244 198.974 269.244C199.606 269.244 200.17 269.38 200.666 269.652C201.17 269.924 201.558 270.312 201.83 270.816C202.11 271.312 202.25 271.884 202.25 272.532ZM200.51 272.052C200.502 271.62 200.346 271.276 200.042 271.02C199.738 270.756 199.366 270.624 198.926 270.624C198.51 270.624 198.158 270.752 197.87 271.008C197.59 271.256 197.418 271.604 197.354 272.052H200.51ZM203.044 272.652C203.044 271.98 203.176 271.384 203.44 270.864C203.712 270.344 204.08 269.944 204.544 269.664C205.008 269.384 205.524 269.244 206.092 269.244C206.524 269.244 206.936 269.34 207.328 269.532C207.72 269.716 208.032 269.964 208.264 270.276V267.12H209.968V276H208.264V275.016C208.056 275.344 207.764 275.608 207.388 275.808C207.012 276.008 206.576 276.108 206.08 276.108C205.52 276.108 205.008 275.964 204.544 275.676C204.08 275.388 203.712 274.984 203.44 274.464C203.176 273.936 203.044 273.332 203.044 272.652ZM208.276 272.676C208.276 272.268 208.196 271.92 208.036 271.632C207.876 271.336 207.66 271.112 207.388 270.96C207.116 270.8 206.824 270.72 206.512 270.72C206.2 270.72 205.912 270.796 205.648 270.948C205.384 271.1 205.168 271.324 205 271.62C204.84 271.908 204.76 272.252 204.76 272.652C204.76 273.052 204.84 273.404 205 273.708C205.168 274.004 205.384 274.232 205.648 274.392C205.92 274.552 206.208 274.632 206.512 274.632C206.824 274.632 207.116 274.556 207.388 274.404C207.66 274.244 207.876 274.02 208.036 273.732C208.196 273.436 208.276 273.084 208.276 272.676Z" fill="white"/>
25
+ <path d="M250 272L255 274.887V269.113L250 272ZM320 272V272.5H320.5V272H320ZM254.5 272.5H320V271.5H254.5V272.5ZM320.5 272V214H319.5V272H320.5Z" fill="#A3A3A3"/>
26
+ <path d="M64 214L66.8867 219H61.1133L64 214ZM64 272V272.5H63.5V272H64ZM130 272.5H64V271.5H130V272.5ZM63.5 272V218.5H64.5V272H63.5Z" fill="#A3A3A3"/>
27
+ <rect x="260" y="188" width="120" height="26" rx="4" fill="#71347B"/>
28
+ <path d="M304.352 196.624L301.28 205H299.24L296.168 196.624H297.968L300.272 203.284L302.564 196.624H304.352ZM311.539 201.532C311.539 201.772 311.523 201.988 311.491 202.18H306.631C306.671 202.66 306.839 203.036 307.135 203.308C307.431 203.58 307.795 203.716 308.227 203.716C308.851 203.716 309.295 203.448 309.559 202.912H311.371C311.179 203.552 310.811 204.08 310.267 204.496C309.723 204.904 309.055 205.108 308.263 205.108C307.623 205.108 307.047 204.968 306.535 204.688C306.031 204.4 305.635 203.996 305.347 203.476C305.067 202.956 304.927 202.356 304.927 201.676C304.927 200.988 305.067 200.384 305.347 199.864C305.627 199.344 306.019 198.944 306.523 198.664C307.027 198.384 307.607 198.244 308.263 198.244C308.895 198.244 309.459 198.38 309.955 198.652C310.459 198.924 310.847 199.312 311.119 199.816C311.399 200.312 311.539 200.884 311.539 201.532ZM309.799 201.052C309.791 200.62 309.635 200.276 309.331 200.02C309.027 199.756 308.655 199.624 308.215 199.624C307.799 199.624 307.447 199.752 307.159 200.008C306.879 200.256 306.707 200.604 306.643 201.052H309.799ZM314.446 199.384C314.662 199.032 314.942 198.756 315.286 198.556C315.638 198.356 316.038 198.256 316.486 198.256V200.02H316.042C315.514 200.02 315.114 200.144 314.842 200.392C314.578 200.64 314.446 201.072 314.446 201.688V205H312.766V198.352H314.446V199.384ZM318.469 197.56C318.173 197.56 317.925 197.468 317.725 197.284C317.533 197.092 317.437 196.856 317.437 196.576C317.437 196.296 317.533 196.064 317.725 195.88C317.925 195.688 318.173 195.592 318.469 195.592C318.765 195.592 319.009 195.688 319.201 195.88C319.401 196.064 319.501 196.296 319.501 196.576C319.501 196.856 319.401 197.092 319.201 197.284C319.009 197.468 318.765 197.56 318.469 197.56ZM319.297 198.352V205H317.617V198.352H319.297ZM324.005 199.732H322.841V205H321.137V199.732H320.381V198.352H321.137V198.016C321.137 197.2 321.369 196.6 321.833 196.216C322.297 195.832 322.997 195.652 323.933 195.676V197.092C323.525 197.084 323.241 197.152 323.081 197.296C322.921 197.44 322.841 197.7 322.841 198.076V198.352H324.005V199.732ZM325.946 197.56C325.65 197.56 325.402 197.468 325.202 197.284C325.01 197.092 324.914 196.856 324.914 196.576C324.914 196.296 325.01 196.064 325.202 195.88C325.402 195.688 325.65 195.592 325.946 195.592C326.242 195.592 326.486 195.688 326.678 195.88C326.878 196.064 326.978 196.296 326.978 196.576C326.978 196.856 326.878 197.092 326.678 197.284C326.486 197.468 326.242 197.56 325.946 197.56ZM326.774 198.352V205H325.094V198.352H326.774ZM334.613 201.532C334.613 201.772 334.597 201.988 334.565 202.18H329.705C329.745 202.66 329.913 203.036 330.209 203.308C330.505 203.58 330.869 203.716 331.301 203.716C331.925 203.716 332.369 203.448 332.633 202.912H334.445C334.253 203.552 333.885 204.08 333.341 204.496C332.797 204.904 332.129 205.108 331.337 205.108C330.697 205.108 330.121 204.968 329.609 204.688C329.105 204.4 328.709 203.996 328.421 203.476C328.141 202.956 328.001 202.356 328.001 201.676C328.001 200.988 328.141 200.384 328.421 199.864C328.701 199.344 329.093 198.944 329.597 198.664C330.101 198.384 330.681 198.244 331.337 198.244C331.969 198.244 332.533 198.38 333.029 198.652C333.533 198.924 333.921 199.312 334.193 199.816C334.473 200.312 334.613 200.884 334.613 201.532ZM332.873 201.052C332.865 200.62 332.709 200.276 332.405 200.02C332.101 199.756 331.729 199.624 331.289 199.624C330.873 199.624 330.521 199.752 330.233 200.008C329.953 200.256 329.781 200.604 329.717 201.052H332.873ZM335.408 201.652C335.408 200.98 335.54 200.384 335.804 199.864C336.076 199.344 336.444 198.944 336.908 198.664C337.372 198.384 337.888 198.244 338.456 198.244C338.888 198.244 339.3 198.34 339.692 198.532C340.084 198.716 340.396 198.964 340.628 199.276V196.12H342.332V205H340.628V204.016C340.42 204.344 340.128 204.608 339.752 204.808C339.376 205.008 338.94 205.108 338.444 205.108C337.884 205.108 337.372 204.964 336.908 204.676C336.444 204.388 336.076 203.984 335.804 203.464C335.54 202.936 335.408 202.332 335.408 201.652ZM340.64 201.676C340.64 201.268 340.56 200.92 340.4 200.632C340.24 200.336 340.024 200.112 339.752 199.96C339.48 199.8 339.188 199.72 338.876 199.72C338.564 199.72 338.276 199.796 338.012 199.948C337.748 200.1 337.532 200.324 337.364 200.62C337.204 200.908 337.124 201.252 337.124 201.652C337.124 202.052 337.204 202.404 337.364 202.708C337.532 203.004 337.748 203.232 338.012 203.392C338.284 203.552 338.572 203.632 338.876 203.632C339.188 203.632 339.48 203.556 339.752 203.404C340.024 203.244 340.24 203.02 340.4 202.732C340.56 202.436 340.64 202.084 340.64 201.676Z" fill="white"/>
29
+ </svg>
@@ -0,0 +1,47 @@
1
+ <svg width="604" height="210" viewBox="0 0 604 210" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M278 5L283 7.88675V2.11325L278 5ZM282.5 5.5H298V4.5H282.5V5.5Z" fill="#A3A3A3"/>
3
+ <path d="M294 13L289 10.1132V15.8868L294 13ZM289.5 12.5L274 12.5V13.5L289.5 13.5V12.5Z" fill="#A3A3A3"/>
4
+ <rect x="298" width="120" height="26" rx="4" fill="#71347B"/>
5
+ <path d="M334 8.624V9.98H330.508V12.128H333.184V13.46H330.508V17H328.828V8.624H334ZM341.371 13.532C341.371 13.772 341.355 13.988 341.323 14.18H336.463C336.503 14.66 336.671 15.036 336.967 15.308C337.263 15.58 337.627 15.716 338.059 15.716C338.683 15.716 339.127 15.448 339.391 14.912H341.203C341.011 15.552 340.643 16.08 340.099 16.496C339.555 16.904 338.887 17.108 338.095 17.108C337.455 17.108 336.879 16.968 336.367 16.688C335.863 16.4 335.467 15.996 335.179 15.476C334.899 14.956 334.759 14.356 334.759 13.676C334.759 12.988 334.899 12.384 335.179 11.864C335.459 11.344 335.851 10.944 336.355 10.664C336.859 10.384 337.439 10.244 338.095 10.244C338.727 10.244 339.291 10.38 339.787 10.652C340.291 10.924 340.679 11.312 340.951 11.816C341.231 12.312 341.371 12.884 341.371 13.532ZM339.631 13.052C339.623 12.62 339.467 12.276 339.163 12.02C338.859 11.756 338.487 11.624 338.047 11.624C337.631 11.624 337.279 11.752 336.991 12.008C336.711 12.256 336.539 12.604 336.475 13.052H339.631ZM348.778 13.532C348.778 13.772 348.762 13.988 348.73 14.18H343.87C343.91 14.66 344.078 15.036 344.374 15.308C344.67 15.58 345.034 15.716 345.466 15.716C346.09 15.716 346.534 15.448 346.798 14.912H348.61C348.418 15.552 348.05 16.08 347.506 16.496C346.962 16.904 346.294 17.108 345.502 17.108C344.862 17.108 344.286 16.968 343.774 16.688C343.27 16.4 342.874 15.996 342.586 15.476C342.306 14.956 342.166 14.356 342.166 13.676C342.166 12.988 342.306 12.384 342.586 11.864C342.866 11.344 343.258 10.944 343.762 10.664C344.266 10.384 344.846 10.244 345.502 10.244C346.134 10.244 346.698 10.38 347.194 10.652C347.698 10.924 348.086 11.312 348.358 11.816C348.638 12.312 348.778 12.884 348.778 13.532ZM347.038 13.052C347.03 12.62 346.874 12.276 346.57 12.02C346.266 11.756 345.894 11.624 345.454 11.624C345.038 11.624 344.686 11.752 344.398 12.008C344.118 12.256 343.946 12.604 343.882 13.052H347.038ZM349.572 13.652C349.572 12.98 349.704 12.384 349.968 11.864C350.24 11.344 350.608 10.944 351.072 10.664C351.536 10.384 352.052 10.244 352.62 10.244C353.052 10.244 353.464 10.34 353.856 10.532C354.248 10.716 354.56 10.964 354.792 11.276V8.12H356.496V17H354.792V16.016C354.584 16.344 354.292 16.608 353.916 16.808C353.54 17.008 353.104 17.108 352.608 17.108C352.048 17.108 351.536 16.964 351.072 16.676C350.608 16.388 350.24 15.984 349.968 15.464C349.704 14.936 349.572 14.332 349.572 13.652ZM354.804 13.676C354.804 13.268 354.724 12.92 354.564 12.632C354.404 12.336 354.188 12.112 353.916 11.96C353.644 11.8 353.352 11.72 353.04 11.72C352.728 11.72 352.44 11.796 352.176 11.948C351.912 12.1 351.696 12.324 351.528 12.62C351.368 12.908 351.288 13.252 351.288 13.652C351.288 14.052 351.368 14.404 351.528 14.708C351.696 15.004 351.912 15.232 352.176 15.392C352.448 15.552 352.736 15.632 353.04 15.632C353.352 15.632 353.644 15.556 353.916 15.404C354.188 15.244 354.404 15.02 354.564 14.732C354.724 14.436 354.804 14.084 354.804 13.676ZM359.817 11.324C360.033 11.004 360.329 10.744 360.705 10.544C361.089 10.344 361.525 10.244 362.013 10.244C362.581 10.244 363.093 10.384 363.549 10.664C364.013 10.944 364.377 11.344 364.641 11.864C364.913 12.376 365.049 12.972 365.049 13.652C365.049 14.332 364.913 14.936 364.641 15.464C364.377 15.984 364.013 16.388 363.549 16.676C363.093 16.964 362.581 17.108 362.013 17.108C361.517 17.108 361.081 17.012 360.705 16.82C360.337 16.62 360.041 16.364 359.817 16.052V17H358.137V8.12H359.817V11.324ZM363.333 13.652C363.333 13.252 363.249 12.908 363.081 12.62C362.921 12.324 362.705 12.1 362.433 11.948C362.169 11.796 361.881 11.72 361.569 11.72C361.265 11.72 360.977 11.8 360.705 11.96C360.441 12.112 360.225 12.336 360.057 12.632C359.897 12.928 359.817 13.276 359.817 13.676C359.817 14.076 359.897 14.424 360.057 14.72C360.225 15.016 360.441 15.244 360.705 15.404C360.977 15.556 361.265 15.632 361.569 15.632C361.881 15.632 362.169 15.552 362.433 15.392C362.705 15.232 362.921 15.004 363.081 14.708C363.249 14.412 363.333 14.06 363.333 13.652ZM365.837 13.652C365.837 12.98 365.969 12.384 366.233 11.864C366.505 11.344 366.869 10.944 367.325 10.664C367.789 10.384 368.305 10.244 368.873 10.244C369.369 10.244 369.801 10.344 370.169 10.544C370.545 10.744 370.845 10.996 371.069 11.3V10.352H372.761V17H371.069V16.028C370.853 16.34 370.553 16.6 370.169 16.808C369.793 17.008 369.357 17.108 368.861 17.108C368.301 17.108 367.789 16.964 367.325 16.676C366.869 16.388 366.505 15.984 366.233 15.464C365.969 14.936 365.837 14.332 365.837 13.652ZM371.069 13.676C371.069 13.268 370.989 12.92 370.829 12.632C370.669 12.336 370.453 12.112 370.181 11.96C369.909 11.8 369.617 11.72 369.305 11.72C368.993 11.72 368.705 11.796 368.441 11.948C368.177 12.1 367.961 12.324 367.793 12.62C367.633 12.908 367.553 13.252 367.553 13.652C367.553 14.052 367.633 14.404 367.793 14.708C367.961 15.004 368.177 15.232 368.441 15.392C368.713 15.552 369.001 15.632 369.305 15.632C369.617 15.632 369.909 15.556 370.181 15.404C370.453 15.244 370.669 15.02 370.829 14.732C370.989 14.436 371.069 14.084 371.069 13.676ZM373.97 13.676C373.97 12.988 374.11 12.388 374.39 11.876C374.67 11.356 375.058 10.956 375.554 10.676C376.05 10.388 376.618 10.244 377.258 10.244C378.082 10.244 378.762 10.452 379.298 10.868C379.842 11.276 380.206 11.852 380.39 12.596H378.578C378.482 12.308 378.318 12.084 378.086 11.924C377.862 11.756 377.582 11.672 377.246 11.672C376.766 11.672 376.386 11.848 376.106 12.2C375.826 12.544 375.686 13.036 375.686 13.676C375.686 14.308 375.826 14.8 376.106 15.152C376.386 15.496 376.766 15.668 377.246 15.668C377.926 15.668 378.37 15.364 378.578 14.756H380.39C380.206 15.476 379.842 16.048 379.298 16.472C378.754 16.896 378.074 17.108 377.258 17.108C376.618 17.108 376.05 16.968 375.554 16.688C375.058 16.4 374.67 16 374.39 15.488C374.11 14.968 373.97 14.364 373.97 13.676ZM385.557 17L383.301 14.168V17H381.621V8.12H383.301V13.172L385.533 10.352H387.717L384.789 13.688L387.741 17H385.557Z" fill="white"/>
6
+ <path d="M75 45L77.8868 40H72.1132L75 45ZM75 13V12.5H74.5V13H75ZM154 12.5L75 12.5V13.5L154 13.5V12.5ZM74.5 13V40.5H75.5V13H74.5Z" fill="#A3A3A3"/>
7
+ <path d="M154 153L149 150.113V155.887L154 153ZM1 13V12.5H0.5L0.5 13H1ZM1 153H0.5V153.5H1V153ZM154 12.5H1L1 13.5H154V12.5ZM0.5 13L0.5 153H1.5L1.5 13H0.5ZM1 153.5H149.5V152.5H1V153.5Z" fill="#A3A3A3"/>
8
+ <path d="M464 29.5V196.5" stroke="#A3A3A3"/>
9
+ <path d="M484 30H464" stroke="#A3A3A3"/>
10
+ <rect x="484" y="17" width="120" height="26" rx="4" fill="#71347B"/>
11
+ <path d="M521.464 32.404H518.128L517.576 34H515.812L518.824 25.612H520.78L523.792 34H522.016L521.464 32.404ZM521.008 31.06L519.796 27.556L518.584 31.06H521.008ZM527.462 34.108C526.918 34.108 526.43 34.012 525.998 33.82C525.566 33.62 525.222 33.352 524.966 33.016C524.718 32.68 524.582 32.308 524.558 31.9H526.25C526.282 32.156 526.406 32.368 526.622 32.536C526.846 32.704 527.122 32.788 527.45 32.788C527.77 32.788 528.018 32.724 528.194 32.596C528.378 32.468 528.47 32.304 528.47 32.104C528.47 31.888 528.358 31.728 528.134 31.624C527.918 31.512 527.57 31.392 527.09 31.264C526.594 31.144 526.186 31.02 525.866 30.892C525.554 30.764 525.282 30.568 525.05 30.304C524.826 30.04 524.714 29.684 524.714 29.236C524.714 28.868 524.818 28.532 525.026 28.228C525.242 27.924 525.546 27.684 525.938 27.508C526.338 27.332 526.806 27.244 527.342 27.244C528.134 27.244 528.766 27.444 529.238 27.844C529.71 28.236 529.97 28.768 530.018 29.44H528.41C528.386 29.176 528.274 28.968 528.074 28.816C527.882 28.656 527.622 28.576 527.294 28.576C526.99 28.576 526.754 28.632 526.586 28.744C526.426 28.856 526.346 29.012 526.346 29.212C526.346 29.436 526.458 29.608 526.682 29.728C526.906 29.84 527.254 29.956 527.726 30.076C528.206 30.196 528.602 30.32 528.914 30.448C529.226 30.576 529.494 30.776 529.718 31.048C529.95 31.312 530.07 31.664 530.078 32.104C530.078 32.488 529.97 32.832 529.754 33.136C529.546 33.44 529.242 33.68 528.842 33.856C528.45 34.024 527.99 34.108 527.462 34.108ZM534.001 34.108C533.457 34.108 532.969 34.012 532.537 33.82C532.105 33.62 531.761 33.352 531.505 33.016C531.257 32.68 531.121 32.308 531.097 31.9H532.789C532.821 32.156 532.945 32.368 533.161 32.536C533.385 32.704 533.661 32.788 533.989 32.788C534.309 32.788 534.557 32.724 534.733 32.596C534.917 32.468 535.009 32.304 535.009 32.104C535.009 31.888 534.897 31.728 534.673 31.624C534.457 31.512 534.109 31.392 533.629 31.264C533.133 31.144 532.725 31.02 532.405 30.892C532.093 30.764 531.821 30.568 531.589 30.304C531.365 30.04 531.253 29.684 531.253 29.236C531.253 28.868 531.357 28.532 531.565 28.228C531.781 27.924 532.085 27.684 532.477 27.508C532.877 27.332 533.345 27.244 533.881 27.244C534.673 27.244 535.305 27.444 535.777 27.844C536.249 28.236 536.509 28.768 536.557 29.44H534.949C534.925 29.176 534.813 28.968 534.613 28.816C534.421 28.656 534.161 28.576 533.833 28.576C533.529 28.576 533.293 28.632 533.125 28.744C532.965 28.856 532.885 29.012 532.885 29.212C532.885 29.436 532.997 29.608 533.221 29.728C533.445 29.84 533.793 29.956 534.265 30.076C534.745 30.196 535.141 30.32 535.453 30.448C535.765 30.576 536.033 30.776 536.257 31.048C536.489 31.312 536.609 31.664 536.617 32.104C536.617 32.488 536.509 32.832 536.293 33.136C536.085 33.44 535.781 33.68 535.381 33.856C534.989 34.024 534.529 34.108 534.001 34.108ZM538.848 26.56C538.552 26.56 538.304 26.468 538.104 26.284C537.912 26.092 537.816 25.856 537.816 25.576C537.816 25.296 537.912 25.064 538.104 24.88C538.304 24.688 538.552 24.592 538.848 24.592C539.144 24.592 539.388 24.688 539.58 24.88C539.78 25.064 539.88 25.296 539.88 25.576C539.88 25.856 539.78 26.092 539.58 26.284C539.388 26.468 539.144 26.56 538.848 26.56ZM539.676 27.352V34H537.996V27.352H539.676ZM543.94 27.244C544.436 27.244 544.872 27.344 545.248 27.544C545.624 27.736 545.92 27.988 546.136 28.3V27.352H547.828V34.048C547.828 34.664 547.704 35.212 547.456 35.692C547.208 36.18 546.836 36.564 546.34 36.844C545.844 37.132 545.244 37.276 544.54 37.276C543.596 37.276 542.82 37.056 542.212 36.616C541.612 36.176 541.272 35.576 541.192 34.816H542.86C542.948 35.12 543.136 35.36 543.424 35.536C543.72 35.72 544.076 35.812 544.492 35.812C544.98 35.812 545.376 35.664 545.68 35.368C545.984 35.08 546.136 34.64 546.136 34.048V33.016C545.92 33.328 545.62 33.588 545.236 33.796C544.86 34.004 544.428 34.108 543.94 34.108C543.38 34.108 542.868 33.964 542.404 33.676C541.94 33.388 541.572 32.984 541.3 32.464C541.036 31.936 540.904 31.332 540.904 30.652C540.904 29.98 541.036 29.384 541.3 28.864C541.572 28.344 541.936 27.944 542.392 27.664C542.856 27.384 543.372 27.244 543.94 27.244ZM546.136 30.676C546.136 30.268 546.056 29.92 545.896 29.632C545.736 29.336 545.52 29.112 545.248 28.96C544.976 28.8 544.684 28.72 544.372 28.72C544.06 28.72 543.772 28.796 543.508 28.948C543.244 29.1 543.028 29.324 542.86 29.62C542.7 29.908 542.62 30.252 542.62 30.652C542.62 31.052 542.7 31.404 542.86 31.708C543.028 32.004 543.244 32.232 543.508 32.392C543.78 32.552 544.068 32.632 544.372 32.632C544.684 32.632 544.976 32.556 545.248 32.404C545.52 32.244 545.736 32.02 545.896 31.732C546.056 31.436 546.136 31.084 546.136 30.676ZM553.153 27.256C553.945 27.256 554.585 27.508 555.073 28.012C555.561 28.508 555.805 29.204 555.805 30.1V34H554.125V30.328C554.125 29.8 553.993 29.396 553.729 29.116C553.465 28.828 553.105 28.684 552.649 28.684C552.185 28.684 551.817 28.828 551.545 29.116C551.281 29.396 551.149 29.8 551.149 30.328V34H549.469V27.352H551.149V28.18C551.373 27.892 551.657 27.668 552.001 27.508C552.353 27.34 552.737 27.256 553.153 27.256ZM563.582 30.532C563.582 30.772 563.566 30.988 563.534 31.18H558.674C558.714 31.66 558.882 32.036 559.178 32.308C559.474 32.58 559.838 32.716 560.27 32.716C560.894 32.716 561.338 32.448 561.602 31.912H563.414C563.222 32.552 562.854 33.08 562.31 33.496C561.766 33.904 561.098 34.108 560.306 34.108C559.666 34.108 559.09 33.968 558.578 33.688C558.074 33.4 557.678 32.996 557.39 32.476C557.11 31.956 556.97 31.356 556.97 30.676C556.97 29.988 557.11 29.384 557.39 28.864C557.67 28.344 558.062 27.944 558.566 27.664C559.07 27.384 559.65 27.244 560.306 27.244C560.938 27.244 561.502 27.38 561.998 27.652C562.502 27.924 562.89 28.312 563.162 28.816C563.442 29.312 563.582 29.884 563.582 30.532ZM561.842 30.052C561.834 29.62 561.678 29.276 561.374 29.02C561.07 28.756 560.698 28.624 560.258 28.624C559.842 28.624 559.49 28.752 559.202 29.008C558.922 29.256 558.75 29.604 558.686 30.052H561.842ZM564.376 30.652C564.376 29.98 564.508 29.384 564.772 28.864C565.044 28.344 565.412 27.944 565.876 27.664C566.34 27.384 566.856 27.244 567.424 27.244C567.856 27.244 568.268 27.34 568.66 27.532C569.052 27.716 569.364 27.964 569.596 28.276V25.12H571.3V34H569.596V33.016C569.388 33.344 569.096 33.608 568.72 33.808C568.344 34.008 567.908 34.108 567.412 34.108C566.852 34.108 566.34 33.964 565.876 33.676C565.412 33.388 565.044 32.984 564.772 32.464C564.508 31.936 564.376 31.332 564.376 30.652ZM569.608 30.676C569.608 30.268 569.528 29.92 569.368 29.632C569.208 29.336 568.992 29.112 568.72 28.96C568.448 28.8 568.156 28.72 567.844 28.72C567.532 28.72 567.244 28.796 566.98 28.948C566.716 29.1 566.5 29.324 566.332 29.62C566.172 29.908 566.092 30.252 566.092 30.652C566.092 31.052 566.172 31.404 566.332 31.708C566.5 32.004 566.716 32.232 566.98 32.392C567.252 32.552 567.54 32.632 567.844 32.632C568.156 32.632 568.448 32.556 568.72 32.404C568.992 32.244 569.208 32.02 569.368 31.732C569.528 31.436 569.608 31.084 569.608 30.676Z" fill="white"/>
12
+ <path d="M484 67H464" stroke="#A3A3A3"/>
13
+ <rect x="484" y="54" width="120" height="26" rx="4" fill="#71347B"/>
14
+ <path d="M521.464 69.404H518.128L517.576 71H515.812L518.824 62.612H520.78L523.792 71H522.016L521.464 69.404ZM521.008 68.06L519.796 64.556L518.584 68.06H521.008ZM527.462 71.108C526.918 71.108 526.43 71.012 525.998 70.82C525.566 70.62 525.222 70.352 524.966 70.016C524.718 69.68 524.582 69.308 524.558 68.9H526.25C526.282 69.156 526.406 69.368 526.622 69.536C526.846 69.704 527.122 69.788 527.45 69.788C527.77 69.788 528.018 69.724 528.194 69.596C528.378 69.468 528.47 69.304 528.47 69.104C528.47 68.888 528.358 68.728 528.134 68.624C527.918 68.512 527.57 68.392 527.09 68.264C526.594 68.144 526.186 68.02 525.866 67.892C525.554 67.764 525.282 67.568 525.05 67.304C524.826 67.04 524.714 66.684 524.714 66.236C524.714 65.868 524.818 65.532 525.026 65.228C525.242 64.924 525.546 64.684 525.938 64.508C526.338 64.332 526.806 64.244 527.342 64.244C528.134 64.244 528.766 64.444 529.238 64.844C529.71 65.236 529.97 65.768 530.018 66.44H528.41C528.386 66.176 528.274 65.968 528.074 65.816C527.882 65.656 527.622 65.576 527.294 65.576C526.99 65.576 526.754 65.632 526.586 65.744C526.426 65.856 526.346 66.012 526.346 66.212C526.346 66.436 526.458 66.608 526.682 66.728C526.906 66.84 527.254 66.956 527.726 67.076C528.206 67.196 528.602 67.32 528.914 67.448C529.226 67.576 529.494 67.776 529.718 68.048C529.95 68.312 530.07 68.664 530.078 69.104C530.078 69.488 529.97 69.832 529.754 70.136C529.546 70.44 529.242 70.68 528.842 70.856C528.45 71.024 527.99 71.108 527.462 71.108ZM534.001 71.108C533.457 71.108 532.969 71.012 532.537 70.82C532.105 70.62 531.761 70.352 531.505 70.016C531.257 69.68 531.121 69.308 531.097 68.9H532.789C532.821 69.156 532.945 69.368 533.161 69.536C533.385 69.704 533.661 69.788 533.989 69.788C534.309 69.788 534.557 69.724 534.733 69.596C534.917 69.468 535.009 69.304 535.009 69.104C535.009 68.888 534.897 68.728 534.673 68.624C534.457 68.512 534.109 68.392 533.629 68.264C533.133 68.144 532.725 68.02 532.405 67.892C532.093 67.764 531.821 67.568 531.589 67.304C531.365 67.04 531.253 66.684 531.253 66.236C531.253 65.868 531.357 65.532 531.565 65.228C531.781 64.924 532.085 64.684 532.477 64.508C532.877 64.332 533.345 64.244 533.881 64.244C534.673 64.244 535.305 64.444 535.777 64.844C536.249 65.236 536.509 65.768 536.557 66.44H534.949C534.925 66.176 534.813 65.968 534.613 65.816C534.421 65.656 534.161 65.576 533.833 65.576C533.529 65.576 533.293 65.632 533.125 65.744C532.965 65.856 532.885 66.012 532.885 66.212C532.885 66.436 532.997 66.608 533.221 66.728C533.445 66.84 533.793 66.956 534.265 67.076C534.745 67.196 535.141 67.32 535.453 67.448C535.765 67.576 536.033 67.776 536.257 68.048C536.489 68.312 536.609 68.664 536.617 69.104C536.617 69.488 536.509 69.832 536.293 70.136C536.085 70.44 535.781 70.68 535.381 70.856C534.989 71.024 534.529 71.108 534.001 71.108ZM538.848 63.56C538.552 63.56 538.304 63.468 538.104 63.284C537.912 63.092 537.816 62.856 537.816 62.576C537.816 62.296 537.912 62.064 538.104 61.88C538.304 61.688 538.552 61.592 538.848 61.592C539.144 61.592 539.388 61.688 539.58 61.88C539.78 62.064 539.88 62.296 539.88 62.576C539.88 62.856 539.78 63.092 539.58 63.284C539.388 63.468 539.144 63.56 538.848 63.56ZM539.676 64.352V71H537.996V64.352H539.676ZM543.94 64.244C544.436 64.244 544.872 64.344 545.248 64.544C545.624 64.736 545.92 64.988 546.136 65.3V64.352H547.828V71.048C547.828 71.664 547.704 72.212 547.456 72.692C547.208 73.18 546.836 73.564 546.34 73.844C545.844 74.132 545.244 74.276 544.54 74.276C543.596 74.276 542.82 74.056 542.212 73.616C541.612 73.176 541.272 72.576 541.192 71.816H542.86C542.948 72.12 543.136 72.36 543.424 72.536C543.72 72.72 544.076 72.812 544.492 72.812C544.98 72.812 545.376 72.664 545.68 72.368C545.984 72.08 546.136 71.64 546.136 71.048V70.016C545.92 70.328 545.62 70.588 545.236 70.796C544.86 71.004 544.428 71.108 543.94 71.108C543.38 71.108 542.868 70.964 542.404 70.676C541.94 70.388 541.572 69.984 541.3 69.464C541.036 68.936 540.904 68.332 540.904 67.652C540.904 66.98 541.036 66.384 541.3 65.864C541.572 65.344 541.936 64.944 542.392 64.664C542.856 64.384 543.372 64.244 543.94 64.244ZM546.136 67.676C546.136 67.268 546.056 66.92 545.896 66.632C545.736 66.336 545.52 66.112 545.248 65.96C544.976 65.8 544.684 65.72 544.372 65.72C544.06 65.72 543.772 65.796 543.508 65.948C543.244 66.1 543.028 66.324 542.86 66.62C542.7 66.908 542.62 67.252 542.62 67.652C542.62 68.052 542.7 68.404 542.86 68.708C543.028 69.004 543.244 69.232 543.508 69.392C543.78 69.552 544.068 69.632 544.372 69.632C544.684 69.632 544.976 69.556 545.248 69.404C545.52 69.244 545.736 69.02 545.896 68.732C546.056 68.436 546.136 68.084 546.136 67.676ZM553.153 64.256C553.945 64.256 554.585 64.508 555.073 65.012C555.561 65.508 555.805 66.204 555.805 67.1V71H554.125V67.328C554.125 66.8 553.993 66.396 553.729 66.116C553.465 65.828 553.105 65.684 552.649 65.684C552.185 65.684 551.817 65.828 551.545 66.116C551.281 66.396 551.149 66.8 551.149 67.328V71H549.469V64.352H551.149V65.18C551.373 64.892 551.657 64.668 552.001 64.508C552.353 64.34 552.737 64.256 553.153 64.256ZM563.582 67.532C563.582 67.772 563.566 67.988 563.534 68.18H558.674C558.714 68.66 558.882 69.036 559.178 69.308C559.474 69.58 559.838 69.716 560.27 69.716C560.894 69.716 561.338 69.448 561.602 68.912H563.414C563.222 69.552 562.854 70.08 562.31 70.496C561.766 70.904 561.098 71.108 560.306 71.108C559.666 71.108 559.09 70.968 558.578 70.688C558.074 70.4 557.678 69.996 557.39 69.476C557.11 68.956 556.97 68.356 556.97 67.676C556.97 66.988 557.11 66.384 557.39 65.864C557.67 65.344 558.062 64.944 558.566 64.664C559.07 64.384 559.65 64.244 560.306 64.244C560.938 64.244 561.502 64.38 561.998 64.652C562.502 64.924 562.89 65.312 563.162 65.816C563.442 66.312 563.582 66.884 563.582 67.532ZM561.842 67.052C561.834 66.62 561.678 66.276 561.374 66.02C561.07 65.756 560.698 65.624 560.258 65.624C559.842 65.624 559.49 65.752 559.202 66.008C558.922 66.256 558.75 66.604 558.686 67.052H561.842ZM564.376 67.652C564.376 66.98 564.508 66.384 564.772 65.864C565.044 65.344 565.412 64.944 565.876 64.664C566.34 64.384 566.856 64.244 567.424 64.244C567.856 64.244 568.268 64.34 568.66 64.532C569.052 64.716 569.364 64.964 569.596 65.276V62.12H571.3V71H569.596V70.016C569.388 70.344 569.096 70.608 568.72 70.808C568.344 71.008 567.908 71.108 567.412 71.108C566.852 71.108 566.34 70.964 565.876 70.676C565.412 70.388 565.044 69.984 564.772 69.464C564.508 68.936 564.376 68.332 564.376 67.652ZM569.608 67.676C569.608 67.268 569.528 66.92 569.368 66.632C569.208 66.336 568.992 66.112 568.72 65.96C568.448 65.8 568.156 65.72 567.844 65.72C567.532 65.72 567.244 65.796 566.98 65.948C566.716 66.1 566.5 66.324 566.332 66.62C566.172 66.908 566.092 67.252 566.092 67.652C566.092 68.052 566.172 68.404 566.332 68.708C566.5 69.004 566.716 69.232 566.98 69.392C567.252 69.552 567.54 69.632 567.844 69.632C568.156 69.632 568.448 69.556 568.72 69.404C568.992 69.244 569.208 69.02 569.368 68.732C569.528 68.436 569.608 68.084 569.608 67.676Z" fill="white"/>
15
+ <path d="M484 110H464" stroke="#A3A3A3"/>
16
+ <rect x="484" y="97" width="120" height="26" rx="4" fill="#71347B"/>
17
+ <path d="M521.464 112.404H518.128L517.576 114H515.812L518.824 105.612H520.78L523.792 114H522.016L521.464 112.404ZM521.008 111.06L519.796 107.556L518.584 111.06H521.008ZM527.462 114.108C526.918 114.108 526.43 114.012 525.998 113.82C525.566 113.62 525.222 113.352 524.966 113.016C524.718 112.68 524.582 112.308 524.558 111.9H526.25C526.282 112.156 526.406 112.368 526.622 112.536C526.846 112.704 527.122 112.788 527.45 112.788C527.77 112.788 528.018 112.724 528.194 112.596C528.378 112.468 528.47 112.304 528.47 112.104C528.47 111.888 528.358 111.728 528.134 111.624C527.918 111.512 527.57 111.392 527.09 111.264C526.594 111.144 526.186 111.02 525.866 110.892C525.554 110.764 525.282 110.568 525.05 110.304C524.826 110.04 524.714 109.684 524.714 109.236C524.714 108.868 524.818 108.532 525.026 108.228C525.242 107.924 525.546 107.684 525.938 107.508C526.338 107.332 526.806 107.244 527.342 107.244C528.134 107.244 528.766 107.444 529.238 107.844C529.71 108.236 529.97 108.768 530.018 109.44H528.41C528.386 109.176 528.274 108.968 528.074 108.816C527.882 108.656 527.622 108.576 527.294 108.576C526.99 108.576 526.754 108.632 526.586 108.744C526.426 108.856 526.346 109.012 526.346 109.212C526.346 109.436 526.458 109.608 526.682 109.728C526.906 109.84 527.254 109.956 527.726 110.076C528.206 110.196 528.602 110.32 528.914 110.448C529.226 110.576 529.494 110.776 529.718 111.048C529.95 111.312 530.07 111.664 530.078 112.104C530.078 112.488 529.97 112.832 529.754 113.136C529.546 113.44 529.242 113.68 528.842 113.856C528.45 114.024 527.99 114.108 527.462 114.108ZM534.001 114.108C533.457 114.108 532.969 114.012 532.537 113.82C532.105 113.62 531.761 113.352 531.505 113.016C531.257 112.68 531.121 112.308 531.097 111.9H532.789C532.821 112.156 532.945 112.368 533.161 112.536C533.385 112.704 533.661 112.788 533.989 112.788C534.309 112.788 534.557 112.724 534.733 112.596C534.917 112.468 535.009 112.304 535.009 112.104C535.009 111.888 534.897 111.728 534.673 111.624C534.457 111.512 534.109 111.392 533.629 111.264C533.133 111.144 532.725 111.02 532.405 110.892C532.093 110.764 531.821 110.568 531.589 110.304C531.365 110.04 531.253 109.684 531.253 109.236C531.253 108.868 531.357 108.532 531.565 108.228C531.781 107.924 532.085 107.684 532.477 107.508C532.877 107.332 533.345 107.244 533.881 107.244C534.673 107.244 535.305 107.444 535.777 107.844C536.249 108.236 536.509 108.768 536.557 109.44H534.949C534.925 109.176 534.813 108.968 534.613 108.816C534.421 108.656 534.161 108.576 533.833 108.576C533.529 108.576 533.293 108.632 533.125 108.744C532.965 108.856 532.885 109.012 532.885 109.212C532.885 109.436 532.997 109.608 533.221 109.728C533.445 109.84 533.793 109.956 534.265 110.076C534.745 110.196 535.141 110.32 535.453 110.448C535.765 110.576 536.033 110.776 536.257 111.048C536.489 111.312 536.609 111.664 536.617 112.104C536.617 112.488 536.509 112.832 536.293 113.136C536.085 113.44 535.781 113.68 535.381 113.856C534.989 114.024 534.529 114.108 534.001 114.108ZM538.848 106.56C538.552 106.56 538.304 106.468 538.104 106.284C537.912 106.092 537.816 105.856 537.816 105.576C537.816 105.296 537.912 105.064 538.104 104.88C538.304 104.688 538.552 104.592 538.848 104.592C539.144 104.592 539.388 104.688 539.58 104.88C539.78 105.064 539.88 105.296 539.88 105.576C539.88 105.856 539.78 106.092 539.58 106.284C539.388 106.468 539.144 106.56 538.848 106.56ZM539.676 107.352V114H537.996V107.352H539.676ZM543.94 107.244C544.436 107.244 544.872 107.344 545.248 107.544C545.624 107.736 545.92 107.988 546.136 108.3V107.352H547.828V114.048C547.828 114.664 547.704 115.212 547.456 115.692C547.208 116.18 546.836 116.564 546.34 116.844C545.844 117.132 545.244 117.276 544.54 117.276C543.596 117.276 542.82 117.056 542.212 116.616C541.612 116.176 541.272 115.576 541.192 114.816H542.86C542.948 115.12 543.136 115.36 543.424 115.536C543.72 115.72 544.076 115.812 544.492 115.812C544.98 115.812 545.376 115.664 545.68 115.368C545.984 115.08 546.136 114.64 546.136 114.048V113.016C545.92 113.328 545.62 113.588 545.236 113.796C544.86 114.004 544.428 114.108 543.94 114.108C543.38 114.108 542.868 113.964 542.404 113.676C541.94 113.388 541.572 112.984 541.3 112.464C541.036 111.936 540.904 111.332 540.904 110.652C540.904 109.98 541.036 109.384 541.3 108.864C541.572 108.344 541.936 107.944 542.392 107.664C542.856 107.384 543.372 107.244 543.94 107.244ZM546.136 110.676C546.136 110.268 546.056 109.92 545.896 109.632C545.736 109.336 545.52 109.112 545.248 108.96C544.976 108.8 544.684 108.72 544.372 108.72C544.06 108.72 543.772 108.796 543.508 108.948C543.244 109.1 543.028 109.324 542.86 109.62C542.7 109.908 542.62 110.252 542.62 110.652C542.62 111.052 542.7 111.404 542.86 111.708C543.028 112.004 543.244 112.232 543.508 112.392C543.78 112.552 544.068 112.632 544.372 112.632C544.684 112.632 544.976 112.556 545.248 112.404C545.52 112.244 545.736 112.02 545.896 111.732C546.056 111.436 546.136 111.084 546.136 110.676ZM553.153 107.256C553.945 107.256 554.585 107.508 555.073 108.012C555.561 108.508 555.805 109.204 555.805 110.1V114H554.125V110.328C554.125 109.8 553.993 109.396 553.729 109.116C553.465 108.828 553.105 108.684 552.649 108.684C552.185 108.684 551.817 108.828 551.545 109.116C551.281 109.396 551.149 109.8 551.149 110.328V114H549.469V107.352H551.149V108.18C551.373 107.892 551.657 107.668 552.001 107.508C552.353 107.34 552.737 107.256 553.153 107.256ZM563.582 110.532C563.582 110.772 563.566 110.988 563.534 111.18H558.674C558.714 111.66 558.882 112.036 559.178 112.308C559.474 112.58 559.838 112.716 560.27 112.716C560.894 112.716 561.338 112.448 561.602 111.912H563.414C563.222 112.552 562.854 113.08 562.31 113.496C561.766 113.904 561.098 114.108 560.306 114.108C559.666 114.108 559.09 113.968 558.578 113.688C558.074 113.4 557.678 112.996 557.39 112.476C557.11 111.956 556.97 111.356 556.97 110.676C556.97 109.988 557.11 109.384 557.39 108.864C557.67 108.344 558.062 107.944 558.566 107.664C559.07 107.384 559.65 107.244 560.306 107.244C560.938 107.244 561.502 107.38 561.998 107.652C562.502 107.924 562.89 108.312 563.162 108.816C563.442 109.312 563.582 109.884 563.582 110.532ZM561.842 110.052C561.834 109.62 561.678 109.276 561.374 109.02C561.07 108.756 560.698 108.624 560.258 108.624C559.842 108.624 559.49 108.752 559.202 109.008C558.922 109.256 558.75 109.604 558.686 110.052H561.842ZM564.376 110.652C564.376 109.98 564.508 109.384 564.772 108.864C565.044 108.344 565.412 107.944 565.876 107.664C566.34 107.384 566.856 107.244 567.424 107.244C567.856 107.244 568.268 107.34 568.66 107.532C569.052 107.716 569.364 107.964 569.596 108.276V105.12H571.3V114H569.596V113.016C569.388 113.344 569.096 113.608 568.72 113.808C568.344 114.008 567.908 114.108 567.412 114.108C566.852 114.108 566.34 113.964 565.876 113.676C565.412 113.388 565.044 112.984 564.772 112.464C564.508 111.936 564.376 111.332 564.376 110.652ZM569.608 110.676C569.608 110.268 569.528 109.92 569.368 109.632C569.208 109.336 568.992 109.112 568.72 108.96C568.448 108.8 568.156 108.72 567.844 108.72C567.532 108.72 567.244 108.796 566.98 108.948C566.716 109.1 566.5 109.324 566.332 109.62C566.172 109.908 566.092 110.252 566.092 110.652C566.092 111.052 566.172 111.404 566.332 111.708C566.5 112.004 566.716 112.232 566.98 112.392C567.252 112.552 567.54 112.632 567.844 112.632C568.156 112.632 568.448 112.556 568.72 112.404C568.992 112.244 569.208 112.02 569.368 111.732C569.528 111.436 569.608 111.084 569.608 110.676Z" fill="white"/>
18
+ <path d="M484 153H464" stroke="#A3A3A3"/>
19
+ <rect x="484" y="140" width="120" height="26" rx="4" fill="#71347B"/>
20
+ <path d="M521.464 155.404H518.128L517.576 157H515.812L518.824 148.612H520.78L523.792 157H522.016L521.464 155.404ZM521.008 154.06L519.796 150.556L518.584 154.06H521.008ZM527.462 157.108C526.918 157.108 526.43 157.012 525.998 156.82C525.566 156.62 525.222 156.352 524.966 156.016C524.718 155.68 524.582 155.308 524.558 154.9H526.25C526.282 155.156 526.406 155.368 526.622 155.536C526.846 155.704 527.122 155.788 527.45 155.788C527.77 155.788 528.018 155.724 528.194 155.596C528.378 155.468 528.47 155.304 528.47 155.104C528.47 154.888 528.358 154.728 528.134 154.624C527.918 154.512 527.57 154.392 527.09 154.264C526.594 154.144 526.186 154.02 525.866 153.892C525.554 153.764 525.282 153.568 525.05 153.304C524.826 153.04 524.714 152.684 524.714 152.236C524.714 151.868 524.818 151.532 525.026 151.228C525.242 150.924 525.546 150.684 525.938 150.508C526.338 150.332 526.806 150.244 527.342 150.244C528.134 150.244 528.766 150.444 529.238 150.844C529.71 151.236 529.97 151.768 530.018 152.44H528.41C528.386 152.176 528.274 151.968 528.074 151.816C527.882 151.656 527.622 151.576 527.294 151.576C526.99 151.576 526.754 151.632 526.586 151.744C526.426 151.856 526.346 152.012 526.346 152.212C526.346 152.436 526.458 152.608 526.682 152.728C526.906 152.84 527.254 152.956 527.726 153.076C528.206 153.196 528.602 153.32 528.914 153.448C529.226 153.576 529.494 153.776 529.718 154.048C529.95 154.312 530.07 154.664 530.078 155.104C530.078 155.488 529.97 155.832 529.754 156.136C529.546 156.44 529.242 156.68 528.842 156.856C528.45 157.024 527.99 157.108 527.462 157.108ZM534.001 157.108C533.457 157.108 532.969 157.012 532.537 156.82C532.105 156.62 531.761 156.352 531.505 156.016C531.257 155.68 531.121 155.308 531.097 154.9H532.789C532.821 155.156 532.945 155.368 533.161 155.536C533.385 155.704 533.661 155.788 533.989 155.788C534.309 155.788 534.557 155.724 534.733 155.596C534.917 155.468 535.009 155.304 535.009 155.104C535.009 154.888 534.897 154.728 534.673 154.624C534.457 154.512 534.109 154.392 533.629 154.264C533.133 154.144 532.725 154.02 532.405 153.892C532.093 153.764 531.821 153.568 531.589 153.304C531.365 153.04 531.253 152.684 531.253 152.236C531.253 151.868 531.357 151.532 531.565 151.228C531.781 150.924 532.085 150.684 532.477 150.508C532.877 150.332 533.345 150.244 533.881 150.244C534.673 150.244 535.305 150.444 535.777 150.844C536.249 151.236 536.509 151.768 536.557 152.44H534.949C534.925 152.176 534.813 151.968 534.613 151.816C534.421 151.656 534.161 151.576 533.833 151.576C533.529 151.576 533.293 151.632 533.125 151.744C532.965 151.856 532.885 152.012 532.885 152.212C532.885 152.436 532.997 152.608 533.221 152.728C533.445 152.84 533.793 152.956 534.265 153.076C534.745 153.196 535.141 153.32 535.453 153.448C535.765 153.576 536.033 153.776 536.257 154.048C536.489 154.312 536.609 154.664 536.617 155.104C536.617 155.488 536.509 155.832 536.293 156.136C536.085 156.44 535.781 156.68 535.381 156.856C534.989 157.024 534.529 157.108 534.001 157.108ZM538.848 149.56C538.552 149.56 538.304 149.468 538.104 149.284C537.912 149.092 537.816 148.856 537.816 148.576C537.816 148.296 537.912 148.064 538.104 147.88C538.304 147.688 538.552 147.592 538.848 147.592C539.144 147.592 539.388 147.688 539.58 147.88C539.78 148.064 539.88 148.296 539.88 148.576C539.88 148.856 539.78 149.092 539.58 149.284C539.388 149.468 539.144 149.56 538.848 149.56ZM539.676 150.352V157H537.996V150.352H539.676ZM543.94 150.244C544.436 150.244 544.872 150.344 545.248 150.544C545.624 150.736 545.92 150.988 546.136 151.3V150.352H547.828V157.048C547.828 157.664 547.704 158.212 547.456 158.692C547.208 159.18 546.836 159.564 546.34 159.844C545.844 160.132 545.244 160.276 544.54 160.276C543.596 160.276 542.82 160.056 542.212 159.616C541.612 159.176 541.272 158.576 541.192 157.816H542.86C542.948 158.12 543.136 158.36 543.424 158.536C543.72 158.72 544.076 158.812 544.492 158.812C544.98 158.812 545.376 158.664 545.68 158.368C545.984 158.08 546.136 157.64 546.136 157.048V156.016C545.92 156.328 545.62 156.588 545.236 156.796C544.86 157.004 544.428 157.108 543.94 157.108C543.38 157.108 542.868 156.964 542.404 156.676C541.94 156.388 541.572 155.984 541.3 155.464C541.036 154.936 540.904 154.332 540.904 153.652C540.904 152.98 541.036 152.384 541.3 151.864C541.572 151.344 541.936 150.944 542.392 150.664C542.856 150.384 543.372 150.244 543.94 150.244ZM546.136 153.676C546.136 153.268 546.056 152.92 545.896 152.632C545.736 152.336 545.52 152.112 545.248 151.96C544.976 151.8 544.684 151.72 544.372 151.72C544.06 151.72 543.772 151.796 543.508 151.948C543.244 152.1 543.028 152.324 542.86 152.62C542.7 152.908 542.62 153.252 542.62 153.652C542.62 154.052 542.7 154.404 542.86 154.708C543.028 155.004 543.244 155.232 543.508 155.392C543.78 155.552 544.068 155.632 544.372 155.632C544.684 155.632 544.976 155.556 545.248 155.404C545.52 155.244 545.736 155.02 545.896 154.732C546.056 154.436 546.136 154.084 546.136 153.676ZM553.153 150.256C553.945 150.256 554.585 150.508 555.073 151.012C555.561 151.508 555.805 152.204 555.805 153.1V157H554.125V153.328C554.125 152.8 553.993 152.396 553.729 152.116C553.465 151.828 553.105 151.684 552.649 151.684C552.185 151.684 551.817 151.828 551.545 152.116C551.281 152.396 551.149 152.8 551.149 153.328V157H549.469V150.352H551.149V151.18C551.373 150.892 551.657 150.668 552.001 150.508C552.353 150.34 552.737 150.256 553.153 150.256ZM563.582 153.532C563.582 153.772 563.566 153.988 563.534 154.18H558.674C558.714 154.66 558.882 155.036 559.178 155.308C559.474 155.58 559.838 155.716 560.27 155.716C560.894 155.716 561.338 155.448 561.602 154.912H563.414C563.222 155.552 562.854 156.08 562.31 156.496C561.766 156.904 561.098 157.108 560.306 157.108C559.666 157.108 559.09 156.968 558.578 156.688C558.074 156.4 557.678 155.996 557.39 155.476C557.11 154.956 556.97 154.356 556.97 153.676C556.97 152.988 557.11 152.384 557.39 151.864C557.67 151.344 558.062 150.944 558.566 150.664C559.07 150.384 559.65 150.244 560.306 150.244C560.938 150.244 561.502 150.38 561.998 150.652C562.502 150.924 562.89 151.312 563.162 151.816C563.442 152.312 563.582 152.884 563.582 153.532ZM561.842 153.052C561.834 152.62 561.678 152.276 561.374 152.02C561.07 151.756 560.698 151.624 560.258 151.624C559.842 151.624 559.49 151.752 559.202 152.008C558.922 152.256 558.75 152.604 558.686 153.052H561.842ZM564.376 153.652C564.376 152.98 564.508 152.384 564.772 151.864C565.044 151.344 565.412 150.944 565.876 150.664C566.34 150.384 566.856 150.244 567.424 150.244C567.856 150.244 568.268 150.34 568.66 150.532C569.052 150.716 569.364 150.964 569.596 151.276V148.12H571.3V157H569.596V156.016C569.388 156.344 569.096 156.608 568.72 156.808C568.344 157.008 567.908 157.108 567.412 157.108C566.852 157.108 566.34 156.964 565.876 156.676C565.412 156.388 565.044 155.984 564.772 155.464C564.508 154.936 564.376 154.332 564.376 153.652ZM569.608 153.676C569.608 153.268 569.528 152.92 569.368 152.632C569.208 152.336 568.992 152.112 568.72 151.96C568.448 151.8 568.156 151.72 567.844 151.72C567.532 151.72 567.244 151.796 566.98 151.948C566.716 152.1 566.5 152.324 566.332 152.62C566.172 152.908 566.092 153.252 566.092 153.652C566.092 154.052 566.172 154.404 566.332 154.708C566.5 155.004 566.716 155.232 566.98 155.392C567.252 155.552 567.54 155.632 567.844 155.632C568.156 155.632 568.448 155.556 568.72 155.404C568.992 155.244 569.208 155.02 569.368 154.732C569.528 154.436 569.608 154.084 569.608 153.676Z" fill="white"/>
21
+ <path d="M484 196H464" stroke="#A3A3A3"/>
22
+ <rect x="484" y="183" width="120" height="26" rx="4" fill="#71347B"/>
23
+ <path d="M521.464 198.404H518.128L517.576 200H515.812L518.824 191.612H520.78L523.792 200H522.016L521.464 198.404ZM521.008 197.06L519.796 193.556L518.584 197.06H521.008ZM527.462 200.108C526.918 200.108 526.43 200.012 525.998 199.82C525.566 199.62 525.222 199.352 524.966 199.016C524.718 198.68 524.582 198.308 524.558 197.9H526.25C526.282 198.156 526.406 198.368 526.622 198.536C526.846 198.704 527.122 198.788 527.45 198.788C527.77 198.788 528.018 198.724 528.194 198.596C528.378 198.468 528.47 198.304 528.47 198.104C528.47 197.888 528.358 197.728 528.134 197.624C527.918 197.512 527.57 197.392 527.09 197.264C526.594 197.144 526.186 197.02 525.866 196.892C525.554 196.764 525.282 196.568 525.05 196.304C524.826 196.04 524.714 195.684 524.714 195.236C524.714 194.868 524.818 194.532 525.026 194.228C525.242 193.924 525.546 193.684 525.938 193.508C526.338 193.332 526.806 193.244 527.342 193.244C528.134 193.244 528.766 193.444 529.238 193.844C529.71 194.236 529.97 194.768 530.018 195.44H528.41C528.386 195.176 528.274 194.968 528.074 194.816C527.882 194.656 527.622 194.576 527.294 194.576C526.99 194.576 526.754 194.632 526.586 194.744C526.426 194.856 526.346 195.012 526.346 195.212C526.346 195.436 526.458 195.608 526.682 195.728C526.906 195.84 527.254 195.956 527.726 196.076C528.206 196.196 528.602 196.32 528.914 196.448C529.226 196.576 529.494 196.776 529.718 197.048C529.95 197.312 530.07 197.664 530.078 198.104C530.078 198.488 529.97 198.832 529.754 199.136C529.546 199.44 529.242 199.68 528.842 199.856C528.45 200.024 527.99 200.108 527.462 200.108ZM534.001 200.108C533.457 200.108 532.969 200.012 532.537 199.82C532.105 199.62 531.761 199.352 531.505 199.016C531.257 198.68 531.121 198.308 531.097 197.9H532.789C532.821 198.156 532.945 198.368 533.161 198.536C533.385 198.704 533.661 198.788 533.989 198.788C534.309 198.788 534.557 198.724 534.733 198.596C534.917 198.468 535.009 198.304 535.009 198.104C535.009 197.888 534.897 197.728 534.673 197.624C534.457 197.512 534.109 197.392 533.629 197.264C533.133 197.144 532.725 197.02 532.405 196.892C532.093 196.764 531.821 196.568 531.589 196.304C531.365 196.04 531.253 195.684 531.253 195.236C531.253 194.868 531.357 194.532 531.565 194.228C531.781 193.924 532.085 193.684 532.477 193.508C532.877 193.332 533.345 193.244 533.881 193.244C534.673 193.244 535.305 193.444 535.777 193.844C536.249 194.236 536.509 194.768 536.557 195.44H534.949C534.925 195.176 534.813 194.968 534.613 194.816C534.421 194.656 534.161 194.576 533.833 194.576C533.529 194.576 533.293 194.632 533.125 194.744C532.965 194.856 532.885 195.012 532.885 195.212C532.885 195.436 532.997 195.608 533.221 195.728C533.445 195.84 533.793 195.956 534.265 196.076C534.745 196.196 535.141 196.32 535.453 196.448C535.765 196.576 536.033 196.776 536.257 197.048C536.489 197.312 536.609 197.664 536.617 198.104C536.617 198.488 536.509 198.832 536.293 199.136C536.085 199.44 535.781 199.68 535.381 199.856C534.989 200.024 534.529 200.108 534.001 200.108ZM538.848 192.56C538.552 192.56 538.304 192.468 538.104 192.284C537.912 192.092 537.816 191.856 537.816 191.576C537.816 191.296 537.912 191.064 538.104 190.88C538.304 190.688 538.552 190.592 538.848 190.592C539.144 190.592 539.388 190.688 539.58 190.88C539.78 191.064 539.88 191.296 539.88 191.576C539.88 191.856 539.78 192.092 539.58 192.284C539.388 192.468 539.144 192.56 538.848 192.56ZM539.676 193.352V200H537.996V193.352H539.676ZM543.94 193.244C544.436 193.244 544.872 193.344 545.248 193.544C545.624 193.736 545.92 193.988 546.136 194.3V193.352H547.828V200.048C547.828 200.664 547.704 201.212 547.456 201.692C547.208 202.18 546.836 202.564 546.34 202.844C545.844 203.132 545.244 203.276 544.54 203.276C543.596 203.276 542.82 203.056 542.212 202.616C541.612 202.176 541.272 201.576 541.192 200.816H542.86C542.948 201.12 543.136 201.36 543.424 201.536C543.72 201.72 544.076 201.812 544.492 201.812C544.98 201.812 545.376 201.664 545.68 201.368C545.984 201.08 546.136 200.64 546.136 200.048V199.016C545.92 199.328 545.62 199.588 545.236 199.796C544.86 200.004 544.428 200.108 543.94 200.108C543.38 200.108 542.868 199.964 542.404 199.676C541.94 199.388 541.572 198.984 541.3 198.464C541.036 197.936 540.904 197.332 540.904 196.652C540.904 195.98 541.036 195.384 541.3 194.864C541.572 194.344 541.936 193.944 542.392 193.664C542.856 193.384 543.372 193.244 543.94 193.244ZM546.136 196.676C546.136 196.268 546.056 195.92 545.896 195.632C545.736 195.336 545.52 195.112 545.248 194.96C544.976 194.8 544.684 194.72 544.372 194.72C544.06 194.72 543.772 194.796 543.508 194.948C543.244 195.1 543.028 195.324 542.86 195.62C542.7 195.908 542.62 196.252 542.62 196.652C542.62 197.052 542.7 197.404 542.86 197.708C543.028 198.004 543.244 198.232 543.508 198.392C543.78 198.552 544.068 198.632 544.372 198.632C544.684 198.632 544.976 198.556 545.248 198.404C545.52 198.244 545.736 198.02 545.896 197.732C546.056 197.436 546.136 197.084 546.136 196.676ZM553.153 193.256C553.945 193.256 554.585 193.508 555.073 194.012C555.561 194.508 555.805 195.204 555.805 196.1V200H554.125V196.328C554.125 195.8 553.993 195.396 553.729 195.116C553.465 194.828 553.105 194.684 552.649 194.684C552.185 194.684 551.817 194.828 551.545 195.116C551.281 195.396 551.149 195.8 551.149 196.328V200H549.469V193.352H551.149V194.18C551.373 193.892 551.657 193.668 552.001 193.508C552.353 193.34 552.737 193.256 553.153 193.256ZM563.582 196.532C563.582 196.772 563.566 196.988 563.534 197.18H558.674C558.714 197.66 558.882 198.036 559.178 198.308C559.474 198.58 559.838 198.716 560.27 198.716C560.894 198.716 561.338 198.448 561.602 197.912H563.414C563.222 198.552 562.854 199.08 562.31 199.496C561.766 199.904 561.098 200.108 560.306 200.108C559.666 200.108 559.09 199.968 558.578 199.688C558.074 199.4 557.678 198.996 557.39 198.476C557.11 197.956 556.97 197.356 556.97 196.676C556.97 195.988 557.11 195.384 557.39 194.864C557.67 194.344 558.062 193.944 558.566 193.664C559.07 193.384 559.65 193.244 560.306 193.244C560.938 193.244 561.502 193.38 561.998 193.652C562.502 193.924 562.89 194.312 563.162 194.816C563.442 195.312 563.582 195.884 563.582 196.532ZM561.842 196.052C561.834 195.62 561.678 195.276 561.374 195.02C561.07 194.756 560.698 194.624 560.258 194.624C559.842 194.624 559.49 194.752 559.202 195.008C558.922 195.256 558.75 195.604 558.686 196.052H561.842ZM564.376 196.652C564.376 195.98 564.508 195.384 564.772 194.864C565.044 194.344 565.412 193.944 565.876 193.664C566.34 193.384 566.856 193.244 567.424 193.244C567.856 193.244 568.268 193.34 568.66 193.532C569.052 193.716 569.364 193.964 569.596 194.276V191.12H571.3V200H569.596V199.016C569.388 199.344 569.096 199.608 568.72 199.808C568.344 200.008 567.908 200.108 567.412 200.108C566.852 200.108 566.34 199.964 565.876 199.676C565.412 199.388 565.044 198.984 564.772 198.464C564.508 197.936 564.376 197.332 564.376 196.652ZM569.608 196.676C569.608 196.268 569.528 195.92 569.368 195.632C569.208 195.336 568.992 195.112 568.72 194.96C568.448 194.8 568.156 194.72 567.844 194.72C567.532 194.72 567.244 194.796 566.98 194.948C566.716 195.1 566.5 195.324 566.332 195.62C566.172 195.908 566.092 196.252 566.092 196.652C566.092 197.052 566.172 197.404 566.332 197.708C566.5 198.004 566.716 198.232 566.98 198.392C567.252 198.552 567.54 198.632 567.844 198.632C568.156 198.632 568.448 198.556 568.72 198.404C568.992 198.244 569.208 198.02 569.368 197.732C569.528 197.436 569.608 197.084 569.608 196.676Z" fill="white"/>
24
+ <rect x="154" width="120" height="26" rx="4" fill="#71347B"/>
25
+ <path d="M188.992 17H187.312L183.508 11.252V17H181.828V8.612H183.508L187.312 14.372V8.612H188.992V17ZM196.832 13.532C196.832 13.772 196.816 13.988 196.784 14.18H191.924C191.964 14.66 192.132 15.036 192.428 15.308C192.724 15.58 193.088 15.716 193.52 15.716C194.144 15.716 194.588 15.448 194.852 14.912H196.664C196.472 15.552 196.104 16.08 195.56 16.496C195.016 16.904 194.348 17.108 193.556 17.108C192.916 17.108 192.34 16.968 191.828 16.688C191.324 16.4 190.928 15.996 190.64 15.476C190.36 14.956 190.22 14.356 190.22 13.676C190.22 12.988 190.36 12.384 190.64 11.864C190.92 11.344 191.312 10.944 191.816 10.664C192.32 10.384 192.9 10.244 193.556 10.244C194.188 10.244 194.752 10.38 195.248 10.652C195.752 10.924 196.14 11.312 196.412 11.816C196.692 12.312 196.832 12.884 196.832 13.532ZM195.092 13.052C195.084 12.62 194.928 12.276 194.624 12.02C194.32 11.756 193.948 11.624 193.508 11.624C193.092 11.624 192.74 11.752 192.452 12.008C192.172 12.256 192 12.604 191.936 13.052H195.092ZM207.274 10.352L205.33 17H203.518L202.306 12.356L201.094 17H199.27L197.314 10.352H199.018L200.194 15.416L201.466 10.352H203.242L204.49 15.404L205.666 10.352H207.274ZM212.683 5.636L209.443 19.172H207.799L211.039 5.636H212.683ZM217.907 17.084C217.123 17.084 216.403 16.9 215.747 16.532C215.091 16.164 214.571 15.656 214.187 15.008C213.803 14.352 213.611 13.612 213.611 12.788C213.611 11.972 213.803 11.24 214.187 10.592C214.571 9.936 215.091 9.424 215.747 9.056C216.403 8.688 217.123 8.504 217.907 8.504C218.699 8.504 219.419 8.688 220.067 9.056C220.723 9.424 221.239 9.936 221.615 10.592C221.999 11.24 222.191 11.972 222.191 12.788C222.191 13.612 221.999 14.352 221.615 15.008C221.239 15.656 220.723 16.164 220.067 16.532C219.411 16.9 218.691 17.084 217.907 17.084ZM217.907 15.584C218.411 15.584 218.855 15.472 219.239 15.248C219.623 15.016 219.923 14.688 220.139 14.264C220.355 13.84 220.463 13.348 220.463 12.788C220.463 12.228 220.355 11.74 220.139 11.324C219.923 10.9 219.623 10.576 219.239 10.352C218.855 10.128 218.411 10.016 217.907 10.016C217.403 10.016 216.955 10.128 216.563 10.352C216.179 10.576 215.879 10.9 215.663 11.324C215.447 11.74 215.339 12.228 215.339 12.788C215.339 13.348 215.447 13.84 215.663 14.264C215.879 14.688 216.179 15.016 216.563 15.248C216.955 15.472 217.403 15.584 217.907 15.584ZM225.121 11.312C225.337 11.008 225.633 10.756 226.009 10.556C226.393 10.348 226.829 10.244 227.317 10.244C227.885 10.244 228.397 10.384 228.853 10.664C229.317 10.944 229.681 11.344 229.945 11.864C230.217 12.376 230.353 12.972 230.353 13.652C230.353 14.332 230.217 14.936 229.945 15.464C229.681 15.984 229.317 16.388 228.853 16.676C228.397 16.964 227.885 17.108 227.317 17.108C226.829 17.108 226.397 17.008 226.021 16.808C225.653 16.608 225.353 16.356 225.121 16.052V20.168H223.441V10.352H225.121V11.312ZM228.637 13.652C228.637 13.252 228.553 12.908 228.385 12.62C228.225 12.324 228.009 12.1 227.737 11.948C227.473 11.796 227.185 11.72 226.873 11.72C226.569 11.72 226.281 11.8 226.009 11.96C225.745 12.112 225.529 12.336 225.361 12.632C225.201 12.928 225.121 13.276 225.121 13.676C225.121 14.076 225.201 14.424 225.361 14.72C225.529 15.016 225.745 15.244 226.009 15.404C226.281 15.556 226.569 15.632 226.873 15.632C227.185 15.632 227.473 15.552 227.737 15.392C228.009 15.232 228.225 15.004 228.385 14.708C228.553 14.412 228.637 14.06 228.637 13.652ZM237.754 13.532C237.754 13.772 237.738 13.988 237.706 14.18H232.846C232.886 14.66 233.054 15.036 233.35 15.308C233.646 15.58 234.01 15.716 234.442 15.716C235.066 15.716 235.51 15.448 235.774 14.912H237.586C237.394 15.552 237.026 16.08 236.482 16.496C235.938 16.904 235.27 17.108 234.478 17.108C233.838 17.108 233.262 16.968 232.75 16.688C232.246 16.4 231.85 15.996 231.562 15.476C231.282 14.956 231.142 14.356 231.142 13.676C231.142 12.988 231.282 12.384 231.562 11.864C231.842 11.344 232.234 10.944 232.738 10.664C233.242 10.384 233.822 10.244 234.478 10.244C235.11 10.244 235.674 10.38 236.17 10.652C236.674 10.924 237.062 11.312 237.334 11.816C237.614 12.312 237.754 12.884 237.754 13.532ZM236.014 13.052C236.006 12.62 235.85 12.276 235.546 12.02C235.242 11.756 234.87 11.624 234.43 11.624C234.014 11.624 233.662 11.752 233.374 12.008C233.094 12.256 232.922 12.604 232.858 13.052H236.014ZM242.664 10.256C243.456 10.256 244.096 10.508 244.584 11.012C245.072 11.508 245.316 12.204 245.316 13.1V17H243.636V13.328C243.636 12.8 243.504 12.396 243.24 12.116C242.976 11.828 242.616 11.684 242.16 11.684C241.696 11.684 241.328 11.828 241.056 12.116C240.792 12.396 240.66 12.8 240.66 13.328V17H238.98V10.352H240.66V11.18C240.884 10.892 241.168 10.668 241.512 10.508C241.864 10.34 242.248 10.256 242.664 10.256Z" fill="white"/>
26
+ <path d="M214 46L216.887 41H211.113L214 46ZM213.5 26V41.5H214.5V26H213.5Z" fill="#A3A3A3"/>
27
+ <rect x="154" y="46" width="120" height="26" rx="4" fill="#71347B"/>
28
+ <path d="M178.464 61.404H175.128L174.576 63H172.812L175.824 54.612H177.78L180.792 63H179.016L178.464 61.404ZM178.008 60.06L176.796 56.556L175.584 60.06H178.008ZM181.486 59.676C181.486 58.988 181.626 58.388 181.906 57.876C182.186 57.356 182.574 56.956 183.07 56.676C183.566 56.388 184.134 56.244 184.774 56.244C185.598 56.244 186.278 56.452 186.814 56.868C187.358 57.276 187.722 57.852 187.906 58.596H186.094C185.998 58.308 185.834 58.084 185.602 57.924C185.378 57.756 185.098 57.672 184.762 57.672C184.282 57.672 183.902 57.848 183.622 58.2C183.342 58.544 183.202 59.036 183.202 59.676C183.202 60.308 183.342 60.8 183.622 61.152C183.902 61.496 184.282 61.668 184.762 61.668C185.442 61.668 185.886 61.364 186.094 60.756H187.906C187.722 61.476 187.358 62.048 186.814 62.472C186.27 62.896 185.59 63.108 184.774 63.108C184.134 63.108 183.566 62.968 183.07 62.688C182.574 62.4 182.186 62 181.906 61.488C181.626 60.968 181.486 60.364 181.486 59.676ZM193.073 63L190.817 60.168V63H189.137V54.12H190.817V59.172L193.049 56.352H195.233L192.305 59.688L195.257 63H193.073ZM199.828 56.256C200.62 56.256 201.26 56.508 201.748 57.012C202.236 57.508 202.48 58.204 202.48 59.1V63H200.8V59.328C200.8 58.8 200.668 58.396 200.404 58.116C200.14 57.828 199.78 57.684 199.324 57.684C198.86 57.684 198.492 57.828 198.22 58.116C197.956 58.396 197.824 58.8 197.824 59.328V63H196.144V56.352H197.824V57.18C198.048 56.892 198.332 56.668 198.676 56.508C199.028 56.34 199.412 56.256 199.828 56.256ZM207.03 63.108C206.39 63.108 205.814 62.968 205.302 62.688C204.79 62.4 204.386 61.996 204.09 61.476C203.802 60.956 203.658 60.356 203.658 59.676C203.658 58.996 203.806 58.396 204.102 57.876C204.406 57.356 204.818 56.956 205.338 56.676C205.858 56.388 206.438 56.244 207.078 56.244C207.718 56.244 208.298 56.388 208.818 56.676C209.338 56.956 209.746 57.356 210.042 57.876C210.346 58.396 210.498 58.996 210.498 59.676C210.498 60.356 210.342 60.956 210.03 61.476C209.726 61.996 209.31 62.4 208.782 62.688C208.262 62.968 207.678 63.108 207.03 63.108ZM207.03 61.644C207.334 61.644 207.618 61.572 207.882 61.428C208.154 61.276 208.37 61.052 208.53 60.756C208.69 60.46 208.77 60.1 208.77 59.676C208.77 59.044 208.602 58.56 208.266 58.224C207.938 57.88 207.534 57.708 207.054 57.708C206.574 57.708 206.17 57.88 205.842 58.224C205.522 58.56 205.362 59.044 205.362 59.676C205.362 60.308 205.518 60.796 205.83 61.14C206.15 61.476 206.55 61.644 207.03 61.644ZM220.946 56.352L219.002 63H217.19L215.978 58.356L214.766 63H212.942L210.986 56.352H212.69L213.866 61.416L215.138 56.352H216.914L218.162 61.404L219.338 56.352H220.946ZM223.535 54.12V63H221.855V54.12H223.535ZM231.375 59.532C231.375 59.772 231.359 59.988 231.327 60.18H226.467C226.507 60.66 226.675 61.036 226.971 61.308C227.267 61.58 227.631 61.716 228.063 61.716C228.687 61.716 229.131 61.448 229.395 60.912H231.207C231.015 61.552 230.647 62.08 230.103 62.496C229.559 62.904 228.891 63.108 228.099 63.108C227.459 63.108 226.883 62.968 226.371 62.688C225.867 62.4 225.471 61.996 225.183 61.476C224.903 60.956 224.763 60.356 224.763 59.676C224.763 58.988 224.903 58.384 225.183 57.864C225.463 57.344 225.855 56.944 226.359 56.664C226.863 56.384 227.443 56.244 228.099 56.244C228.731 56.244 229.295 56.38 229.791 56.652C230.295 56.924 230.683 57.312 230.955 57.816C231.235 58.312 231.375 58.884 231.375 59.532ZM229.635 59.052C229.627 58.62 229.471 58.276 229.167 58.02C228.863 57.756 228.491 57.624 228.051 57.624C227.635 57.624 227.283 57.752 226.995 58.008C226.715 58.256 226.543 58.604 226.479 59.052H229.635ZM232.169 59.652C232.169 58.98 232.301 58.384 232.565 57.864C232.837 57.344 233.205 56.944 233.669 56.664C234.133 56.384 234.649 56.244 235.217 56.244C235.649 56.244 236.061 56.34 236.453 56.532C236.845 56.716 237.157 56.964 237.389 57.276V54.12H239.093V63H237.389V62.016C237.181 62.344 236.889 62.608 236.513 62.808C236.137 63.008 235.701 63.108 235.205 63.108C234.645 63.108 234.133 62.964 233.669 62.676C233.205 62.388 232.837 61.984 232.565 61.464C232.301 60.936 232.169 60.332 232.169 59.652ZM237.401 59.676C237.401 59.268 237.321 58.92 237.161 58.632C237.001 58.336 236.785 58.112 236.513 57.96C236.241 57.8 235.949 57.72 235.637 57.72C235.325 57.72 235.037 57.796 234.773 57.948C234.509 58.1 234.293 58.324 234.125 58.62C233.965 58.908 233.885 59.252 233.885 59.652C233.885 60.052 233.965 60.404 234.125 60.708C234.293 61.004 234.509 61.232 234.773 61.392C235.045 61.552 235.333 61.632 235.637 61.632C235.949 61.632 236.241 61.556 236.513 61.404C236.785 61.244 237.001 61.02 237.161 60.732C237.321 60.436 237.401 60.084 237.401 59.676ZM243.338 56.244C243.834 56.244 244.27 56.344 244.646 56.544C245.022 56.736 245.318 56.988 245.534 57.3V56.352H247.226V63.048C247.226 63.664 247.102 64.212 246.854 64.692C246.606 65.18 246.234 65.564 245.738 65.844C245.242 66.132 244.642 66.276 243.938 66.276C242.994 66.276 242.218 66.056 241.61 65.616C241.01 65.176 240.67 64.576 240.59 63.816H242.258C242.346 64.12 242.534 64.36 242.822 64.536C243.118 64.72 243.474 64.812 243.89 64.812C244.378 64.812 244.774 64.664 245.078 64.368C245.382 64.08 245.534 63.64 245.534 63.048V62.016C245.318 62.328 245.018 62.588 244.634 62.796C244.258 63.004 243.826 63.108 243.338 63.108C242.778 63.108 242.266 62.964 241.802 62.676C241.338 62.388 240.97 61.984 240.698 61.464C240.434 60.936 240.302 60.332 240.302 59.652C240.302 58.98 240.434 58.384 240.698 57.864C240.97 57.344 241.334 56.944 241.79 56.664C242.254 56.384 242.77 56.244 243.338 56.244ZM245.534 59.676C245.534 59.268 245.454 58.92 245.294 58.632C245.134 58.336 244.918 58.112 244.646 57.96C244.374 57.8 244.082 57.72 243.77 57.72C243.458 57.72 243.17 57.796 242.906 57.948C242.642 58.1 242.426 58.324 242.258 58.62C242.098 58.908 242.018 59.252 242.018 59.652C242.018 60.052 242.098 60.404 242.258 60.708C242.426 61.004 242.642 61.232 242.906 61.392C243.178 61.552 243.466 61.632 243.77 61.632C244.082 61.632 244.374 61.556 244.646 61.404C244.918 61.244 245.134 61.02 245.294 60.732C245.454 60.436 245.534 60.084 245.534 59.676ZM255.047 59.532C255.047 59.772 255.031 59.988 254.999 60.18H250.139C250.179 60.66 250.347 61.036 250.643 61.308C250.939 61.58 251.303 61.716 251.735 61.716C252.359 61.716 252.803 61.448 253.067 60.912H254.879C254.687 61.552 254.319 62.08 253.775 62.496C253.231 62.904 252.563 63.108 251.771 63.108C251.131 63.108 250.555 62.968 250.043 62.688C249.539 62.4 249.143 61.996 248.855 61.476C248.575 60.956 248.435 60.356 248.435 59.676C248.435 58.988 248.575 58.384 248.855 57.864C249.135 57.344 249.527 56.944 250.031 56.664C250.535 56.384 251.115 56.244 251.771 56.244C252.403 56.244 252.967 56.38 253.463 56.652C253.967 56.924 254.355 57.312 254.627 57.816C254.907 58.312 255.047 58.884 255.047 59.532ZM253.307 59.052C253.299 58.62 253.143 58.276 252.839 58.02C252.535 57.756 252.163 57.624 251.723 57.624C251.307 57.624 250.955 57.752 250.667 58.008C250.387 58.256 250.215 58.604 250.151 59.052H253.307Z" fill="white"/>
29
+ <path d="M214 92L216.887 87H211.113L214 92ZM213.5 72V87.5H214.5V72H213.5Z" fill="#A3A3A3"/>
30
+ <rect x="154" y="92" width="120" height="26" rx="4" fill="#71347B"/>
31
+ <path d="M191.464 107.404H188.128L187.576 109H185.812L188.824 100.612H190.78L193.792 109H192.016L191.464 107.404ZM191.008 106.06L189.796 102.556L188.584 106.06H191.008ZM197.462 109.108C196.918 109.108 196.43 109.012 195.998 108.82C195.566 108.62 195.222 108.352 194.966 108.016C194.718 107.68 194.582 107.308 194.558 106.9H196.25C196.282 107.156 196.406 107.368 196.622 107.536C196.846 107.704 197.122 107.788 197.45 107.788C197.77 107.788 198.018 107.724 198.194 107.596C198.378 107.468 198.47 107.304 198.47 107.104C198.47 106.888 198.358 106.728 198.134 106.624C197.918 106.512 197.57 106.392 197.09 106.264C196.594 106.144 196.186 106.02 195.866 105.892C195.554 105.764 195.282 105.568 195.05 105.304C194.826 105.04 194.714 104.684 194.714 104.236C194.714 103.868 194.818 103.532 195.026 103.228C195.242 102.924 195.546 102.684 195.938 102.508C196.338 102.332 196.806 102.244 197.342 102.244C198.134 102.244 198.766 102.444 199.238 102.844C199.71 103.236 199.97 103.768 200.018 104.44H198.41C198.386 104.176 198.274 103.968 198.074 103.816C197.882 103.656 197.622 103.576 197.294 103.576C196.99 103.576 196.754 103.632 196.586 103.744C196.426 103.856 196.346 104.012 196.346 104.212C196.346 104.436 196.458 104.608 196.682 104.728C196.906 104.84 197.254 104.956 197.726 105.076C198.206 105.196 198.602 105.32 198.914 105.448C199.226 105.576 199.494 105.776 199.718 106.048C199.95 106.312 200.07 106.664 200.078 107.104C200.078 107.488 199.97 107.832 199.754 108.136C199.546 108.44 199.242 108.68 198.842 108.856C198.45 109.024 197.99 109.108 197.462 109.108ZM204.001 109.108C203.457 109.108 202.969 109.012 202.537 108.82C202.105 108.62 201.761 108.352 201.505 108.016C201.257 107.68 201.121 107.308 201.097 106.9H202.789C202.821 107.156 202.945 107.368 203.161 107.536C203.385 107.704 203.661 107.788 203.989 107.788C204.309 107.788 204.557 107.724 204.733 107.596C204.917 107.468 205.009 107.304 205.009 107.104C205.009 106.888 204.897 106.728 204.673 106.624C204.457 106.512 204.109 106.392 203.629 106.264C203.133 106.144 202.725 106.02 202.405 105.892C202.093 105.764 201.821 105.568 201.589 105.304C201.365 105.04 201.253 104.684 201.253 104.236C201.253 103.868 201.357 103.532 201.565 103.228C201.781 102.924 202.085 102.684 202.477 102.508C202.877 102.332 203.345 102.244 203.881 102.244C204.673 102.244 205.305 102.444 205.777 102.844C206.249 103.236 206.509 103.768 206.557 104.44H204.949C204.925 104.176 204.813 103.968 204.613 103.816C204.421 103.656 204.161 103.576 203.833 103.576C203.529 103.576 203.293 103.632 203.125 103.744C202.965 103.856 202.885 104.012 202.885 104.212C202.885 104.436 202.997 104.608 203.221 104.728C203.445 104.84 203.793 104.956 204.265 105.076C204.745 105.196 205.141 105.32 205.453 105.448C205.765 105.576 206.033 105.776 206.257 106.048C206.489 106.312 206.609 106.664 206.617 107.104C206.617 107.488 206.509 107.832 206.293 108.136C206.085 108.44 205.781 108.68 205.381 108.856C204.989 109.024 204.529 109.108 204.001 109.108ZM208.848 101.56C208.552 101.56 208.304 101.468 208.104 101.284C207.912 101.092 207.816 100.856 207.816 100.576C207.816 100.296 207.912 100.064 208.104 99.88C208.304 99.688 208.552 99.592 208.848 99.592C209.144 99.592 209.388 99.688 209.58 99.88C209.78 100.064 209.88 100.296 209.88 100.576C209.88 100.856 209.78 101.092 209.58 101.284C209.388 101.468 209.144 101.56 208.848 101.56ZM209.676 102.352V109H207.996V102.352H209.676ZM213.94 102.244C214.436 102.244 214.872 102.344 215.248 102.544C215.624 102.736 215.92 102.988 216.136 103.3V102.352H217.828V109.048C217.828 109.664 217.704 110.212 217.456 110.692C217.208 111.18 216.836 111.564 216.34 111.844C215.844 112.132 215.244 112.276 214.54 112.276C213.596 112.276 212.82 112.056 212.212 111.616C211.612 111.176 211.272 110.576 211.192 109.816H212.86C212.948 110.12 213.136 110.36 213.424 110.536C213.72 110.72 214.076 110.812 214.492 110.812C214.98 110.812 215.376 110.664 215.68 110.368C215.984 110.08 216.136 109.64 216.136 109.048V108.016C215.92 108.328 215.62 108.588 215.236 108.796C214.86 109.004 214.428 109.108 213.94 109.108C213.38 109.108 212.868 108.964 212.404 108.676C211.94 108.388 211.572 107.984 211.3 107.464C211.036 106.936 210.904 106.332 210.904 105.652C210.904 104.98 211.036 104.384 211.3 103.864C211.572 103.344 211.936 102.944 212.392 102.664C212.856 102.384 213.372 102.244 213.94 102.244ZM216.136 105.676C216.136 105.268 216.056 104.92 215.896 104.632C215.736 104.336 215.52 104.112 215.248 103.96C214.976 103.8 214.684 103.72 214.372 103.72C214.06 103.72 213.772 103.796 213.508 103.948C213.244 104.1 213.028 104.324 212.86 104.62C212.7 104.908 212.62 105.252 212.62 105.652C212.62 106.052 212.7 106.404 212.86 106.708C213.028 107.004 213.244 107.232 213.508 107.392C213.78 107.552 214.068 107.632 214.372 107.632C214.684 107.632 214.976 107.556 215.248 107.404C215.52 107.244 215.736 107.02 215.896 106.732C216.056 106.436 216.136 106.084 216.136 105.676ZM223.153 102.256C223.945 102.256 224.585 102.508 225.073 103.012C225.561 103.508 225.805 104.204 225.805 105.1V109H224.125V105.328C224.125 104.8 223.993 104.396 223.729 104.116C223.465 103.828 223.105 103.684 222.649 103.684C222.185 103.684 221.817 103.828 221.545 104.116C221.281 104.396 221.149 104.8 221.149 105.328V109H219.469V102.352H221.149V103.18C221.373 102.892 221.657 102.668 222.001 102.508C222.353 102.34 222.737 102.256 223.153 102.256ZM233.582 105.532C233.582 105.772 233.566 105.988 233.534 106.18H228.674C228.714 106.66 228.882 107.036 229.178 107.308C229.474 107.58 229.838 107.716 230.27 107.716C230.894 107.716 231.338 107.448 231.602 106.912H233.414C233.222 107.552 232.854 108.08 232.31 108.496C231.766 108.904 231.098 109.108 230.306 109.108C229.666 109.108 229.09 108.968 228.578 108.688C228.074 108.4 227.678 107.996 227.39 107.476C227.11 106.956 226.97 106.356 226.97 105.676C226.97 104.988 227.11 104.384 227.39 103.864C227.67 103.344 228.062 102.944 228.566 102.664C229.07 102.384 229.65 102.244 230.306 102.244C230.938 102.244 231.502 102.38 231.998 102.652C232.502 102.924 232.89 103.312 233.162 103.816C233.442 104.312 233.582 104.884 233.582 105.532ZM231.842 105.052C231.834 104.62 231.678 104.276 231.374 104.02C231.07 103.756 230.698 103.624 230.258 103.624C229.842 103.624 229.49 103.752 229.202 104.008C228.922 104.256 228.75 104.604 228.686 105.052H231.842ZM234.376 105.652C234.376 104.98 234.508 104.384 234.772 103.864C235.044 103.344 235.412 102.944 235.876 102.664C236.34 102.384 236.856 102.244 237.424 102.244C237.856 102.244 238.268 102.34 238.66 102.532C239.052 102.716 239.364 102.964 239.596 103.276V100.12H241.3V109H239.596V108.016C239.388 108.344 239.096 108.608 238.72 108.808C238.344 109.008 237.908 109.108 237.412 109.108C236.852 109.108 236.34 108.964 235.876 108.676C235.412 108.388 235.044 107.984 234.772 107.464C234.508 106.936 234.376 106.332 234.376 105.652ZM239.608 105.676C239.608 105.268 239.528 104.92 239.368 104.632C239.208 104.336 238.992 104.112 238.72 103.96C238.448 103.8 238.156 103.72 237.844 103.72C237.532 103.72 237.244 103.796 236.98 103.948C236.716 104.1 236.5 104.324 236.332 104.62C236.172 104.908 236.092 105.252 236.092 105.652C236.092 106.052 236.172 106.404 236.332 106.708C236.5 107.004 236.716 107.232 236.98 107.392C237.252 107.552 237.54 107.632 237.844 107.632C238.156 107.632 238.448 107.556 238.72 107.404C238.992 107.244 239.208 107.02 239.368 106.732C239.528 106.436 239.608 106.084 239.608 105.676Z" fill="white"/>
32
+ <path d="M214 138L216.887 133H211.113L214 138ZM213.5 118V133.5H214.5V118H213.5Z" fill="#A3A3A3"/>
33
+ <rect x="154" y="138" width="120" height="26" rx="4" fill="#71347B"/>
34
+ <path d="M191.148 155L189.3 151.736H188.508V155H186.828V146.624H189.972C190.62 146.624 191.172 146.74 191.628 146.972C192.084 147.196 192.424 147.504 192.648 147.896C192.88 148.28 192.996 148.712 192.996 149.192C192.996 149.744 192.836 150.244 192.516 150.692C192.196 151.132 191.72 151.436 191.088 151.604L193.092 155H191.148ZM188.508 150.476H189.912C190.368 150.476 190.708 150.368 190.932 150.152C191.156 149.928 191.268 149.62 191.268 149.228C191.268 148.844 191.156 148.548 190.932 148.34C190.708 148.124 190.368 148.016 189.912 148.016H188.508V150.476ZM200.696 151.532C200.696 151.772 200.68 151.988 200.648 152.18H195.788C195.828 152.66 195.996 153.036 196.292 153.308C196.588 153.58 196.952 153.716 197.384 153.716C198.008 153.716 198.452 153.448 198.716 152.912H200.528C200.336 153.552 199.968 154.08 199.424 154.496C198.88 154.904 198.212 155.108 197.42 155.108C196.78 155.108 196.204 154.968 195.692 154.688C195.188 154.4 194.792 153.996 194.504 153.476C194.224 152.956 194.083 152.356 194.083 151.676C194.083 150.988 194.224 150.384 194.504 149.864C194.784 149.344 195.176 148.944 195.68 148.664C196.184 148.384 196.764 148.244 197.42 148.244C198.052 148.244 198.616 148.38 199.112 148.652C199.616 148.924 200.004 149.312 200.276 149.816C200.556 150.312 200.696 150.884 200.696 151.532ZM198.956 151.052C198.948 150.62 198.792 150.276 198.488 150.02C198.184 149.756 197.812 149.624 197.372 149.624C196.956 149.624 196.604 149.752 196.316 150.008C196.036 150.256 195.864 150.604 195.8 151.052H198.956ZM204.466 155.108C203.922 155.108 203.434 155.012 203.002 154.82C202.57 154.62 202.226 154.352 201.97 154.016C201.722 153.68 201.586 153.308 201.562 152.9H203.254C203.286 153.156 203.41 153.368 203.626 153.536C203.85 153.704 204.126 153.788 204.454 153.788C204.774 153.788 205.022 153.724 205.198 153.596C205.382 153.468 205.474 153.304 205.474 153.104C205.474 152.888 205.362 152.728 205.138 152.624C204.922 152.512 204.574 152.392 204.094 152.264C203.598 152.144 203.19 152.02 202.87 151.892C202.558 151.764 202.286 151.568 202.054 151.304C201.83 151.04 201.718 150.684 201.718 150.236C201.718 149.868 201.822 149.532 202.03 149.228C202.246 148.924 202.55 148.684 202.942 148.508C203.342 148.332 203.81 148.244 204.346 148.244C205.138 148.244 205.77 148.444 206.242 148.844C206.714 149.236 206.974 149.768 207.022 150.44H205.414C205.39 150.176 205.278 149.968 205.078 149.816C204.886 149.656 204.626 149.576 204.298 149.576C203.994 149.576 203.758 149.632 203.59 149.744C203.43 149.856 203.35 150.012 203.35 150.212C203.35 150.436 203.462 150.608 203.686 150.728C203.91 150.84 204.258 150.956 204.73 151.076C205.21 151.196 205.606 151.32 205.918 151.448C206.23 151.576 206.498 151.776 206.722 152.048C206.954 152.312 207.074 152.664 207.082 153.104C207.082 153.488 206.974 153.832 206.758 154.136C206.55 154.44 206.246 154.68 205.846 154.856C205.454 155.024 204.994 155.108 204.466 155.108ZM211.413 155.108C210.773 155.108 210.197 154.968 209.685 154.688C209.173 154.4 208.769 153.996 208.473 153.476C208.185 152.956 208.041 152.356 208.041 151.676C208.041 150.996 208.189 150.396 208.485 149.876C208.789 149.356 209.201 148.956 209.721 148.676C210.241 148.388 210.821 148.244 211.461 148.244C212.101 148.244 212.681 148.388 213.201 148.676C213.721 148.956 214.129 149.356 214.425 149.876C214.729 150.396 214.881 150.996 214.881 151.676C214.881 152.356 214.725 152.956 214.413 153.476C214.109 153.996 213.693 154.4 213.165 154.688C212.645 154.968 212.061 155.108 211.413 155.108ZM211.413 153.644C211.717 153.644 212.001 153.572 212.265 153.428C212.537 153.276 212.753 153.052 212.913 152.756C213.073 152.46 213.153 152.1 213.153 151.676C213.153 151.044 212.985 150.56 212.649 150.224C212.321 149.88 211.917 149.708 211.437 149.708C210.957 149.708 210.553 149.88 210.225 150.224C209.905 150.56 209.745 151.044 209.745 151.676C209.745 152.308 209.901 152.796 210.213 153.14C210.533 153.476 210.933 153.644 211.413 153.644ZM217.793 146.12V155H216.113V146.12H217.793ZM222.225 153.452L223.905 148.352H225.693L223.233 155H221.193L218.745 148.352H220.545L222.225 153.452ZM232.817 151.532C232.817 151.772 232.801 151.988 232.769 152.18H227.909C227.949 152.66 228.117 153.036 228.413 153.308C228.709 153.58 229.073 153.716 229.505 153.716C230.129 153.716 230.573 153.448 230.837 152.912H232.649C232.457 153.552 232.089 154.08 231.545 154.496C231.001 154.904 230.333 155.108 229.541 155.108C228.901 155.108 228.325 154.968 227.813 154.688C227.309 154.4 226.913 153.996 226.625 153.476C226.345 152.956 226.205 152.356 226.205 151.676C226.205 150.988 226.345 150.384 226.625 149.864C226.905 149.344 227.297 148.944 227.801 148.664C228.305 148.384 228.885 148.244 229.541 148.244C230.173 148.244 230.737 148.38 231.233 148.652C231.737 148.924 232.125 149.312 232.397 149.816C232.677 150.312 232.817 150.884 232.817 151.532ZM231.077 151.052C231.069 150.62 230.913 150.276 230.609 150.02C230.305 149.756 229.933 149.624 229.493 149.624C229.077 149.624 228.725 149.752 228.437 150.008C228.157 150.256 227.985 150.604 227.921 151.052H231.077ZM233.611 151.652C233.611 150.98 233.743 150.384 234.007 149.864C234.279 149.344 234.647 148.944 235.111 148.664C235.575 148.384 236.091 148.244 236.659 148.244C237.091 148.244 237.503 148.34 237.895 148.532C238.287 148.716 238.599 148.964 238.831 149.276V146.12H240.535V155H238.831V154.016C238.623 154.344 238.331 154.608 237.955 154.808C237.579 155.008 237.143 155.108 236.647 155.108C236.087 155.108 235.575 154.964 235.111 154.676C234.647 154.388 234.279 153.984 234.007 153.464C233.743 152.936 233.611 152.332 233.611 151.652ZM238.843 151.676C238.843 151.268 238.763 150.92 238.603 150.632C238.443 150.336 238.227 150.112 237.955 149.96C237.683 149.8 237.391 149.72 237.079 149.72C236.767 149.72 236.479 149.796 236.215 149.948C235.951 150.1 235.735 150.324 235.567 150.62C235.407 150.908 235.327 151.252 235.327 151.652C235.327 152.052 235.407 152.404 235.567 152.708C235.735 153.004 235.951 153.232 236.215 153.392C236.487 153.552 236.775 153.632 237.079 153.632C237.391 153.632 237.683 153.556 237.955 153.404C238.227 153.244 238.443 153.02 238.603 152.732C238.763 152.436 238.843 152.084 238.843 151.676Z" fill="white"/>
35
+ <path d="M214 184L216.887 179H211.113L214 184ZM213.5 164V179.5H214.5V164H213.5Z" fill="#A3A3A3"/>
36
+ <rect x="154" y="184" width="120" height="26" rx="4" fill="#71347B"/>
37
+ <path d="M192.92 196.8C192.92 195.976 193.104 195.24 193.472 194.592C193.848 193.936 194.356 193.428 194.996 193.068C195.644 192.7 196.368 192.516 197.168 192.516C198.104 192.516 198.924 192.756 199.628 193.236C200.332 193.716 200.824 194.38 201.104 195.228H199.172C198.98 194.828 198.708 194.528 198.356 194.328C198.012 194.128 197.612 194.028 197.156 194.028C196.668 194.028 196.232 194.144 195.848 194.376C195.472 194.6 195.176 194.92 194.96 195.336C194.752 195.752 194.648 196.24 194.648 196.8C194.648 197.352 194.752 197.84 194.96 198.264C195.176 198.68 195.472 199.004 195.848 199.236C196.232 199.46 196.668 199.572 197.156 199.572C197.612 199.572 198.012 199.472 198.356 199.272C198.708 199.064 198.98 198.76 199.172 198.36H201.104C200.824 199.216 200.332 199.884 199.628 200.364C198.932 200.836 198.112 201.072 197.168 201.072C196.368 201.072 195.644 200.892 194.996 200.532C194.356 200.164 193.848 199.656 193.472 199.008C193.104 198.36 192.92 197.624 192.92 196.8ZM204.219 192.12V201H202.539V192.12H204.219ZM208.831 201.108C208.191 201.108 207.615 200.968 207.103 200.688C206.591 200.4 206.187 199.996 205.891 199.476C205.603 198.956 205.459 198.356 205.459 197.676C205.459 196.996 205.607 196.396 205.903 195.876C206.207 195.356 206.619 194.956 207.139 194.676C207.659 194.388 208.239 194.244 208.879 194.244C209.519 194.244 210.099 194.388 210.619 194.676C211.139 194.956 211.547 195.356 211.843 195.876C212.147 196.396 212.299 196.996 212.299 197.676C212.299 198.356 212.143 198.956 211.831 199.476C211.527 199.996 211.111 200.4 210.583 200.688C210.063 200.968 209.479 201.108 208.831 201.108ZM208.831 199.644C209.135 199.644 209.419 199.572 209.683 199.428C209.955 199.276 210.171 199.052 210.331 198.756C210.491 198.46 210.571 198.1 210.571 197.676C210.571 197.044 210.403 196.56 210.067 196.224C209.739 195.88 209.335 195.708 208.855 195.708C208.375 195.708 207.971 195.88 207.643 196.224C207.323 196.56 207.163 197.044 207.163 197.676C207.163 198.308 207.319 198.796 207.631 199.14C207.951 199.476 208.351 199.644 208.831 199.644ZM216.075 201.108C215.531 201.108 215.043 201.012 214.611 200.82C214.179 200.62 213.835 200.352 213.579 200.016C213.331 199.68 213.195 199.308 213.171 198.9H214.863C214.895 199.156 215.019 199.368 215.235 199.536C215.459 199.704 215.735 199.788 216.063 199.788C216.383 199.788 216.631 199.724 216.807 199.596C216.991 199.468 217.083 199.304 217.083 199.104C217.083 198.888 216.971 198.728 216.747 198.624C216.531 198.512 216.183 198.392 215.703 198.264C215.207 198.144 214.799 198.02 214.479 197.892C214.167 197.764 213.895 197.568 213.663 197.304C213.439 197.04 213.327 196.684 213.327 196.236C213.327 195.868 213.431 195.532 213.639 195.228C213.855 194.924 214.159 194.684 214.551 194.508C214.951 194.332 215.419 194.244 215.955 194.244C216.747 194.244 217.379 194.444 217.851 194.844C218.323 195.236 218.583 195.768 218.631 196.44H217.023C216.999 196.176 216.887 195.968 216.687 195.816C216.495 195.656 216.235 195.576 215.907 195.576C215.603 195.576 215.367 195.632 215.199 195.744C215.039 195.856 214.959 196.012 214.959 196.212C214.959 196.436 215.071 196.608 215.295 196.728C215.519 196.84 215.867 196.956 216.339 197.076C216.819 197.196 217.215 197.32 217.527 197.448C217.839 197.576 218.107 197.776 218.331 198.048C218.563 198.312 218.683 198.664 218.691 199.104C218.691 199.488 218.583 199.832 218.367 200.136C218.159 200.44 217.855 200.68 217.455 200.856C217.063 201.024 216.603 201.108 216.075 201.108ZM226.25 197.532C226.25 197.772 226.234 197.988 226.202 198.18H221.342C221.382 198.66 221.55 199.036 221.846 199.308C222.142 199.58 222.506 199.716 222.938 199.716C223.562 199.716 224.006 199.448 224.27 198.912H226.082C225.89 199.552 225.522 200.08 224.978 200.496C224.434 200.904 223.766 201.108 222.974 201.108C222.334 201.108 221.758 200.968 221.246 200.688C220.742 200.4 220.346 199.996 220.058 199.476C219.778 198.956 219.638 198.356 219.638 197.676C219.638 196.988 219.778 196.384 220.058 195.864C220.338 195.344 220.73 194.944 221.234 194.664C221.738 194.384 222.318 194.244 222.974 194.244C223.606 194.244 224.17 194.38 224.666 194.652C225.17 194.924 225.558 195.312 225.83 195.816C226.11 196.312 226.25 196.884 226.25 197.532ZM224.51 197.052C224.502 196.62 224.346 196.276 224.042 196.02C223.738 195.756 223.366 195.624 222.926 195.624C222.51 195.624 222.158 195.752 221.87 196.008C221.59 196.256 221.418 196.604 221.354 197.052H224.51ZM227.044 197.652C227.044 196.98 227.176 196.384 227.44 195.864C227.712 195.344 228.08 194.944 228.544 194.664C229.008 194.384 229.524 194.244 230.092 194.244C230.524 194.244 230.936 194.34 231.328 194.532C231.72 194.716 232.032 194.964 232.264 195.276V192.12H233.968V201H232.264V200.016C232.056 200.344 231.764 200.608 231.388 200.808C231.012 201.008 230.576 201.108 230.08 201.108C229.52 201.108 229.008 200.964 228.544 200.676C228.08 200.388 227.712 199.984 227.44 199.464C227.176 198.936 227.044 198.332 227.044 197.652ZM232.276 197.676C232.276 197.268 232.196 196.92 232.036 196.632C231.876 196.336 231.66 196.112 231.388 195.96C231.116 195.8 230.824 195.72 230.512 195.72C230.2 195.72 229.912 195.796 229.648 195.948C229.384 196.1 229.168 196.324 229 196.62C228.84 196.908 228.76 197.252 228.76 197.652C228.76 198.052 228.84 198.404 229 198.708C229.168 199.004 229.384 199.232 229.648 199.392C229.92 199.552 230.208 199.632 230.512 199.632C230.824 199.632 231.116 199.556 231.388 199.404C231.66 199.244 231.876 199.02 232.036 198.732C232.196 198.436 232.276 198.084 232.276 197.676Z" fill="white"/>
38
+ <rect x="14" y="46" width="120" height="26" rx="4" fill="#71347B"/>
39
+ <path d="M41.42 58.8C41.42 57.976 41.604 57.24 41.972 56.592C42.348 55.936 42.856 55.428 43.496 55.068C44.144 54.7 44.868 54.516 45.668 54.516C46.604 54.516 47.424 54.756 48.128 55.236C48.832 55.716 49.324 56.38 49.604 57.228H47.672C47.48 56.828 47.208 56.528 46.856 56.328C46.512 56.128 46.112 56.028 45.656 56.028C45.168 56.028 44.732 56.144 44.348 56.376C43.972 56.6 43.676 56.92 43.46 57.336C43.252 57.752 43.148 58.24 43.148 58.8C43.148 59.352 43.252 59.84 43.46 60.264C43.676 60.68 43.972 61.004 44.348 61.236C44.732 61.46 45.168 61.572 45.656 61.572C46.112 61.572 46.512 61.472 46.856 61.272C47.208 61.064 47.48 60.76 47.672 60.36H49.604C49.324 61.216 48.832 61.884 48.128 62.364C47.432 62.836 46.612 63.072 45.668 63.072C44.868 63.072 44.144 62.892 43.496 62.532C42.856 62.164 42.348 61.656 41.972 61.008C41.604 60.36 41.42 59.624 41.42 58.8ZM53.9909 63.108C53.3509 63.108 52.7749 62.968 52.2629 62.688C51.7509 62.4 51.3469 61.996 51.0509 61.476C50.7629 60.956 50.6189 60.356 50.6189 59.676C50.6189 58.996 50.7669 58.396 51.0629 57.876C51.3669 57.356 51.7789 56.956 52.2989 56.676C52.8189 56.388 53.3989 56.244 54.0389 56.244C54.6789 56.244 55.2589 56.388 55.7789 56.676C56.2989 56.956 56.7069 57.356 57.0029 57.876C57.3069 58.396 57.4589 58.996 57.4589 59.676C57.4589 60.356 57.3029 60.956 56.9909 61.476C56.6869 61.996 56.2709 62.4 55.7429 62.688C55.2229 62.968 54.6389 63.108 53.9909 63.108ZM53.9909 61.644C54.2949 61.644 54.5789 61.572 54.8429 61.428C55.1149 61.276 55.3309 61.052 55.4909 60.756C55.6509 60.46 55.7309 60.1 55.7309 59.676C55.7309 59.044 55.5629 58.56 55.2269 58.224C54.8989 57.88 54.4949 57.708 54.0149 57.708C53.5349 57.708 53.1309 57.88 52.8029 58.224C52.4829 58.56 52.3229 59.044 52.3229 59.676C52.3229 60.308 52.4789 60.796 52.7909 61.14C53.1109 61.476 53.5109 61.644 53.9909 61.644ZM62.3753 56.256C63.1673 56.256 63.8073 56.508 64.2953 57.012C64.7833 57.508 65.0273 58.204 65.0273 59.1V63H63.3473V59.328C63.3473 58.8 63.2153 58.396 62.9513 58.116C62.6873 57.828 62.3273 57.684 61.8713 57.684C61.4073 57.684 61.0393 57.828 60.7673 58.116C60.5033 58.396 60.3713 58.8 60.3713 59.328V63H58.6913V56.352H60.3713V57.18C60.5953 56.892 60.8793 56.668 61.2233 56.508C61.5753 56.34 61.9593 56.256 62.3753 56.256ZM69.6729 57.732H68.5089V63H66.8049V57.732H66.0489V56.352H66.8049V56.016C66.8049 55.2 67.0369 54.6 67.5009 54.216C67.9649 53.832 68.6649 53.652 69.6009 53.676V55.092C69.1929 55.084 68.9089 55.152 68.7489 55.296C68.5889 55.44 68.5089 55.7 68.5089 56.076V56.352H69.6729V57.732ZM71.6136 55.56C71.3176 55.56 71.0696 55.468 70.8696 55.284C70.6776 55.092 70.5816 54.856 70.5816 54.576C70.5816 54.296 70.6776 54.064 70.8696 53.88C71.0696 53.688 71.3176 53.592 71.6136 53.592C71.9096 53.592 72.1536 53.688 72.3456 53.88C72.5456 54.064 72.6456 54.296 72.6456 54.576C72.6456 54.856 72.5456 55.092 72.3456 55.284C72.1536 55.468 71.9096 55.56 71.6136 55.56ZM72.4416 56.352V63H70.7616V56.352H72.4416ZM75.7814 57.384C75.9974 57.032 76.2774 56.756 76.6214 56.556C76.9734 56.356 77.3734 56.256 77.8214 56.256V58.02H77.3774C76.8494 58.02 76.4494 58.144 76.1774 58.392C75.9134 58.64 75.7814 59.072 75.7814 59.688V63H74.1014V56.352H75.7814V57.384ZM87.209 56.256C88.025 56.256 88.681 56.508 89.177 57.012C89.681 57.508 89.933 58.204 89.933 59.1V63H88.253V59.328C88.253 58.808 88.121 58.412 87.857 58.14C87.593 57.86 87.233 57.72 86.777 57.72C86.321 57.72 85.957 57.86 85.685 58.14C85.421 58.412 85.289 58.808 85.289 59.328V63H83.609V59.328C83.609 58.808 83.477 58.412 83.213 58.14C82.949 57.86 82.589 57.72 82.133 57.72C81.669 57.72 81.301 57.86 81.029 58.14C80.765 58.412 80.633 58.808 80.633 59.328V63H78.953V56.352H80.633V57.156C80.849 56.876 81.125 56.656 81.461 56.496C81.805 56.336 82.181 56.256 82.589 56.256C83.109 56.256 83.573 56.368 83.981 56.592C84.389 56.808 84.705 57.12 84.929 57.528C85.145 57.144 85.457 56.836 85.865 56.604C86.281 56.372 86.729 56.256 87.209 56.256ZM97.7072 59.532C97.7072 59.772 97.6912 59.988 97.6592 60.18H92.7992C92.8392 60.66 93.0072 61.036 93.3032 61.308C93.5992 61.58 93.9632 61.716 94.3952 61.716C95.0192 61.716 95.4632 61.448 95.7272 60.912H97.5392C97.3472 61.552 96.9792 62.08 96.4352 62.496C95.8912 62.904 95.2232 63.108 94.4312 63.108C93.7912 63.108 93.2152 62.968 92.7032 62.688C92.1992 62.4 91.8032 61.996 91.5152 61.476C91.2352 60.956 91.0952 60.356 91.0952 59.676C91.0952 58.988 91.2352 58.384 91.5152 57.864C91.7952 57.344 92.1872 56.944 92.6912 56.664C93.1952 56.384 93.7752 56.244 94.4312 56.244C95.0632 56.244 95.6272 56.38 96.1232 56.652C96.6272 56.924 97.0152 57.312 97.2872 57.816C97.5672 58.312 97.7072 58.884 97.7072 59.532ZM95.9672 59.052C95.9592 58.62 95.8032 58.276 95.4992 58.02C95.1952 57.756 94.8232 57.624 94.3832 57.624C93.9672 57.624 93.6152 57.752 93.3272 58.008C93.0472 58.256 92.8752 58.604 92.8112 59.052H95.9672ZM98.5015 59.652C98.5015 58.98 98.6335 58.384 98.8975 57.864C99.1695 57.344 99.5375 56.944 100.001 56.664C100.465 56.384 100.981 56.244 101.549 56.244C101.981 56.244 102.393 56.34 102.785 56.532C103.177 56.716 103.489 56.964 103.721 57.276V54.12H105.425V63H103.721V62.016C103.513 62.344 103.221 62.608 102.845 62.808C102.469 63.008 102.033 63.108 101.537 63.108C100.977 63.108 100.465 62.964 100.001 62.676C99.5375 62.388 99.1695 61.984 98.8975 61.464C98.6335 60.936 98.5015 60.332 98.5015 59.652ZM103.733 59.676C103.733 59.268 103.653 58.92 103.493 58.632C103.333 58.336 103.117 58.112 102.845 57.96C102.573 57.8 102.281 57.72 101.969 57.72C101.657 57.72 101.369 57.796 101.105 57.948C100.841 58.1 100.625 58.324 100.457 58.62C100.297 58.908 100.217 59.252 100.217 59.652C100.217 60.052 100.297 60.404 100.457 60.708C100.625 61.004 100.841 61.232 101.105 61.392C101.377 61.552 101.665 61.632 101.969 61.632C102.281 61.632 102.573 61.556 102.845 61.404C103.117 61.244 103.333 61.02 103.493 60.732C103.653 60.436 103.733 60.084 103.733 59.676Z" fill="white"/>
40
+ <path d="M134 59L139 61.8868V56.1132L134 59ZM138.5 59.5H154V58.5H138.5V59.5Z" fill="#A3A3A3"/>
41
+ <path d="M274 105L279 107.887V102.113L274 105ZM278.5 105.5H353V104.5H278.5V105.5Z" fill="#A3A3A3"/>
42
+ <path d="M154 106L149 103.113V108.887L154 106ZM74 106H73.5V106.5H74V106ZM73.5 72V106H74.5V72H73.5ZM74 106.5H149.5V105.5H74V106.5Z" fill="#A3A3A3"/>
43
+ <path d="M274 20H294V105" stroke="#A3A3A3"/>
44
+ <path d="M274 147L279 149.887V144.113L274 147ZM353 147V147.5H353.5V147H353ZM352.5 26V147H353.5V26L352.5 26ZM353 146.5L278.5 146.5V147.5L353 147.5V146.5Z" fill="#A3A3A3"/>
45
+ <path d="M366 26L363.113 31H368.887L366 26ZM366 159V159.5H366.5V159H366ZM365.5 30.5V159H366.5V30.5H365.5ZM366 158.5L274 158.5V159.5L366 159.5V158.5Z" fill="#A3A3A3"/>
46
+ <path d="M463.5 153L355 153L274 153" stroke="#A3A3A3"/>
47
+ </svg>
@@ -47,9 +47,8 @@
47
47
  }
48
48
  }
49
49
  .scroll {
50
- max-height: 90px;
51
- // overflow-y: scroll;
52
- overflow: hidden;
50
+ max-height: 256px;
51
+ overflow-x: hidden;
53
52
  text-overflow: ellipsis;
54
53
  white-space: nowrap;
55
54
  &::-webkit-scrollbar {
@@ -63,6 +63,7 @@ const AllProjectsDropdown = ({
63
63
  color="var(--primary-icon-color)"
64
64
  height={8}
65
65
  width={8}
66
+ hoverEffect={false}
66
67
  />
67
68
  </div>
68
69
  </div>