@cwellt_software/cwellt-reactjs-lib 1.1.6 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +1314 -316
- package/dist/index.css +2 -2
- package/dist/index.d.ts +235 -6
- package/dist/index.es.js +1310 -316
- package/dist/src/common/classes/CwSelectList.js +12 -0
- package/dist/src/common/classes/CwSelectListItems.js +14 -0
- package/dist/src/common/functions/collections.js +18 -0
- package/dist/src/common/functions/colorManipulation.js +76 -0
- package/dist/src/common/functions/dsl/UiEventDSL.js +20 -0
- package/dist/src/common/functions/useSingleAndDoubleClicks.js +28 -0
- package/dist/src/components/control/action/button/CwButton.js +13 -0
- package/dist/src/components/control/action/buttons/CwButtons.js +188 -0
- package/dist/src/components/control/action/contextmenu/CwContextMenu.js +43 -0
- package/dist/src/components/control/action/contextual-menu/CwContextualMenu.js +55 -0
- package/dist/src/components/control/action/search/CwSearch.js +67 -0
- package/dist/src/components/control/action/tooltip-dialog/CwTooltipDialog.js +11 -0
- package/dist/src/components/control/choice/checkbox/CwCheckbox.js +15 -0
- package/dist/src/components/control/choice/deprecated/MultiSelect_deprecated_.js +99 -0
- package/dist/src/components/control/choice/dropdown/CwDropdown.js +27 -0
- package/dist/src/components/control/choice/dropdown/CwDropdownContainer.js +30 -0
- package/dist/src/components/control/choice/dropdown/CwDropdownFilter.js +10 -0
- package/dist/src/components/control/choice/multi-filter/CwMultiFilter.js +298 -0
- package/dist/src/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.js +17 -0
- package/dist/src/components/control/choice/multiselect/CwHeadFilter.js +80 -0
- package/dist/src/components/control/choice/multiselect/CwMultiselect.js +393 -0
- package/dist/src/components/control/choice/multiselect/CwOptionList.js +36 -0
- package/dist/src/components/control/choice/option/CwOption.js +16 -0
- package/dist/src/components/control/choice/select/CwSelect.js +36 -0
- package/dist/src/components/control/choice/toggle/CwToggle.js +9 -0
- package/dist/src/components/control/input/any/CwInput.js +16 -0
- package/dist/src/components/control/input/color/CwColorPicker.js +210 -0
- package/dist/src/components/control/input/color/CwInputColor.js +142 -0
- package/dist/src/components/control/input/date/CwInputDate.js +29 -0
- package/dist/src/components/control/input/date-picker/CwInputDatePicker.js +109 -0
- package/dist/src/components/control/input/date-text/CwInputDateText.js +90 -0
- package/dist/src/components/control/input/datetime/CwInputDatetime.js +29 -0
- package/dist/src/components/control/input/digit/CwDigit.js +28 -0
- package/dist/src/components/control/input/file/CwFileUpload.js +52 -0
- package/dist/src/components/control/input/file/CwFileUploadMultiple.js +148 -0
- package/dist/src/components/control/input/image/CwInputImage.js +52 -0
- package/dist/src/components/control/input/image-area/CwImageArea.js +113 -0
- package/dist/src/components/control/input/new-dates/CwDatePicker.d.ts +42 -0
- package/dist/src/components/control/input/new-dates/CwDatePicker.d.ts.map +1 -0
- package/dist/src/components/control/input/new-dates/CwDateRangePicker.d.ts +63 -0
- package/dist/src/components/control/input/new-dates/CwDateRangePicker.d.ts.map +1 -0
- package/dist/src/components/control/input/new-dates/CwDateTimePicker.d.ts +47 -0
- package/dist/src/components/control/input/new-dates/CwDateTimePicker.d.ts.map +1 -0
- package/dist/src/components/control/input/new-dates/CwDateTimePickerCompact.d.ts +46 -0
- package/dist/src/components/control/input/new-dates/CwDateTimePickerCompact.d.ts.map +1 -0
- package/dist/src/components/control/input/new-dates/CwTimePicker.d.ts +38 -0
- package/dist/src/components/control/input/new-dates/CwTimePicker.d.ts.map +1 -0
- package/dist/src/components/control/input/new-dates/dateRangePresets.d.ts +19 -0
- package/dist/src/components/control/input/new-dates/dateRangePresets.d.ts.map +1 -0
- package/dist/src/components/control/input/number/CwInputNumber.js +11 -0
- package/dist/src/components/control/input/phone/CwInputPhone.js +24 -0
- package/dist/src/components/control/input/text/CwInputText.js +31 -0
- package/dist/src/components/control/input/text-area/CwTextArea.js +9 -0
- package/dist/src/components/control/input/time/CwTime.js +29 -0
- package/dist/src/components/control/input/weekday/CwWeekdaySelector.js +143 -0
- package/dist/src/components/custom/find-airport/CwFindAirportComp.js +240 -0
- package/dist/src/components/custom/scheduler/CwSchedulerComp.js +211 -0
- package/dist/src/components/custom/scheduler/CwSuperSchedulerComp.js +269 -0
- package/dist/src/components/custom/scheduler/components/EventRender.js +142 -0
- package/dist/src/components/custom/scheduler/components/ResourceListRender.js +12 -0
- package/dist/src/components/custom/scheduler/components/ResourceRender.js +26 -0
- package/dist/src/components/custom/scheduler/components/day_headers/DayHeader.js +13 -0
- package/dist/src/components/custom/scheduler/components/day_headers/MonthHeader.js +12 -0
- package/dist/src/components/custom/scheduler/components/day_headers/MyDaysHeader.js +62 -0
- package/dist/src/components/custom/scheduler/components/day_headers/WeekHeader.js +13 -0
- package/dist/src/components/custom/scheduler/components/resources_title_list/ResourcesTitleList.js +24 -0
- package/dist/src/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.js +17 -0
- package/dist/src/components/custom/scheduler/components/scheduler_header/SchedulerHeader.js +26 -0
- package/dist/src/components/custom/scheduler/components/scheduler_timeline/SchedulerTimeLine.js +23 -0
- package/dist/src/components/custom/scheduler/components/time_headers/TimeHeader.js +31 -0
- package/dist/src/components/custom/scheduler/components/time_headers/TimeHeaderRow.js +16 -0
- package/dist/src/components/custom/scheduler/components/time_line/TimeLine.js +12 -0
- package/dist/src/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.js +5 -0
- package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDates.js +15 -0
- package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.js +5 -0
- package/dist/src/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.js +43 -0
- package/dist/src/components/custom/scheduler/logic/dates/getMonthHeaderData.js +35 -0
- package/dist/src/components/custom/scheduler/logic/dates/getUtcToday.js +6 -0
- package/dist/src/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.js +20 -0
- package/dist/src/components/custom/scheduler/logic/dates/listOfDatesToWeeks.js +55 -0
- package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisionType.js +13 -0
- package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisions.js +16 -0
- package/dist/src/components/custom/scheduler/logic/filtering/filterEvents.js +33 -0
- package/dist/src/components/custom/scheduler/logic/filtering/filterResources.js +14 -0
- package/dist/src/components/custom/scheduler/logic/filtering/hasSameProperties.js +10 -0
- package/dist/src/components/custom/scheduler/logic/onDrop/OnDrop.js +45 -0
- package/dist/src/components/custom/scheduler/logic/pixels/getHeightLineScheduler.js +14 -0
- package/dist/src/components/custom/scheduler/logic/pixels/getPixelsForEvent.js +32 -0
- package/dist/src/components/custom/scheduler/logic/pixels/heightScheduler.js +14 -0
- package/dist/src/components/custom/scheduler/logic/pixels/heightSchedulerPinned.js +9 -0
- package/dist/src/components/custom/scheduler/logic/state_handle/doubleClickOnResource.js +5 -0
- package/dist/src/components/custom/scheduler/logic/state_handle/handleResourceChange.js +11 -0
- package/dist/src/components/custom/scheduler/logic/state_handle/onDragOver.js +9 -0
- package/dist/src/components/custom/scheduler/logic/state_handle/onDropEventToResource.js +3 -0
- package/dist/src/components/custom/scheduler/logic/strings/compareStrings.js +7 -0
- package/dist/src/components/custom/scheduler/logic/strings/getGUID.js +7 -0
- package/dist/src/components/custom/scheduler/logic/ui/checkIfSlotAvailable.js +8 -0
- package/dist/src/components/custom/scheduler/logic/ui/getEventsOfResource.js +45 -0
- package/dist/src/components/custom/scheduler/logic/ui/getTimeHeaders.js +35 -0
- package/dist/src/components/custom/scheduler/logic/ui/isAllowedToMove.js +19 -0
- package/dist/src/components/custom/scheduler/logic/ui/updateResourceVisibility.js +15 -0
- package/dist/src/components/custom/scheduler/state/CblDragAndDrop.js +18 -0
- package/dist/src/components/custom/scheduler/state/CwSchedulerProps.js +1 -0
- package/dist/src/components/custom/scheduler/state/Resource.js +18 -0
- package/dist/src/components/custom/scheduler/state/State.js +1 -0
- package/dist/src/components/custom/scheduler/state/cblEvent.js +28 -0
- package/dist/src/components/custom/scheduler/state/cblEventCompProps.js +1 -0
- package/dist/src/components/custom/scheduler/state/resourceCompProps2.js +1 -0
- package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.js +123 -0
- package/dist/src/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.d.ts +2 -1
- package/dist/src/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.js +118 -0
- package/dist/src/components/custom/scheduler-new/presentation/SchedulerPresenter.js +166 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/header/HeaderDivision.js +26 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/header/HeaderTitle.js +8 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.js +86 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.js +60 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.js +24 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/Event.js +150 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/EventSideDrag.js +11 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.js +176 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.js +8 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/timeline/TimeLine.js +39 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/timeline/WeekEndLine.js +8 -0
- package/dist/src/components/custom/scheduler-new/presentation/helpers.js +43 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/WeekendCalc.js +24 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/dateFromPercentage.js +7 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/eventIsVisible.js +7 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.js +113 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getDivisions.js +21 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getEventSizes.js +30 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.js +13 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getPercentageFromMouseEvent.js +7 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.js +32 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.js +12 -0
- package/dist/src/components/custom/scheduler-temporal/CwSchedulerComp2.js +267 -0
- package/dist/src/components/custom/scheduler-temporal/CwSuperSchedulerComp.js +269 -0
- package/dist/src/components/custom/scheduler-temporal/components/EventRender.js +142 -0
- package/dist/src/components/custom/scheduler-temporal/components/ResourceListRender.js +12 -0
- package/dist/src/components/custom/scheduler-temporal/components/ResourceRender.js +26 -0
- package/dist/src/components/custom/scheduler-temporal/components/day_headers/DayHeader.js +13 -0
- package/dist/src/components/custom/scheduler-temporal/components/day_headers/MonthHeader.js +12 -0
- package/dist/src/components/custom/scheduler-temporal/components/day_headers/MyDaysHeader.js +62 -0
- package/dist/src/components/custom/scheduler-temporal/components/day_headers/WeekHeader.js +13 -0
- package/dist/src/components/custom/scheduler-temporal/components/resources_title_list/ResourcesTitleList.js +22 -0
- package/dist/src/components/custom/scheduler-temporal/components/scheduler_content_area/SchedulerContentArea.js +17 -0
- package/dist/src/components/custom/scheduler-temporal/components/scheduler_header/SchedulerHeader.js +26 -0
- package/dist/src/components/custom/scheduler-temporal/components/scheduler_timeline/SchedulerTimeLine.js +23 -0
- package/dist/src/components/custom/scheduler-temporal/components/time_headers/TimeHeader.js +31 -0
- package/dist/src/components/custom/scheduler-temporal/components/time_headers/TimeHeaderRow.js +16 -0
- package/dist/src/components/custom/scheduler-temporal/components/time_line/TimeLine.js +12 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/addMinutesToDateFromPx.js +5 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDates.js +15 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDatesWithoutCeil.js +5 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/getFormatedTimeForHeader.js +43 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/getMonthHeaderData.js +35 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/getUtcToday.js +6 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/getWeekHeaderDataFromWeekRange.js +20 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/listOfDatesToWeeks.js +55 -0
- package/dist/src/components/custom/scheduler-temporal/logic/divisions/calculateDivisionType.js +13 -0
- package/dist/src/components/custom/scheduler-temporal/logic/divisions/calculateDivisions.js +16 -0
- package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterAndProcessResources.js +10 -0
- package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterEvents.js +34 -0
- package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterResources.js +14 -0
- package/dist/src/components/custom/scheduler-temporal/logic/filtering/hasSameProperties.js +10 -0
- package/dist/src/components/custom/scheduler-temporal/logic/onDrop/OnDrop.js +36 -0
- package/dist/src/components/custom/scheduler-temporal/logic/pixels/getHeightLineScheduler.js +14 -0
- package/dist/src/components/custom/scheduler-temporal/logic/pixels/getPixelsForEvent.js +32 -0
- package/dist/src/components/custom/scheduler-temporal/logic/pixels/heightScheduler.js +14 -0
- package/dist/src/components/custom/scheduler-temporal/logic/pixels/heightSchedulerPinned.js +9 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/doubleClickOnResource.js +5 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/handlePropChanges.js +178 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/handleResourceChange.js +11 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onDragOver.js +9 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onDropEventToResource.js +3 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onResizeEvent.js +3 -0
- package/dist/src/components/custom/scheduler-temporal/logic/strings/compareStrings.js +7 -0
- package/dist/src/components/custom/scheduler-temporal/logic/strings/getGUID.js +7 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/checkIfSlotAvailable.js +9 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/getEventsOfResource.js +92 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/getHasPropsChanged.js +242 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/getTimeHeaders.js +35 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/isAllowedToMove.js +19 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/shouldTriggerScroll.js +241 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/updateResourceVisibility.js +15 -0
- package/dist/src/components/custom/scheduler-temporal/state/CblDragAndDrop.js +18 -0
- package/dist/src/components/custom/scheduler-temporal/state/Resource.js +18 -0
- package/dist/src/components/custom/scheduler-temporal/state/cblEvent.js +28 -0
- package/dist/src/components/custom/scheduler-temporal/state/cblEventCompProps.js +1 -0
- package/dist/src/components/custom/scheduler-temporal/state/resourceCompProps2.js +1 -0
- package/dist/src/components/custom/super-scheduler/PinRowHeader.d.ts.map +1 -1
- package/dist/src/components/custom/super-scheduler/PinRowHeader.js +53 -0
- package/dist/src/components/custom/super-scheduler/SuperScheduler.js +23 -0
- package/dist/src/components/custom/super-scheduler/SuperSchedulerEvents.js +15 -0
- package/dist/src/components/custom/super-scheduler/SuperSchedulerPresenter.js +45 -0
- package/dist/src/components/display/data/accordion/CwAccordionContainer.js +20 -0
- package/dist/src/components/display/data/generic_tooltip/CwGenericTooltip.js +138 -0
- package/dist/src/components/display/data/table/CwTable.d.ts.map +1 -1
- package/dist/src/components/display/data/table/CwTable.js +203 -0
- package/dist/src/components/display/graphics/icon/CwIcon.js +23 -0
- package/dist/src/components/display/graphics/loading/CwLoading.js +27 -0
- package/dist/src/components/display/graphics/loading-small/CwLoadingSmall.js +20 -0
- package/dist/src/components/display/text/heading/CwHeadingMain.js +5 -0
- package/dist/src/components/display/text/heading/CwHeadingSecond.js +5 -0
- package/dist/src/components/display/text/label/CwLabel.js +13 -0
- package/dist/src/components/display/text/message/CwMessage.js +75 -0
- package/dist/src/components/display/text/note/CwNote.js +78 -0
- package/dist/src/components/display/text/tag/CwChip.js +57 -0
- package/dist/src/components/display/text/tag/CwTag.js +21 -0
- package/dist/src/components/display/text/tooltip/CwTooltip.js +4 -0
- package/dist/src/components/layout/align/CwAlign.js +54 -0
- package/dist/src/components/layout/card/CwCard.js +55 -0
- package/dist/src/components/layout/card/CwCardList.js +38 -0
- package/dist/src/components/layout/dialog/CwDialog.js +255 -0
- package/dist/src/components/layout/dialog/CwDialogManager.js +44 -0
- package/dist/src/components/layout/list/details/CwExpandable.js +28 -0
- package/dist/src/components/layout/list/key-value/CwKeyValueList.d.ts +2 -3
- package/dist/src/components/layout/list/key-value/CwKeyValueList.d.ts.map +1 -1
- package/dist/src/components/layout/list/key-value/CwKeyValueList.js +23 -0
- package/dist/src/components/layout/list/sortable/CwSortableList.js +73 -0
- package/dist/src/components/layout/list/sortable/useSortableList.js +53 -0
- package/dist/src/components/layout/modal/CwModalReportFunctional.js +23 -0
- package/dist/src/components/layout/modal/hover/CwModalHover.js +61 -0
- package/dist/src/components/layout/modal/legacy/cw_modal.js +44 -0
- package/dist/src/components/layout/modal/legacy/cw_modal_confirm.js +39 -0
- package/dist/src/components/layout/modal/legacy/cw_modal_iframe.js +44 -0
- package/dist/src/components/layout/modal/legacy/cw_modal_report.js +26 -0
- package/dist/src/components/layout/table/grouped/CwTableGrouped.js +70 -0
- package/dist/src/components/layout/tabs/CwTabs.js +53 -0
- package/dist/src/dev/palette.d.ts +1 -1
- package/dist/src/dev/palette.d.ts.map +1 -1
- package/dist/src/index.d.ts +6 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +187 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/getDefaultDivisions.test.js +48 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/hoursBetween.test.js +15 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/monthDivisions.test.js +42 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/weekendCalc.test.js +30 -0
- package/dist/test/components/custom/scheduler/addMinutesToDateFromPx.test.js +43 -0
- package/dist/test/components/custom/scheduler/checkIfSlotAvailable.test.js +30 -0
- package/dist/test/components/custom/scheduler/daysBetweenTwoDates.test.js +61 -0
- package/dist/test/components/custom/scheduler/daysBetweenTwoDatesWithoutCeilForEvent.test.js +27 -0
- package/dist/test/components/custom/scheduler/getGUID.test.js +30 -0
- package/dist/test/components/custom/scheduler/getPixelsForEvent.test.js +38 -0
- package/dist/test/components/custom/scheduler/getTimeHeaders.test.js +35 -0
- package/dist/test/components/custom/scheduler/hasSameProperties.test.js +51 -0
- package/dist/test/components/custom/scheduler/isAllowedToMove.test.js +28 -0
- package/dist/test/components/custom/scheduler/listOfDatesToWeeks.test.js +72 -0
- package/dist/test/jest.setup.js +1 -0
- package/package.json +6 -2
- package/dist/assets/asset-DnHaq7m- +0 -50
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-full-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-grad-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-opsz-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-slnt-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-standard-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-wdth-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-wght-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-xopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-xtra-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-yopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytas-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytde-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytfi-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytlc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytuc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-full-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-grad-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-opsz-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-slnt-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-standard-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-wdth-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-wght-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-xopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-xtra-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-yopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytas-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytde-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytfi-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytlc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytuc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-full-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-grad-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-opsz-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-slnt-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-standard-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-wdth-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-wght-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-xopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-xtra-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-yopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytas-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytde-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytfi-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytlc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytuc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-full-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-grad-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-opsz-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-slnt-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-standard-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-wdth-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-wght-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-xopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-xtra-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-yopq-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytas-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytde-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytfi-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytlc-normal.woff2 +0 -0
- package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytuc-normal.woff2 +0 -0
- package/dist/content/icons/cw-icons/css/cw-icons.css +0 -2784
- package/dist/content/icons/cw-icons/fonts/cwAvinodeFont/CblAvinodeIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwAvinodeFont/CblAvinodeIcon.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwAvinodeFont/CblAvinodeIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwAvinodeFont/CblAvinodeIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.svg +0 -38
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.svg +0 -29
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblCrewControlReact.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblCrewControlReact.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblCrewControlReact.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblCrewControlReact.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblDutyIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblDutyIcon.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblDutyIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblDutyIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/SessionWarning.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/SessionWarning.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/SessionWarning.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/SessionWarning.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.svg +0 -26
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrol.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrol.svg +0 -13
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrol.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrol.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.svg +0 -29
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.svg +0 -29
- package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.svg +0 -17
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.svg +0 -20
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewSchedulingFont.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewSchedulingFont.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewSchedulingFont.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewSchedulingFont.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.svg +0 -20
- package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/ArchiveEmanual.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/ArchiveEmanual.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/ArchiveEmanual.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/ArchiveEmanual.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/CblEmanualNewIcons.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/CblEmanualNewIcons.svg +0 -14
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/CblEmanualNewIcons.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/CblEmanualNewIcons.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.svg +0 -38
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualApprovedFile.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualApprovedFile.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualApprovedFile.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualApprovedFile.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.svg +0 -17
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMarkLink.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMarkLink.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMarkLink.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMarkLink.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFolder.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFolder.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFolder.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFolder.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFont.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFont.svg +0 -13
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFont.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFont.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.svg +0 -32
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPendingIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPendingIcon.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPendingIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPendingIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishFile.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishFile.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishFile.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishFile.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishIconFile.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishIconFile.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishIconFile.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishIconFile.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrash.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrash.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrash.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrash.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrashRight.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrashRight.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrashRight.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrashRight.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/LibraryIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/LibraryIcon.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/LibraryIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwEmanualFont/LibraryIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.svg +0 -158
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/cwellt_icon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/cwellt_icon.svg +0 -18
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/cwellt_icon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/cwellt_icon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.svg +0 -62
- package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesIcons/CblFavoritesIcons.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesIcons/CblFavoritesIcons.svg +0 -43
- package/dist/content/icons/cw-icons/fonts/cwFavoritesIcons/CblFavoritesIcons.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFavoritesIcons/CblFavoritesIcons.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFgIconsFonts/CblFigIcons.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFgIconsFonts/CblFigIcons.svg +0 -49
- package/dist/content/icons/cw-icons/fonts/cwFgIconsFonts/CblFigIcons.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFgIconsFonts/CblFigIcons.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.svg +0 -41
- package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/CblUndoIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/CblUndoIcon.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/CblUndoIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/CblUndoIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/FlightWatchOnTimeIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/FlightWatchOnTimeIcon.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/FlightWatchOnTimeIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/FlightWatchOnTimeIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.svg +0 -41
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/IDCardStatusIcon.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/IDCardStatusIcon.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/IDCardStatusIcon.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwGeneralFont/IDCardStatusIcon.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.svg +0 -17
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/calculator.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/calculator.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/calculator.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/calculator.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/icons_cwellt.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/icons_cwellt.svg +0 -11
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/icons_cwellt.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/icons_cwellt.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwOpstoolReactFont/opstoolReactIcons.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwOpstoolReactFont/opstoolReactIcons.svg +0 -12
- package/dist/content/icons/cw-icons/fonts/cwOpstoolReactFont/opstoolReactIcons.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwOpstoolReactFont/opstoolReactIcons.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.svg +0 -17
- package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.svg +0 -50
- package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.woff2 +0 -0
- package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.eot +0 -0
- package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.svg +0 -17
- package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.ttf +0 -0
- package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.woff +0 -0
- package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.woff2 +0 -0
- package/dist/content/icons/font-awesome/webfonts/fa-brands-400.ttf +0 -0
- package/dist/content/icons/font-awesome/webfonts/fa-regular-400.ttf +0 -0
- package/dist/content/icons/font-awesome/webfonts/fa-solid-900.ttf +0 -0
- package/dist/content/icons/font-awesome/webfonts/fa-v4compatibility.ttf +0 -0
- package/dist/index.cjs.js.map +0 -1
- package/dist/index.css.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.esm.js +0 -4836
- package/dist/src/common/functions/reactor.d.ts +0 -2
- package/dist/src/common/functions/reactor.d.ts.map +0 -1
- package/dist/src/components/control/input/chipper/CwChip.d.ts +0 -12
- package/dist/src/components/control/input/chipper/CwChip.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/components/ClearSchedulerButton.d.ts +0 -8
- package/dist/src/components/custom/scheduler/components/ClearSchedulerButton.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/filtering/filterAndProcessResources.d.ts +0 -14
- package/dist/src/components/custom/scheduler/logic/filtering/filterAndProcessResources.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/pixels/calculateMaxPxFromDateRange.d.ts +0 -2
- package/dist/src/components/custom/scheduler/logic/pixels/calculateMaxPxFromDateRange.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/state_handle/handleDateChange.d.ts +0 -5
- package/dist/src/components/custom/scheduler/logic/state_handle/handleDateChange.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/state_handle/handlePropChanges.d.ts +0 -5
- package/dist/src/components/custom/scheduler/logic/state_handle/handlePropChanges.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/state_handle/onResizeEvent.d.ts +0 -3
- package/dist/src/components/custom/scheduler/logic/state_handle/onResizeEvent.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/ui/getHasPropsChanged.d.ts +0 -3
- package/dist/src/components/custom/scheduler/logic/ui/getHasPropsChanged.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/logic/ui/shouldTriggerScroll.d.ts +0 -3
- package/dist/src/components/custom/scheduler/logic/ui/shouldTriggerScroll.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler/state/EventProps.d.ts +0 -7
- package/dist/src/components/custom/scheduler/state/EventProps.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgrounEvent.d.ts +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgrounEvent.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/cancellablePromise.d.ts +0 -7
- package/dist/src/components/custom/scheduler-new/presentation/components/row/cancellablePromise.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/useCancellablePromise.d.ts +0 -7
- package/dist/src/components/custom/scheduler-new/presentation/components/row/useCancellablePromise.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsByResource.d.ts +0 -5
- package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsByResource.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/external/Event.d.ts +0 -9
- package/dist/src/components/custom/scheduler-new/presentation/state/external/Event.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/external/Row.d.ts +0 -5
- package/dist/src/components/custom/scheduler-new/presentation/state/external/Row.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/EventSideDragState.d.ts +0 -6
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/EventSideDragState.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/HeaderDivision.d.ts +0 -5
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/HeaderDivision.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerEventState.d.ts +0 -14
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerEventState.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerHeaderState.d.ts +0 -11
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerHeaderState.d.ts.map +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerRow.d.ts +0 -8
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerRow.d.ts.map +0 -1
- package/dist/test/components/custom/newScheduler/presentation/logic/getDefaultDivisions.test.d.ts.map +0 -1
- package/dist/test/components/custom/scheduler/calculateMaxPxFromDateRange.test.d.ts +0 -2
- package/dist/test/components/custom/scheduler/calculateMaxPxFromDateRange.test.d.ts.map +0 -1
- package/dist/test/components/custom/scheduler/filterEvents.test.d.ts.map +0 -1
- package/dist/test/components/custom/scheduler/shouldTriggerScroll.test.d.ts.map +0 -1
- package/dist/test/example.test.d.ts +0 -1
- package/dist/test/example.test.d.ts.map +0 -1
- /package/dist/src/{components/custom/scheduler-new/presentation/TestScheduler.d.ts → common/interfaces/CwSelectListProps.js} +0 -0
- /package/dist/{test/components/custom/newScheduler/presentation/logic/getDefaultDivisions.test.d.ts → src/components/custom/scheduler-new/presentation/components/header/SchedulerHeaderState.js} +0 -0
- /package/dist/{test/components/custom/newScheduler/presentation/logic/hoursBetween.test.d.ts → src/components/custom/scheduler-new/presentation/state/ui/SchedulerState.js} +0 -0
- /package/dist/{test/components/custom/newScheduler/presentation/logic/weekendCalc.test.d.ts → src/components/custom/scheduler-new/presentation/state/ui/WeekRange.js} +0 -0
- /package/dist/{test/components/custom/scheduler/filterEvents.test.d.ts → src/components/custom/scheduler-temporal/state/CwSchedulerProps.js} +0 -0
- /package/dist/{test/components/custom/scheduler/shouldTriggerScroll.test.d.ts → src/components/custom/scheduler-temporal/state/State.js} +0 -0
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="icomoon" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="generatePairing" d="M255.92-2c-14.64 0-22.080 7.6-25.2 12.16-4 5.84-7.68 15.84-2.16 30.64 2.4 6.32 23.2 57.28 47.92 117.52v-37.12l34.8-6.080 20.48-2.080-12.24-20.48-20.48-28.64 24.56-24.64 18.56-18c-5.84-7.12-15.28-16.16-34.32-18.24-17.76-2-40.8-4.24-48.16-4.88zM136 345.6l-53.2-102.24c-9.44-18.48-20.4-20.4-41.68-20.64h-14.56c-8.4 0-16 3.44-20.88 9.52-4.96 6-6.72 13.92-4.88 22.24 1.76 8.56 34 165.68 39.68 193.44-12.48 59.040-39.2 186.48-40.080 196-0.96 10.72 2.96 17.52 6.48 21.36 4.8 5.28 11.44 8 19.68 8h14.4c8.96-0.24 31.52-0.8 41.84-20.64l53.2-102.24h217.36c-32.24 78.4-119.76 291.52-124.8 304.8-5.52 14.72-1.92 24.8 2.16 30.56 3.12 4.56 10.64 12.24 25.2 12.24l3.76-0.16c7.44-0.64 30.4-2.88 48.16-4.88 21.76-2.4 30.88-13.92 35.84-20.16 4.72-5.76 213.2-271.76 252.88-322.4h299.12c90.16 0 128.32-73.28 128.32-102.4s-38.16-102.4-128.32-102.4h-122.64l-13.2 13.2-59.44 57.36-24.56 26.64-28.64-22.56-16.4-12.32-4.080 20.48-6.16 34.88h-153.6l-6.16-34.88-4.080-20.48-18.48 12.32-28.64 20.48-86-86-9.92-9.12zM255.92 38.8l0.080-20.32 0.080 20.48c-0.080 0-0.16 0-0.16 0zM331.76 285.040l-3.44-0.32c0.48 1.12 0.96 2.24 1.44 3.44zM585.76-28.24h-84l-10.24 65.52c-8.16 2-14.32 4.080-22.56 8.16l-55.28-36.88-61.44 61.44 36.88 55.36c-4.080 6.080-6.16 14.32-8.16 20.48l-63.52 10.24v86l63.52 10.24c2 8.16 6.080 14.32 8.16 22.48l-36.88 51.2 61.44 61.44 55.28-38.88c6.16 4.080 14.4 6.16 20.48 8.16l12.32 65.6h86l10.24-65.6c6.16-2 14.32-4.080 20.48-8.16l53.28 38.88 59.36-59.36-36.88-55.28c4.16-6.16 6.16-14.32 8.24-20.48l65.52-10.24v-86l-63.52-12.32c-2-6.16-4.080-14.32-8.16-22.56l38.88-53.2-61.44-61.44-55.28 36.88c-8.16-4.16-14.32-6.16-20.48-8.24zM534.56 12.72h16.32l10.24 57.28 12.32 4.16c12.32 4.080 24.56 8.16 36.88 14.32l10.24 6.16 47.12-32.8 12.24 12.32-34.8 47.040 8.16 12.32c6.16 10.24 10.24 22.56 14.4 34.8l4.080 12.32 55.28 12.24v16.4l-57.36 8.24-4.080 12.24c-4.080 12.32-8.16 24.56-14.32 36.88l-6.16 10.24 32.8 47.12-10.24 10.24-47.12-34.8-12.32 8.16c-10.24 6.16-22.48 10.24-34.8 14.32l-12.32 4.080-8.16 55.36h-16.4l-10.24-57.36-12.24-2.080c-12.32-4.080-24.64-10.24-38.96-16.4l-10.24-4.080-47.12 32.8-12.24-12.32 32.72-47.12-8.16-10.24c-6.16-10.24-10.24-22.48-12.32-32.72l-2-14.32-57.36-10.24v-16.4l55.28-10.24 4.080-12.32c4.16-10.24 8.24-24.56 14.4-36.88l6.080-10.24-32.72-47.040 12.24-12.32 49.2 32.8 12.24-8.24c10.24-6.16 22.56-10.24 34.88-14.32l12.24-4.080zM542.72 117.12c-45.040 0-81.92 36.88-81.92 81.92s36.88 81.92 81.92 81.92c45.040 0 81.92-36.88 81.92-81.92 0-47.12-36.88-81.92-81.92-81.92zM542.72 238c-22.56 0-40.96-18.48-40.96-40.96 0-22.56 18.4-40.96 40.96-40.96s40.96 18.4 40.96 40.96c0 24.56-18.4 40.96-40.96 40.96z" />
|
|
11
|
-
<glyph unicode="" glyph-name="pairings" d="M255.92-2c-14.64 0-22.080 7.6-25.2 12.16-4 5.84-7.68 15.84-2.16 30.64 5.040 13.28 92.56 226.4 124.8 304.8h-217.36l-53.2-102.24c-9.44-18.48-20.4-20.4-41.68-20.64h-14.56c-8.4 0-16 3.44-20.88 9.52-4.96 6-6.72 13.92-4.88 22.24 1.76 8.56 34 165.68 39.68 193.44-12.48 59.040-39.2 186.48-40.080 196-0.96 10.72 2.96 17.52 6.48 21.36 4.8 5.28 11.44 8 19.68 8h14.4c8.96-0.24 31.52-0.8 41.84-20.64l53.2-102.24h217.36c-32.24 78.4-119.76 291.52-124.8 304.8-5.52 14.72-1.92 24.8 2.16 30.56 3.12 4.56 10.64 12.24 25.2 12.24l3.76-0.16c7.44-0.64 30.4-2.88 48.16-4.88 21.76-2.4 30.88-13.92 35.84-20.16 4.72-5.76 213.2-271.76 252.88-322.4h299.12c90.16 0 128.32-73.28 128.32-102.4 0-27.52-34.080-94.56-114-101.76v5.68h-2.080c0 38.8-30.56 69.36-69.28 69.36h-16.32c-8.16 24.48-30.64 40.8-57.12 40.8s-48.96-16.32-57.12-40.8h-89.76c-8.16 24.48-30.56 40.8-57.040 40.8-26.56 0-48.96-16.32-57.12-40.8h-16.32c-38.8 0-69.36-30.56-69.36-69.36v-233.52c-40.72-52-72.4-92.32-73.92-94.16-5.76-7.28-14.96-18.8-36.72-21.2-17.76-2-40.8-4.24-48.16-4.88zM255.92 38.8l0.080-20.32 0.080 20.48c-0.080 0-0.16 0-0.16 0zM590.56 549.6v-22.080h-65.28v-181.12h-26.72v181.12h-65.12v22.080zM838.64 380.48h-53.040v20.4c0 12.24-8.16 20.4-20.4 20.4s-20.4-8.16-20.4-20.4v-20.4h-163.2v20.4c0 12.24-8.080 20.4-20.32 20.4s-20.4-8.16-20.4-20.4v-20.4h-53.040c-16.32 0-28.56-12.24-28.56-28.56v-312c0-14.32 12.24-26.56 28.56-26.56h352.8c16.32 0 28.56 12.24 28.56 28.56v310c-2 16.32-14.24 28.56-30.56 28.56zM540.88 339.68c0-12.24 8.16-20.32 20.4-20.32s20.32 8.080 20.32 20.32h163.2c0-12.24 8.16-20.32 20.4-20.32s20.4 8.080 20.4 20.32h40.8v-40.72h-326.32v40.72zM500.080 54.16v204h326.32v-204zM561.28 217.36h40.72v-40.8h-40.72zM642.8 217.36h40.8v-40.8h-40.8zM724.4 217.36h40.8v-40.8h-40.8zM561.28 135.76h40.72v-40.8h-40.72zM642.8 135.76h40.8v-40.8h-40.8zM724.4 135.76h40.8v-40.8h-40.8z" />
|
|
12
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Created by Icons8</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="Dispatch" horiz-adv-x="1024">
|
|
7
|
-
<font-face font-family="Dispatch"
|
|
8
|
-
units-per-em="1024" ascent="896"
|
|
9
|
-
descent="128"
|
|
10
|
-
font-weight="500" />
|
|
11
|
-
<missing-glyph horiz-adv-x="0" />
|
|
12
|
-
<glyph glyph-name="ok"
|
|
13
|
-
unicode=""
|
|
14
|
-
horiz-adv-x="1024" d="M512 855.04C252.09925632 855.04 40.96 643.90074368 40.96 384C40.96 124.09925632 252.09925632 -87.04 512 -87.04C771.90074368 -87.04 983.04 124.09925632 983.04 384C983.04 643.90074368 771.90074368 855.04 512 855.04zM512 814.08C749.76325632 814.08 942.08 621.76325632 942.08 384C942.08 146.23674368 749.76325632 -46.08 512 -46.08C274.23674368 -46.08 81.92 146.23674368 81.92 384C81.92 621.76325632 274.23674368 814.08 512 814.08zM716.55999488 589.0400051199999A20.482048 20.482048 0 0 1 699.84 579.8000025599999L490.91999744 271.84001024L341.60001024 410.3999897600001A20.482048 20.482048 0 1 1 313.75998976 380.36000768L497.99999488 209.39999232L733.76 556.8399974399999A20.482048 20.482048 0 0 1 716.55999488 589.0400051199999z" />
|
|
15
|
-
<glyph glyph-name="box-important"
|
|
16
|
-
unicode=""
|
|
17
|
-
horiz-adv-x="1024" d="M512 855.04C252.0943616 855.04 40.96 643.9056384 40.96 384C40.96 124.0943616 252.0943616 -87.04 512 -87.04C771.9056384 -87.04 983.04 124.0943616 983.04 384C983.04 643.9056384 771.9056384 855.04 512 855.04zM512 814.08C749.76919552 814.08 942.08 621.76919552 942.08 384C942.08 146.23080448 749.76919552 -46.08 512 -46.08C274.23080448 -46.08 81.92 146.23080448 81.92 384C81.92 621.76919552 274.23080448 814.08 512 814.08zM487.43999488 603.12000512C481.29599488 603.12000512 479.24000768 599.0559948800001 479.24000768 594.9599948800001L479.24000768 318.4799948800001C479.24000768 312.33599488 483.34399488 310.28000768 487.43999488 310.28000768L534.51999232 310.28000768C540.66399232 310.28000768 542.72 314.3839948800001 542.72 318.4799948800001L542.72 594.9599948800001C542.72 601.10399488 538.61599232 603.12000512 534.51999232 603.12000512L487.43999488 603.12000512zM487.43999488 234.48000512C481.29599488 234.48000512 479.24000768 230.4159948800001 479.24000768 226.31999488L479.24000768 173.0400051199999C479.24000768 166.8960051200001 483.34399488 164.87999488 487.43999488 164.87999488L536.56000512 164.87999488C542.70400512 164.87999488 544.75999232 168.9440051199999 544.75999232 173.0400051199999L544.75999232 226.31999488C544.75999232 232.46399488 540.65600512 234.48000512 536.56000512 234.48000512L487.43999488 234.48000512z" />
|
|
18
|
-
</font>
|
|
19
|
-
</defs>
|
|
20
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="ArchiveEmanual" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="Archive" d="M225.28 898.56c-56.32 0-102.4-46.080-102.4-102.4v-198.4c-1.2-4-1.2-8.16 0-12.16v-295.040c-1.2-4-1.2-8.16 0-12.16v-199.040c0-56.32 46.080-102.4 102.4-102.4h573.44c56.32 0 102.4 46.080 102.4 102.4v200.96c0.56 2.72 0.56 5.6 0 8.32v298.88c0.56 2.72 0.56 5.6 0 8.32v200.32c0 56.32-46.080 102.4-102.4 102.4zM225.28 857.6h573.44c34.16 0 61.44-27.28 61.44-61.44v-184.32h-696.32v184.32c0 34.16 27.28 61.44 61.44 61.44zM407.68 776.32c-0.88-0.16-1.76-0.4-2.56-0.64-9.52-2.16-16.24-10.72-16-20.48 0-13.68 3.040-28.48 13.44-40.96s28.080-20.48 48-20.48h122.88c19.76 0 36.96 7.44 47.36 19.84s14.080 27.84 14.080 41.6c0.080 7.36-3.76 14.24-10.16 18-6.4 3.68-14.24 3.68-20.64 0-6.4-3.76-10.24-10.64-10.16-18 0-6.72-2-11.76-4.48-14.72s-5.44-5.76-16-5.76h-122.88c-10.8 0-13.6 2.24-16 5.12s-4.48 8.56-4.48 15.36c0.24 5.92-2.16 11.6-6.4 15.6-4.32 4.080-10.16 6.080-16 5.52zM163.84 570.88h696.32v-266.24h-696.32zM407.68 448.64c-0.88-0.16-1.76-0.4-2.56-0.64-9.52-2.16-16.24-10.72-16-20.48 0-13.68 3.040-28.48 13.44-40.96s28.080-20.48 48-20.48h122.88c19.76 0 36.96 7.44 47.36 19.84s14.080 27.84 14.080 41.6c0.080 7.36-3.76 14.24-10.16 18-6.4 3.68-14.24 3.68-20.64 0-6.4-3.76-10.24-10.64-10.16-18 0-6.72-2-11.76-4.48-14.72s-5.44-5.76-16-5.76h-122.88c-10.8 0-13.6 2.24-16 5.12s-4.48 8.56-4.48 15.36c0.24 5.92-2.16 11.6-6.4 15.6-4.32 4.080-10.16 6.080-16 5.52zM163.84 263.68h696.32v-184.32c0-34.16-27.28-61.44-61.44-61.44h-573.44c-34.16 0-61.44 27.28-61.44 61.44zM407.68 161.92c-0.88-0.16-1.76-0.4-2.56-0.64-9.52-2.16-16.24-10.72-16-20.48 0-13.68 3.040-28.48 13.44-40.96s28.080-20.48 48-20.48h122.88c19.76 0 36.96 7.44 47.36 19.84s14.080 27.84 14.080 41.6c0.080 7.36-3.76 14.24-10.16 18-6.4 3.68-14.24 3.68-20.64 0-6.4-3.76-10.24-10.64-10.16-18 0-6.72-2-11.76-4.48-14.72s-5.44-5.76-16-5.76h-122.88c-10.8 0-13.6 2.24-16 5.12s-4.48 8.56-4.48 15.36c0.24 5.92-2.16 11.6-6.4 15.6-4.32 4.080-10.16 6.080-16 5.52z" />
|
|
11
|
-
<glyph unicode="" glyph-name="ArchiveRestore" d="M589.824 783.872c-6.144 4.096-14.336 4.096-20.48 0s-10.24-10.24-10.24-18.432c0-6.144-2.048-12.288-4.096-14.336s-6.144-6.144-16.384-6.144h-122.88c-10.24 0-14.336 2.048-16.384 4.096s-4.096 8.192-4.096 16.384c0 6.144-2.048 12.288-6.144 16.384s-10.24 6.144-16.384 6.144c0 0-2.048 0-2.048 0-10.24-2.048-16.384-10.24-16.384-20.48 0-14.336 2.048-28.672 14.336-40.96s28.672-20.48 47.104-20.48h122.88c20.48 0 36.864 8.192 47.104 20.48s14.336 28.672 14.336 40.96c0 6.144-4.096 12.288-10.24 16.384zM538.624 376.32c20.48 0 36.864 8.192 47.104 20.48s14.336 28.672 14.336 40.96c0 8.192-4.096 14.336-10.24 18.432s-14.336 4.096-20.48 0c-6.144-4.096-10.24-10.24-10.24-18.432 0-6.144-2.048-12.288-4.096-14.336s-6.144-6.144-16.384-6.144h-122.88c-10.24 0-14.336 2.048-16.384 4.096s-4.096 8.192-4.096 16.384c0 6.144-2.048 12.288-6.144 16.384s-10.24 6.144-16.384 6.144c0 0-2.048 0-2.048 0-10.24-2.048-16.384-10.24-16.384-20.48 0-14.336 2.048-28.672 14.336-40.96s28.672-20.48 47.104-20.48h122.88zM1021.952 333.312c0 2.048 0 2.048-2.048 4.096l-4.096 4.096-149.504 116.736v139.264c0 2.048 0 6.144 0 8.192v200.704c0 57.344-45.056 102.4-102.4 102.4h-573.44c-57.344 0-102.4-45.056-102.4-102.4v-198.656c-2.048-4.096-2.048-8.192 0-12.288v-294.912c-2.048-4.096-2.048-8.192 0-12.288v-198.656c0-57.344 45.056-102.4 102.4-102.4h573.44c57.344 0 102.4 45.056 102.4 102.4v106.496l147.456 110.592 4.096 4.096c0 2.048 2.048 2.048 2.048 4.096 2.048 0 4.096 2.048 4.096 2.048 0 2.048 0 2.048 0 4.096s0 2.048 0 4.096c0 6.144 0 6.144-2.048 8.192zM129.024 806.4c0 34.816 26.624 61.44 61.44 61.44h573.44c34.816 0 61.44-26.624 61.44-61.44v-184.32h-696.32v184.32zM129.024 581.12h696.32v-90.112l-43.008 34.816c-6.144 4.096-16.384 8.192-22.528 2.048-10.24-4.096-14.336-12.288-14.336-22.528v-94.208c-94.208-4.096-172.032-36.864-227.328-96.256h-389.12v266.24zM129.024 89.6v184.32h354.304c-30.72-47.104-49.152-98.304-57.344-143.36h-12.288c-10.24 0-14.336 2.048-16.384 4.096s-4.096 8.192-4.096 16.384c0 6.144-2.048 12.288-6.144 16.384s-10.24 6.144-16.384 6.144c0 0-2.048 0-2.048 0-10.24-2.048-16.384-10.24-16.384-20.48 0-14.336 2.048-28.672 14.336-40.96s28.672-20.48 47.104-20.48h4.096c-4.096-26.624-4.096-49.152-4.096-61.44h-223.232c-34.816-2.048-61.44 24.576-61.44 59.392zM825.344 89.6c0-34.816-26.624-61.44-61.44-61.44h-299.008c2.048 12.288 4.096 34.816 16.384 61.44h57.344c20.48 0 36.864 8.192 47.104 20.48s14.336 28.672 14.336 40.96c0 8.192-4.096 14.336-10.24 18.432s-14.336 4.096-20.48 0c-6.144-4.096-10.24-10.24-10.24-18.432 0-6.144-2.048-12.288-4.096-14.336s-6.144-6.144-16.384-6.144h-36.864c36.864 51.2 106.496 104.448 241.664 110.592v-92.16c0-10.24 4.096-16.384 12.288-22.528 6.144-4.096 16.384-2.048 22.528 2.048l45.056 34.816v-73.728z" />
|
|
12
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="CblEmanualNewIcons" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="icons8-book" d="M901.12 919.040v-494.24c-13.12 5.84-26.8 10.64-40.96 14.16v439.12h-614.4c-45.44 0-81.92-36.48-81.92-81.92v-622.96c22.4 18 51.36 29.040 81.92 29.040h309.84c0-0.64 0-1.28 0-1.92 0-13.28 1.040-26.32 3.12-39.040h-312.96c-45.040 0-81.92-29.84-81.92-70s37.68-73.36 81.92-73.36h391.36c18.4-16.56 39.28-30.48 62-40.96h-453.36c-64.88 0-122.88 49.28-122.88 114.32v704.88c0 67.6 55.28 122.88 122.88 122.88zM737.28 775.68c22.4 0 40.96-18.56 40.96-40.96v-81.92c0-22.4-18.56-40.96-40.96-40.96h-430.080c-22.4 0-40.96 18.56-40.96 40.96v81.92c0 22.4 18.56 40.96 40.96 40.96zM307.2 652.8h430.080v81.92h-430.080zM801.36-4.48c-112.64 0-204.8 92.16-204.8 204.8s92.16 204.8 204.8 204.8c112.64 0 204.8-92.16 204.8-204.8s-92.16-204.8-204.8-204.8zM801.36 364.16c-90.16 0-163.84-73.68-163.84-163.84 0-90.080 73.68-163.84 163.84-163.84 90.080 0 163.84 73.76 163.84 163.84 0 90.16-73.76 163.84-163.84 163.84zM920.16 267.92l-30.72 26.64-110.64-129.040-67.6 51.2-24.56-32.8 96.24-73.68z" />
|
|
11
|
-
<glyph unicode="" glyph-name="icons8-bookSolid" d="M163.84 91.28c0-39.76 37.52-73.36 81.92-73.36h373.44c18.4-16.56 39.36-30.48 62.080-40.96h-435.52c-67.76 0-122.88 51.28-122.88 114.32v704.88c0 67.76 55.12 122.88 122.88 122.88h655.36v-503.12c-34.96 19.2-75.12 30.16-117.68 30.16-135.12 0-245.76-110.56-245.76-245.76 0-13.28 1.12-26.32 3.2-39.040h-295.12c-45.92 0-81.92-30.72-81.92-70zM901.12-23.040h-15.44c5.2 2.4 10.4 5.040 15.44 7.76zM286.72 642.56c0-5.68 4.56-10.24 10.24-10.24h450.56c5.68 0 10.24 4.56 10.24 10.24v102.4c0 5.68-4.56 10.24-10.24 10.24h-450.56c-5.68 0-10.24-4.56-10.24-10.24zM783.44-4.48c-112.64 0-204.8 92.16-204.8 204.8s92.16 204.8 204.8 204.8c112.64 0 204.8-92.16 204.8-204.8s-92.16-204.8-204.8-204.8zM783.44 364.16c-90.080 0-163.84-73.68-163.84-163.84 0-90.080 73.76-163.84 163.84-163.84 90.16 0 163.84 73.76 163.84 163.84 0 90.16-73.68 163.84-163.84 163.84zM902.24 267.92l-30.72 26.64-110.56-129.040-67.6 51.2-24.56-32.8 96.24-73.68z" />
|
|
12
|
-
<glyph unicode="" glyph-name="icons8-FileReaded" d="M622.72 919.040l6.4-5.76 245.76-245.76 5.76-6.4v-684.16h-737.28v942.080zM184.32 17.92h655.36v614.4h-245.76v245.76h-409.6zM634.88 673.28h175.36l-175.36 175.36zM497.68 168.16c-112.64 0-204.8 92.16-204.8 204.8s92.16 204.8 204.8 204.8c112.64 0 204.8-92.16 204.8-204.8s-92.16-204.8-204.8-204.8zM497.68 536.8c-90.080 0-163.84-73.68-163.84-163.84 0-90.080 73.76-163.84 163.84-163.84 90.16 0 163.84 73.76 163.84 163.84 0 90.16-73.68 163.84-163.84 163.84zM616.48 440.56l-30.72 26.64-110.56-129.040-67.6 51.2-24.56-32.72 96.24-73.76z" />
|
|
13
|
-
<glyph unicode="" glyph-name="icons8-PublishHistory" d="M622.592 919.040l258.048-258.048v-684.032h-737.28v942.080h479.232zM184.32 17.92h655.36v614.4h-245.76v245.76h-409.6v-860.16zM634.88 673.28h176.128l-176.128 176.128v-176.128zM604.16 374.272v149.504c0 14.336-10.24 24.576-24.576 24.576s-24.576-10.24-24.576-24.576v-110.592l-8.192 10.24-24.576 83.968-57.344 69.632c-8.192 10.24-24.576 12.288-34.816 4.096s-12.288-24.576-4.096-34.816l51.2-61.44 16.384-51.2-34.816 45.056-79.872 47.104c-12.288 6.144-26.624 2.048-32.768-10.24s-2.048-26.624 10.24-32.768l71.68-40.96 30.72-38.912h-49.152c-8.192 0-14.336-4.096-20.48-8.192l-47.104-47.104c-10.24-10.24-10.24-24.576 0-34.816s24.576-10.24 34.816 0l38.912 38.912 65.536-10.24 28.672-53.248-38.912-51.2-49.152 10.24-20.48 32.768c-10.24 16.384-30.72 22.528-47.104 14.336l-18.432-8.192 47.104-92.16 63.488-36.864c10.24-6.144 24.576-8.192 34.816-2.048l18.432 6.144c32.768 12.288 65.536 10.24 100.352 0l63.488-18.432v174.080l-59.392 57.344z" />
|
|
14
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Created by Icons8</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="Emmanual" horiz-adv-x="1024">
|
|
7
|
-
<font-face font-family="Emmanual"
|
|
8
|
-
units-per-em="1024" ascent="896"
|
|
9
|
-
descent="128"
|
|
10
|
-
font-weight="500" />
|
|
11
|
-
<missing-glyph horiz-adv-x="0" />
|
|
12
|
-
<glyph glyph-name="onedrive"
|
|
13
|
-
unicode=""
|
|
14
|
-
horiz-adv-x="1024" d="M561.28 699.52C526.24001024 699.52 493.68000512 692.95998976 464 677.12L464 676.48C463.84001024 676.40000512 463.52001024 676.55999488 463.36 676.48C435.52 662.4 404.96001024 638.79999488 387.2 613.76C387.04001024 613.51999488 386.72001024 613.36000512 386.56 613.12C377.20000512 600.79998976 373.36000512 596.48 371.8400000000001 594.56C331.44000512 609.75998976 283.8400000000001 614.64000512 243.2 600.3199999999999C171.04001024 577.03999488 118.79999488 507.99998976 116.48 429.44C116.48 429.19999488 116.48 429.04000512 116.48 428.8C116.48 424.47998976 116.23999488 420.8 115.84 417.28C114.63999488 416.64 115.2 416.96 113.92 416.64C113.67999488 416.39999488 113.52000512 416.24000512 113.28 416C70.64000512 404.8 34.56 377.52000512 14.72 338.56L14.08 338.56C13.68000512 337.9999948800001 13.83999488 337.20000512 13.44 336.64C13.19999488 336.07999488 12.40000512 335.92000512 12.16 335.36C7.20001024 327.83998976 2.88 319.5199897600001 1.28 310.4C-0.48 299.9999897600001 0 289.67999488 0 273.28C0 255.83998976 -0.48 245.36000512 1.28 234.88C2.95999488 224.88000512 7.11999488 216.64 12.16 207.36C12.32001024 206.96000512 12.55999488 206.4799948800001 12.8 206.0800000000001C32.39999488 165.44 71.04 132.40000512 113.28 122.24C113.44001024 122.1600051199999 113.76001024 122.31999488 113.92 122.24C119.28000512 120.79998976 122.16000512 120.71999488 127.36 120.3199999999999C132.8 119.9200051199999 139.76000512 119.36 147.2 119.04C161.99999488 118.4799948800001 180.16 118.64000512 197.76 118.4C233.03999488 117.91998976 266.24 117.76 266.24 117.76C266.48000512 117.76 266.63999488 117.76 266.88 117.76C284.00001024 99.84 305.9999948800001 86.55998976 332.1600000000001 79.36C332.96001024 79.11999488 333.83999488 78.8799897600001 334.7200000000001 78.72C346.63999488 77.0400051199999 366.08 77.0400051199999 414.08 76.8C462.08 76.55999488 536.32 76.8 648.96 76.8L942.08 76.8C945.20000512 76.8 948.23999488 77.4399999999999 951.04 78.72L963.84 85.12C1000.24000512 103.36 1019.44000512 141.44 1024 184.96C1024 185.3599948800001 1024 185.84000512 1024 186.24C1026.24 219.03998976 1020.55999488 248.07999488 1005.44 272C990.32000512 295.92000512 966.24001024 313.43998976 936.32 323.8400000000001L930.56 325.76L929.92 336.64C923.27999488 411.2 867.04001024 464.96 798.08 476.8C796.23999488 497.92 790.24001024 517.51999488 783.36 538.24C749.92001024 634.07998976 662.32000512 699.52 561.28 699.52zM561.28 658.56C644.55999488 658.56 716.32001024 605.0400051199999 744.32 524.8C750.32000512 506.88 754.5600000000001 492.55999488 756.48 478.72C741.1999948800001 477.59998976 725.8399948800001 474.56 710.4 469.12C710.15999488 469.04000512 710.00000512 469.19999488 709.76 469.12L704 467.2L690.5600000000001 480C690.40001024 480.15998976 690.08001024 479.83998976 689.92 480C649.1200102399999 522.8000051199999 611.12000512 539.52 552.96 539.52C512.56000512 539.52 489.67999488 534.15999488 455.68 517.12C455.43999488 517.12 455.28000512 517.12 455.04 517.12C417.84000512 497.28 387.68001024 456.47998976 369.92 405.76C369.84000512 405.5999897600001 369.9999948800001 405.2799897600001 369.92 405.12C365.51999488 393.99999488 363.27999488 385.92 362.88 376.32C361.6 375.68 356.8799948800001 373.6800051200001 348.1600000000001 371.2000000000001C347.52 371.0399897600001 347.59999488 371.35998976 346.88 371.2000000000001L346.88 370.56C295.68 359.04 253.19999488 330.07998976 235.52 288C235.44000512 287.75999488 234.95999488 287.60000512 234.88 287.36C228.16 271.43999488 225.28 255.83998976 225.28 232.32C225.28 205.0400051199999 230.4 180.40000512 240 158.72C227.2 158.79999488 219.76000512 159.04 198.4 159.36C180.96001024 159.60000512 162.63999488 160.07999488 148.48 160.64C141.36000512 160.96 135.11999488 160.96 130.56 161.28C126.00000512 161.6 121.92 162.56 124.16 161.92C123.91999488 162.1600051199999 123.76000512 162.31999488 123.52 162.56C96.71999488 168.88000512 62.56001024 196.40000512 49.28 224.64C49.12001024 225.03999488 48.88000512 225.52000512 48.64 225.92C43.84 234.56 43.04001024 237.04000512 42.24 241.92C41.44001024 246.79999488 40.96 255.83998976 40.96 273.28C40.96 289.67999488 41.44001024 298.88 42.24 303.36C43.04001024 307.8400000000001 43.04001024 308.8799948800001 47.36 314.88C48.07999488 315.91999488 48.71999488 316.95998976 49.28 318.0800000000001C62.64000512 346.48000512 89.99999488 367.36 123.52 376.32C123.76000512 376.39999488 123.91999488 376.24000512 124.16 376.32C135.84001024 379.27999488 142.96000512 382.96000512 149.76 389.76C153.12001024 393.20000512 155.12000512 397.76 155.52 402.56C155.68001024 402.7199897600001 156.08000512 403.76000512 156.16 404.48C156.32001024 405.83999488 156.48 407.8399897600001 156.8 410.24C157.36000512 414.87998976 158.08 421.19999488 158.08 428.16C158.08 428.40000512 158.08 428.55999488 158.08 428.8C160.16001024 489.20000512 201.35999488 543.04 256 560.64C256.24000512 560.88000512 256.39999488 561.03999488 256.64 561.28C284.3200102400001 571.03998976 324.6400102400001 568.3199999999999 357.12 556.16C357.76 555.91999488 358.4000000000001 555.76000512 359.04 555.52C361.84000512 554.07998976 364.64001024 552 370.56 551.04C377.44001024 549.91998976 387.04001024 552.3199999999999 392.32 556.16C402.88 563.8399999999999 407.52001024 572.4000051200001 419.8400000000001 588.8C420.08000512 589.0400051199999 420.2399948800001 589.1999948800001 420.48 589.44C431.28000512 604.95998976 461.68000512 629.59998976 482.56 640C482.80000512 640 482.95999488 640 483.2 640C506.56 652.55999488 531.12000512 658.56 561.28 658.56zM552.96 498.56C605.1999948800001 498.56 624.24000512 490.63999488 661.12 451.84C661.12 451.59999488 661.12 451.44000512 661.12 451.2L683.52 428.8C689.03999488 423.19998976 697.20000512 421.2799897600001 704.64 423.68L723.2 430.08C723.44000512 430.08 723.59999488 430.08 723.84 430.08C804.8000000000001 458.88 881.52000512 412.31998976 888.96 333.44L888.96 332.8L890.88 308.48C891.52 300.2399948800001 897.1200102399999 293.19999488 904.96 290.56L922.88 284.8L923.52 284.8C946.48000512 276.72000512 961.52000512 265.1199897600001 970.88 250.24C980.23999488 235.35998976 984.71999488 215.60000512 983.04 189.44C983.04 189.19999488 983.04 189.0400051199999 983.04 188.8C979.27999488 154.88 966.08 131.9999897600001 945.28 121.6L936.96 117.76L648.96 117.76C536.32 117.76 462.47999488 118.15999488 414.7200000000001 118.4C367.75999488 118.64000512 345.44001024 119.36 342.4000000000001 119.68C291.9199948800001 134.15999488 266.24 169.7599897600001 266.24 232.32C266.24 253.59998976 267.27999488 258.8000051199999 272.64 271.36C272.88000512 271.60000512 273.03999488 271.75999488 273.2800000000001 272C284.2399948800001 298.71998976 314.48000512 321.7599897600001 356.48 330.88C356.8799948800001 331.0399897600001 357.36000512 331.27999488 357.76 331.52C369.52000512 334.7200000000001 378.72001024 336.79998976 387.8400000000001 343.04C396.96001024 349.2799897600001 403.8400000000001 363.0399897600001 403.8400000000001 373.76C403.8400000000001 370.95999488 405.12 382.4 408.32 390.4C408.32 390.79999488 408.32 391.28000512 408.32 391.68C423.20001024 434.48000512 450.31999488 466.88 474.24 480C474.48000512 480.15998976 474.63999488 480.56000512 474.88 480.64C505.67999488 496 515.91999488 498.56 552.96 498.56z" />
|
|
15
|
-
<glyph glyph-name="user-folder"
|
|
16
|
-
unicode=""
|
|
17
|
-
horiz-adv-x="1024" d="M102.4 814.08C68.711018496 814.08 40.96 786.328981504 40.96 752.64L40.96 568.3199999999999L40.96 363.52L40.96 15.36C40.96 -18.3289856 68.711018496 -46.08 102.4 -46.08L921.6 -46.08C955.2889856 -46.08 983.04 -18.3289856 983.04 15.36L983.04 670.72C983.04 704.4089815039999 955.2889856 732.16 921.6 732.16L368.64 732.16C370.4129536 732.16 368.0049152000001 732.15254528 362.9999923200001 737.92C357.99504896 743.68745472 351.83450112 753.255604224 345.39999232 763.52C338.965504 773.784395776 332.22199296 784.736462848 323.7200076800001 794.3600005119999C315.21800192 803.983536128 303.48808192 814.08 286.7200000000001 814.08L102.4 814.08zM102.4 773.12L286.7200000000001 773.12C285.47584 773.12 287.9721472 772.9764352 293.04000512 767.239999488C298.10792448 761.503537152 304.2760908800001 751.975604224 310.68000256 741.76C317.08391424 731.544395776 323.71566592 720.63254528 332.04000768 711.04C340.36432896 701.44745472 351.8244249600001 691.2 368.64 691.2L921.6 691.2C933.1718144 691.2 942.08 682.2918144 942.08 670.72L942.08 625.9200000000001C935.63101184 628.2457088 928.80574464 629.76 921.6 629.76L102.4 629.76C95.1942656 629.76 88.36897792 628.2457088 81.92 625.9200000000001L81.92 752.64C81.92 764.211818496 90.828181504 773.12 102.4 773.12zM102.4 588.8L921.6 588.8C933.1718144 588.8 942.08 579.8918143999999 942.08 568.3199999999999L942.08 15.36C942.08 3.7881856 933.1718144 -5.12 921.6 -5.12L102.4 -5.12C90.828181504 -5.12 81.92 3.7881856 81.92 15.36L81.92 568.3199999999999C81.92 579.8918143999999 90.828181504 588.8 102.4 588.8zM531.55999744 547.8399999999999C472.47427584 548.1115648 431.17027328 533.39867136 404.8 509.23999232C378.42972672 485.0813337599999 368.8996454400001 452.77333504 369.24000256 424.28000256C369.4986649600001 403.02649344 374.6323865600001 388.26305536 379.55999744 372.59999232C378.50978304 371.5600179200001 378.60952064 372.37297152 377.63999744 371.12000512C370.84063744 362.33371648 368.50597888 351.0133145600001 368.64 336.03999744A20.482048 20.482048 0 0 1 368.79998976 333.83999488C370.9855539200001 315.30422272 380.13607936 301.0315468800001 390.4000000000001 292.96001024C395.32331008 289.0883071999999 399.2032460800001 289.3006233600001 403.72000768 287.56000768C406.6757632 275.85357824 409.75659008 263.91291904 415.04 254.56001024C418.67401216 248.1269145600001 422.5226956800001 242.41260544 426.52000256 237.51999488C427.50754816 236.31126528 429.1120742400001 235.4781388800001 430.08 234.3599923200001L430.08 196.59999232C427.16192768 189.87188224 421.77880064 184.9486745600001 409.0799923200001 179.72000768C395.6303872 174.1821952 376.68573184 169.7423155199999 356.8 163.27999488C336.91426816 156.8176742400001 315.5606528 148.1638297599999 297.9999948800001 131.48000256C280.43933696 114.79617536 268.18955264 89.85317376 266.27999744 57.52000512A20.482048 20.482048 0 0 1 286.7200000000001 35.84L490.08001024 35.84A20.482048 20.482048 0 0 1 491.52 35.8000025599999L716.8000000000001 35.8000025599999A20.482048 20.482048 0 0 1 737.24000256 57.52000512C735.33038592 89.85317376 723.0806630400001 114.75617792 705.52000512 131.44000512C687.9593472 148.1238323199999 666.60573184 156.7776768 646.72 163.23999744C626.83426816 169.70231808 607.8896128 174.1821952 594.44000768 179.72000768C581.74119936 184.9486745600001 576.35807232 189.87188224 573.44 196.59999232L573.44 234.3599923200001C574.4078848 235.4782003200001 576.0123904000001 236.31112192 576.99999744 237.51999488C580.99730432 242.41260544 584.84598784 248.1269145600001 588.48 254.56001024C593.76185344 263.91015424 596.84397056 275.81763584 599.79999232 287.5199897600001C604.31890432 289.26060544 608.19400704 289.08607488 613.12 292.96001024C623.38392064 301.0315264 632.53444608 315.26422528 634.72001024 333.79999744A20.482048 20.482048 0 0 1 634.88 336C635.0235033600001 350.6362368 632.6242918400001 361.900032 625.88000256 370.56C630.6660352 384.65724416 634.25230848 400.10575872 634.5600000000001 419.08000768C634.953216 442.91309568 628.80376832 468.4483993599999 613.87999232 489.67999488C601.5208243200001 507.26299648 580.70673408 519.06643968 556.31998976 523.40000768L549.79999744 536.4799897600001A20.482048 20.482048 0 0 1 531.55999744 547.8399999999999zM519.52001024 505.35999488L523.40000768 497.52000512A20.482048 20.482048 0 0 1 541.76 486.11999744C560.65630208 486.11999744 571.65402112 478.56265216 580.40000512 466.12000768C589.1459891200001 453.67734272 593.8620416 435.63761664 593.6 419.76000512C593.2977152000001 401.1204608 589.40985344 389.18987776 583.28000512 373.72000256A20.482048 20.482048 0 0 1 581.1999948800001 359.1199948800001A20.482048 20.482048 0 0 1 581.47999744 357.96000768A20.482048 20.482048 0 0 1 593.16000768 344.3599974400001C593.31811328 343.0395904 593.68349696 340.85351424 593.88000256 338.16000512C592.76302336 329.93789952 590.25344512 327.08939776 587.80000256 325.15999744C585.2639232 323.16565504 581.21117696 322.4154112 582.00000512 322.48000512A20.482048 20.482048 0 0 1 563.31999232 304.20000768C562.42112512 295.6299059200001 558.0289228800001 283.86566144 552.84000768 274.67999232C550.24553984 270.087168 547.460608 266.068992 545.28 263.39999744C543.099392 260.73100288 540.61559808 259.44098816 543.32000256 260.8799948800001A20.482048 20.482048 0 0 1 532.48 242.8000051199999L532.48 190.56001024A20.482048 20.482048 0 0 1 533.72000256 183.5200102399999C541.70032128 161.68316928 560.60704768 149.3473075200001 578.84000256 141.83999488C597.0729574400001 134.33268224 616.50778112 129.9904716800001 634.08001024 124.27999232C651.6521984 118.56951296 666.8342681600001 111.6841779199999 677.27998976 101.76C683.77147392 95.5926528 688.303616 87.1283712 691.68001024 76.76000256L513.43998976 76.76000256A20.482048 20.482048 0 0 1 512 76.8L311.83998976 76.8C315.2166912 87.15485184 319.75378944 95.5976704000001 326.24001024 101.76C336.68573184 111.6841779199999 351.8678016 118.6095104 369.4399897600001 124.31998976C387.0122188800001 130.0304896 406.44704256 134.37267968 424.67999744 141.8799923200001C442.91295232 149.3873254399999 461.81967872 161.72316672 469.79999744 183.56000768A20.482048 20.482048 0 0 1 471.04 190.60000768L471.04 242.8000051199999A20.482048 20.482048 0 0 1 460.19999744 260.8799948800001C462.90434048 259.4410700800001 460.4205056000001 260.77145088 458.24 263.43999488C456.059392 266.1090099200001 453.27446016 270.12716544 450.6799923200001 274.71998976C445.49107712 283.90567936 441.0988748800001 295.6299059200001 440.20000768 304.20000768A20.482048 20.482048 0 0 1 421.51999488 322.48000512C422.30888448 322.4144691200001 418.2560768 323.1656755200001 415.7199974400001 325.15999744C413.2818329600001 327.07733504 410.80825856 329.9804774400001 409.6799948800001 338.07998976C409.89831168 341.58856192 410.3476019200001 344.0605184 410.48000512 345.3599948800001C411.19879168 345.78132992 410.9017088 345.53833472 412.68000768 346.63999488A20.482048 20.482048 0 0 1 421.1599974400001 371.04001024C414.11940352 390.4664576 410.47793664 401.93189888 410.2000025600001 424.7599923200001C409.9669401600001 444.27180032 415.6486656 463.65691904 432.4399923200001 479.04C447.64751872 492.97211392 475.92685568 503.44951808 519.52001024 505.35999488z" />
|
|
18
|
-
<glyph glyph-name="cloud-folder"
|
|
19
|
-
unicode=""
|
|
20
|
-
horiz-adv-x="1024" d="M102.4 814.08C68.698660864 814.08 40.96 786.318518272 40.96 752.64L40.96 568.3199999999999L40.96 363.52L40.96 15.36C40.96 -18.3185203199999 68.698660864 -46.08 102.4 -46.08L921.6 -46.08C955.29089024 -46.08 983.04 -18.33089024 983.04 15.36L983.04 363.52L983.04 568.3199999999999L983.04 670.72C983.04 704.410886144 955.29089024 732.16 921.6 732.16L368.64 732.16C370.4129536 732.16 368.0049152000001 732.15254528 362.9999923200001 737.92C357.99504896 743.68745472 351.83450112 753.255604224 345.39999232 763.52C338.965504 773.784395776 332.22199296 784.736462848 323.7200076800001 794.3600005119999C315.21800192 803.983536128 303.48808192 814.08 286.7200000000001 814.08L102.4 814.08zM102.4 773.12L286.7200000000001 773.12C285.47584 773.12 287.9721472 772.9764352 293.04000512 767.239999488C298.10792448 761.503537152 304.2760908800001 751.975604224 310.68000256 741.76C317.08391424 731.544395776 323.71566592 720.63254528 332.04000768 711.04C340.36432896 701.44745472 351.8244249600001 691.2 368.64 691.2L921.6 691.2C933.12894976 691.2 942.08 682.24894976 942.08 670.72L942.08 625.9200000000001C935.63101184 628.2457088 928.80574464 629.76 921.6 629.76L102.4 629.76C95.1942656 629.76 88.36897792 628.2457088 81.92 625.9200000000001L81.92 752.64C81.92 764.1813217280001 90.840539136 773.12 102.4 773.12zM102.4 588.8L921.6 588.8C933.1718144 588.8 942.08 579.8918143999999 942.08 568.3199999999999L942.08 363.52L942.08 15.36C942.08 3.83105024 933.12894976 -5.12 921.6 -5.12L102.4 -5.12C90.840539136 -5.12 81.92 3.81868032 81.92 15.36L81.92 363.52L81.92 568.3199999999999C81.92 579.8918143999999 90.828181504 588.8 102.4 588.8zM552.96 465.92C499.9006208000001 465.92 454.885888 436.02118656 430.15999488 392.96C418.21648896 399.7031424 405.08801024 404.48 390.4000000000001 404.48C347.68689152 404.48 313.40324864 371.34639104 308.91999232 329.7599897600001C271.98816256 311.3478144 245.76 274.4111104 245.76 230.4C245.76 168.4361830400001 296.43618304 117.76 358.4000000000001 117.76L675.84 117.76C732.15008768 117.76 778.24 163.8499123200001 778.24 220.16C778.24 269.2190208 742.5676492800001 308.57668608 696.32 318.4L696.32 322.56C696.32 401.49676032 631.89676032 465.92 552.96 465.92zM552.96 424.96C609.76467968 424.96 655.36 379.36467968 655.36 322.56L655.36 281.6L675.84 281.6C710.01055232 281.6 737.28 254.3305523199999 737.28 220.16C737.28 185.98944768 710.01055232 158.72 675.84 158.72L358.4000000000001 158.72C318.57821696 158.72 286.7200000000001 190.57821696 286.7200000000001 230.4C286.7200000000001 261.684736 306.71099904 287.65386752 334.56001024 297.56000256L348.1600000000001 302.4L348.1600000000001 321.28C348.1600000000001 344.8690892799999 366.8109107200001 363.52 390.4000000000001 363.52C402.9481779200001 363.52 413.873152 358.0428288 421.76 349.19999488L444.9599897600001 323.2L456.39999488 356.12000256C470.30401024 396.12602368 508.027392 424.96 552.96 424.96z" />
|
|
21
|
-
<glyph glyph-name="images-folder"
|
|
22
|
-
unicode=""
|
|
23
|
-
horiz-adv-x="1024" d="M102.4 814.08C68.698660864 814.08 40.96 786.318518272 40.96 752.64L40.96 568.3199999999999L40.96 363.52L40.96 15.36C40.96 -18.3185203199999 68.698660864 -46.08 102.4 -46.08L921.6 -46.08C955.29089024 -46.08 983.04 -18.33089024 983.04 15.36L983.04 670.72C983.04 704.410886144 955.29089024 732.16 921.6 732.16L368.64 732.16C370.4129536 732.16 368.0049152000001 732.15254528 362.9999923200001 737.92C357.99504896 743.68745472 351.83450112 753.255604224 345.39999232 763.52C338.965504 773.784395776 332.22199296 784.736462848 323.7200076800001 794.3600005119999C315.21800192 803.983536128 303.48808192 814.08 286.7200000000001 814.08L102.4 814.08zM102.4 773.12L286.7200000000001 773.12C285.47584 773.12 287.9721472 772.9764352 293.04000512 767.239999488C298.10792448 761.503537152 304.2760908800001 751.975604224 310.68000256 741.76C317.08391424 731.544395776 323.71566592 720.63254528 332.04000768 711.04C340.36432896 701.44745472 351.8244249600001 691.2 368.64 691.2L921.6 691.2C933.12894976 691.2 942.08 682.24894976 942.08 670.72L942.08 625.9200000000001C935.63101184 628.2457088 928.80574464 629.76 921.6 629.76L102.4 629.76C95.1942656 629.76 88.36897792 628.2457088 81.92 625.9200000000001L81.92 752.64C81.92 764.1813217280001 90.840539136 773.12 102.4 773.12zM102.4 588.8L921.6 588.8C933.1718144 588.8 942.08 579.8918143999999 942.08 568.3199999999999L942.08 15.36C942.08 3.83105024 933.12894976 -5.12 921.6 -5.12L102.4 -5.12C90.840539136 -5.12 81.92 3.81868032 81.92 15.36L81.92 568.3199999999999C81.92 579.8918143999999 90.828181504 588.8 102.4 588.8zM439.1199948800001 506.88C412.74923008 506.88 389.16943872 489.85892864 380.83999744 464.84000768L374.36000256 445.44L348.1600000000001 445.44C303.15859968 445.44 266.24 408.52140032 266.24 363.52L266.24 179.1999999999999C266.24 134.19859968 303.15859968 97.28 348.1600000000001 97.28L675.84 97.28C720.8414003199999 97.28 757.76 134.19859968 757.76 179.1999999999999L757.76 363.52C757.76 408.52140032 720.8414003199999 445.44 675.84 445.44L649.63999744 445.44L643.16000256 464.84000768C634.8258099200001 489.8732032 611.25076992 506.88 584.88000512 506.88L439.1199948800001 506.88zM439.1199948800001 465.92L584.88000512 465.92C593.77577984 465.92 601.5130828800001 460.35111936 604.31998976 451.91999488L615.43999488 418.48000512A20.482048 20.482048 0 0 1 634.88 404.48L675.84 404.48C698.70931968 404.48 716.8000000000001 386.38931968 716.8000000000001 363.52L716.8000000000001 179.1999999999999C716.8000000000001 156.33068032 698.70931968 138.24 675.84 138.24L348.1600000000001 138.24C325.29068032 138.24 307.2 156.33068032 307.2 179.1999999999999L307.2 363.52C307.2 386.38931968 325.29068032 404.48 348.1600000000001 404.48L389.12 404.48A20.482048 20.482048 0 0 1 408.56000512 418.48000512L419.68001024 451.91999488C422.4916889600001 460.36539392 430.22422016 465.92 439.1199948800001 465.92zM512 384C455.68991232 384 409.6 337.91008768 409.6 281.6C409.6 225.28991232 455.68991232 179.1999999999999 512 179.1999999999999C568.31008768 179.1999999999999 614.4 225.28991232 614.4 281.6C614.4 337.91008768 568.31008768 384 512 384zM512 343.04C546.17055232 343.04 573.44 315.77055232 573.44 281.6C573.44 247.42944768 546.17055232 220.16 512 220.16C477.82944768 220.16 450.56 247.42944768 450.56 281.6C450.56 315.77055232 477.82944768 343.04 512 343.04z" />
|
|
24
|
-
<glyph glyph-name="archive-folder"
|
|
25
|
-
unicode=""
|
|
26
|
-
horiz-adv-x="1024" d="M102.4 814.08C68.72000512 814.08 40.96 786.31999488 40.96 752.64L40.96 15.36C40.96 -18.3199948800001 68.72000512 -46.08 102.4 -46.08L921.6 -46.08C955.27999488 -46.08 983.04 -18.3199948800001 983.04 15.36L983.04 670.72C983.04 704.39999488 955.27999488 732.16 921.6 732.16L368.64 732.16C370.40001024 732.16 368 732.16 362.95999488 737.92C358.00000512 743.6800000000001 351.84001024 753.28 345.3599948800001 763.52C338.95999488 773.76 332.2399948800001 784.71999488 323.76000512 794.39998976C315.2 803.9999897600001 303.5200102400001 814.08 286.7200000000001 814.08zM102.4 773.12L286.7200000000001 773.12C285.44 773.12 288 772.95998976 293.04000512 767.19998976C298.0800102400001 761.52000512 304.24000512 752 310.7200000000001 741.76C312.64 738.63999488 314.72001024 735.36 316.8 732.16L102.4 732.16C95.20001024 732.16 88.39999488 730.63999488 81.92 728.3199999999999L81.92 752.64C81.92 764.16 90.88 773.12 102.4 773.12zM102.4 691.2L450.56 691.2L450.56 419.2C438.4000000000001 411.99998976 430.08 398.96000512 430.08 384L430.08 343.04C430.08 326.00000512 440.88000512 311.19998976 455.92000512 305.1199897600001C452.96001024 293.6800051199999 450.95999488 286.23998976 446.00000512 265.28C442.16000512 248.88000512 438.24001024 231.68 435.27999488 216.71999488C432.32 201.84000512 430.08 190.4 430.08 179.9999897600001C430.08 134.72 466.88 97.28 512 97.28C557.12 97.28 593.92 134.72 593.92 179.9999897600001C593.92 190.4 591.6800000000001 201.84000512 588.72000512 216.71999488C585.76001024 231.68 581.8399948800001 248.88000512 577.99999488 265.28C573.04000512 286.23998976 571.04001024 293.6800051199999 568.0799948800001 305.1199897600001C583.11999488 311.19998976 593.92 326.00000512 593.92 343.04L593.92 384C593.92 398.96000512 585.6 411.99998976 573.44 419.2L573.44 691.2L921.6 691.2C933.12 691.2 942.08 682.24 942.08 670.72L942.08 15.36C942.08 3.84 933.12 -5.12 921.6 -5.12L102.4 -5.12C90.88 -5.12 81.92 3.84 81.92 15.36L81.92 670.72C81.92 682.31999488 90.80000512 691.2 102.4 691.2zM491.52 691.2L532.48 691.2L532.48 609.28L512 609.28L512 568.3199999999999L532.48 568.3199999999999L532.48 486.4L512 486.4L512 445.44L532.48 445.44L532.48 424.96L491.52 424.96L491.52 506.88L512 506.88L512 547.8399999999999L491.52 547.8399999999999L491.52 629.76L512 629.76L512 670.72L491.52 670.72zM471.04 384L552.96 384L552.96 343.04L471.04 343.04zM497.28 302.0800000000001L526.72 302.0800000000001C529.20000512 292.40000512 532.48 280.1599897600001 538.16000512 255.92000512C542.00000512 239.75999488 545.7600102399999 222.96000512 548.55999488 208.79998976C551.36 194.63999488 552.96 182.00000512 552.96 179.9999897600001C552.96 156.8 534.47999488 138.24 512 138.24C489.52000512 138.24 471.04 156.8 471.04 179.9999897600001C471.04 182.00000512 472.64 194.63999488 475.44000512 208.79998976C478.24001024 222.96000512 481.99999488 239.75999488 485.83999488 255.92000512C491.52 280.1599897600001 494.79999488 292.40000512 497.28 302.0800000000001zM512 199.68C500.87999488 199.68 491.76000512 190.4799948800001 491.84 179.1999999999999C491.76000512 167.9200051199999 500.87999488 158.72 512 158.72C523.12000512 158.72 532.23999488 167.9200051199999 532.16 179.1999999999999C532.23999488 190.4799948800001 523.12000512 199.68 512 199.68z" />
|
|
27
|
-
<glyph glyph-name="downloads-folder"
|
|
28
|
-
unicode=""
|
|
29
|
-
horiz-adv-x="1024" d="M102.4 814.08C68.711018496 814.08 40.96 786.328981504 40.96 752.64L40.96 568.3199999999999L40.96 363.52L40.96 15.36C40.96 -18.3289856 68.711018496 -46.08 102.4 -46.08L921.6 -46.08C955.2889856 -46.08 983.04 -18.3289856 983.04 15.36L983.04 670.72C983.04 704.4089815039999 955.2889856 732.16 921.6 732.16L368.64 732.16C370.4129536 732.16 368.0049152000001 732.15254528 362.9999923200001 737.92C357.99504896 743.68745472 351.83450112 753.255604224 345.39999232 763.52C338.965504 773.784395776 332.22199296 784.736462848 323.7200076800001 794.3600005119999C315.21800192 803.983536128 303.48808192 814.08 286.7200000000001 814.08L102.4 814.08zM102.4 773.12L286.7200000000001 773.12C285.47584 773.12 287.9721472 772.9764352 293.04000512 767.239999488C298.10792448 761.503537152 304.2760908800001 751.975604224 310.68000256 741.76C317.08391424 731.544395776 323.71566592 720.63254528 332.04000768 711.04C340.36432896 701.44745472 351.8244249600001 691.2 368.64 691.2L921.6 691.2C933.1718144 691.2 942.08 682.2918144 942.08 670.72L942.08 625.9200000000001C935.63101184 628.2457088 928.80574464 629.76 921.6 629.76L102.4 629.76C95.1942656 629.76 88.36897792 628.2457088 81.92 625.9200000000001L81.92 752.64C81.92 764.211818496 90.828181504 773.12 102.4 773.12zM102.4 588.8L921.6 588.8C933.1718144 588.8 942.08 579.8918143999999 942.08 568.3199999999999L942.08 15.36C942.08 3.7881856 933.1718144 -5.12 921.6 -5.12L102.4 -5.12C90.828181504 -5.12 81.92 3.7881856 81.92 15.36L81.92 568.3199999999999C81.92 579.8918143999999 90.828181504 588.8 102.4 588.8zM511.68 507.16000256A20.482048 20.482048 0 0 1 491.52 486.4L491.52 228.6399897600001L424.07999488 296.07999488A20.482048 20.482048 0 0 1 409.39999232 302.28000768A20.482048 20.482048 0 0 1 395.12000512 267.12000512L494.60000768 167.64000256A20.482048 20.482048 0 0 1 512.11999232 158.43999744A20.482048 20.482048 0 0 1 512.15998976 158.43999744A20.482048 20.482048 0 0 1 512.20000768 158.43999744A20.482048 20.482048 0 0 1 512.28000256 158.43999744A20.482048 20.482048 0 0 1 529.48000768 167.7199974400001L628.87999488 267.12000512A20.482048 20.482048 0 0 1 614.00000512 302.28000768A20.482048 20.482048 0 0 1 599.92000512 296.07999488L532.48 228.6399897600001L532.48 486.4A20.482048 20.482048 0 0 1 511.68 507.16000256zM307.2 117.76A20.482048 20.482048 0 1 1 307.2 76.8L716.8000000000001 76.8A20.482048 20.482048 0 1 1 716.8000000000001 117.76L307.2 117.76z" />
|
|
30
|
-
<glyph glyph-name="downloads"
|
|
31
|
-
unicode=""
|
|
32
|
-
horiz-adv-x="1024" d="M214.11999744 814.08A20.482048 20.482048 0 0 1 196.879998976 804.679999488L85.159999488 630.6000076800001A20.482048 20.482048 0 0 1 81.92 619.52L81.92 612.72000512A20.482048 20.482048 0 0 1 81.92 606.04000256L81.92 -25.6A20.482048 20.482048 0 0 1 102.4 -46.08L921.6 -46.08A20.482048 20.482048 0 0 1 942.08 -25.6L942.08 605.83999488A20.482048 20.482048 0 0 1 942.08 612.51999744L942.08 619.52A20.482048 20.482048 0 0 1 938.84000256 630.6000076800001L827.12000512 804.679999488A20.482048 20.482048 0 0 1 809.88000256 814.08L214.11999744 814.08zM225.31999744 773.12L798.68000256 773.12L890.67999232 629.76L614.4 629.76A20.482048 20.482048 0 0 1 593.92 609.28C593.92 563.80672 557.47328 527.36 512 527.36C466.52672 527.36 430.08 563.80672 430.08 609.28A20.482048 20.482048 0 0 1 409.6 629.76L133.319999488 629.76L225.31999744 773.12zM122.88 588.8L393.2800000000001 588.8C403.4257305600001 531.24569088 451.63792384 486.4 512 486.4C572.36207616 486.4 620.57426944 531.24569088 630.72 588.8L901.12 588.8L901.12 -5.12L122.88 -5.12L122.88 588.8zM511.68 425.24000256A20.482048 20.482048 0 0 1 491.52 404.48L491.52 146.71998976L403.59999488 234.63999488A20.482048 20.482048 0 0 1 388.91999232 240.84000768A20.482048 20.482048 0 0 1 374.64000512 205.6800051199999L494.60000768 85.72000256A20.482048 20.482048 0 0 1 512.11999232 76.51999744A20.482048 20.482048 0 0 1 512.20000768 76.51999744A20.482048 20.482048 0 0 1 512.28000256 76.51999744A20.482048 20.482048 0 0 1 529.48000768 85.79999744L649.35999488 205.6800051199999A20.482048 20.482048 0 0 1 634.48000512 240.84000768A20.482048 20.482048 0 0 1 620.40000512 234.63999488L532.48 146.71998976L532.48 404.48A20.482048 20.482048 0 0 1 511.68 425.24000256z" />
|
|
33
|
-
<glyph glyph-name="file-explorer"
|
|
34
|
-
unicode=""
|
|
35
|
-
horiz-adv-x="1024" d="M102.4 834.56C68.698660864 834.56 40.96 806.798518272 40.96 773.12L40.96 588.8L40.96 384L40.96 35.84C40.96 2.1614796800001 68.698660864 -25.6 102.4 -25.6L163.84 -25.6L163.84 -87.04A20.482048 20.482048 0 0 1 184.32 -107.52L348.1600000000001 -107.52A20.482048 20.482048 0 0 1 368.64 -87.04L368.64 -25.6L655.36 -25.6L655.36 -87.04A20.482048 20.482048 0 0 1 675.84 -107.52L839.6800000000001 -107.52A20.482048 20.482048 0 0 1 860.16 -87.04L860.16 -25.6L921.6 -25.6C955.29089024 -25.6 983.04 2.14910976 983.04 35.84L983.04 384L983.04 588.8L983.04 691.2C983.04 724.890886144 955.29089024 752.64 921.6 752.64L368.64 752.64C370.4129536 752.64 368.0049152000001 752.6325452799999 362.9999923200001 758.4C357.99504896 764.16745472 351.83450112 773.735604224 345.39999232 784C338.965504 794.264395776 332.22199296 805.216462848 323.7200076800001 814.840000512C315.21800192 824.463536128 303.48808192 834.56 286.7200000000001 834.56L102.4 834.56zM102.4 793.6L286.7200000000001 793.6C285.47584 793.6 287.9721472 793.4564352 293.04000512 787.719999488C298.10792448 781.983537152 304.2760908800001 772.455604224 310.68000256 762.24C317.08391424 752.024395776 323.71566592 741.11254528 332.04000768 731.52C340.36432896 721.92745472 351.8244249600001 711.6800000000001 368.64 711.6800000000001L921.6 711.6800000000001C933.12894976 711.6800000000001 942.08 702.728953856 942.08 691.2L942.08 646.4C935.63101184 648.7257088 928.80574464 650.24 921.6 650.24L102.4 650.24C95.1942656 650.24 88.36897792 648.7257088 81.92 646.4L81.92 773.12C81.92 784.661321728 90.840539136 793.6 102.4 793.6zM102.4 609.28L921.6 609.28C933.1718144 609.28 942.08 600.3718144 942.08 588.8L942.08 384L942.08 35.84C942.08 24.31105024 933.12894976 15.36 921.6 15.36L860.16 15.36L860.16 322.56A20.482048 20.482048 0 0 1 839.6800000000001 343.04L184.32 343.04A20.482048 20.482048 0 0 1 163.84 322.56L163.84 15.36L102.4 15.36C90.840539136 15.36 81.92 24.29868032 81.92 35.84L81.92 384L81.92 588.8C81.92 600.3718144 90.828181504 609.28 102.4 609.28zM204.8 302.0800000000001L819.2 302.0800000000001L819.2 -66.5600000000001L696.32 -66.5600000000001L696.32 -8.56000512A20.482048 20.482048 0 0 1 696.32 -1.88000256L696.32 158.72A20.482048 20.482048 0 0 1 675.84 179.1999999999999L348.1600000000001 179.1999999999999A20.482048 20.482048 0 0 1 327.68 158.72L327.68 -1.67999488A20.482048 20.482048 0 0 1 327.68 -8.35999744L327.68 -66.5600000000001L204.8 -66.5600000000001L204.8 302.0800000000001zM368.64 138.24L655.36 138.24L655.36 15.36L368.64 15.36L368.64 138.24z" />
|
|
36
|
-
</font>
|
|
37
|
-
</defs>
|
|
38
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="EmanualApprovedFile" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="approvedFile" d="M512 919.040c-259.727 0-471.040-211.313-471.040-471.040 0-259.748 211.313-471.040 471.040-471.040 259.748 0 471.040 211.292 471.040 471.040 0 259.727-211.292 471.040-471.040 471.040zM733.737 620.81l-235.745-347.402-184.259 170.988c-8.294 7.68-8.786 20.644-1.085 28.938 7.68 8.315 20.664 8.765 28.938 1.085l149.299-138.527 208.957 307.937c6.369 9.359 19.108 11.776 28.447 5.448 9.38-6.349 11.817-19.087 5.448-28.467z" />
|
|
11
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Created by Icons8</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="EmanualBookMark" horiz-adv-x="1024">
|
|
7
|
-
<font-face font-family="EmanualBookMark"
|
|
8
|
-
units-per-em="1024" ascent="896"
|
|
9
|
-
descent="128"
|
|
10
|
-
font-weight="500" />
|
|
11
|
-
<missing-glyph horiz-adv-x="0" />
|
|
12
|
-
<glyph glyph-name="star"
|
|
13
|
-
unicode=""
|
|
14
|
-
horiz-adv-x="1024" d="M208.896 -99.3280000000001C204.8 -99.3280000000001 200.704 -97.28 196.608 -95.232C190.464 -91.136 186.368 -80.896 188.416 -72.7039999999999L278.528 263.168L8.192 482.304C0 486.4 -2.048 496.64 0 504.8319999999999C2.048 513.0239999999999 10.24 519.1679999999999 18.432 519.1679999999999L366.592 537.5999999999999L491.52 863.232C495.616 869.376 503.808 875.52 512 875.52C520.192 875.52 528.384 869.376 530.432 863.232L655.36 537.5999999999999L1003.52 519.168C1011.712 519.168 1019.904 513.024 1021.952 504.8320000000001C1024 496.64 1021.952 488.448 1015.8080000000002 482.304L745.472 263.168L835.584 -72.7039999999999C837.632 -80.896 835.584 -89.0879999999998 827.3919999999999 -95.232C821.248 -99.3280000000001 811.008 -101.376 804.8639999999999 -95.232L512 93.184L219.136 -95.2320000000001C215.04 -99.3280000000001 212.992 -99.3280000000001 208.896 -99.3280000000001z" />
|
|
15
|
-
</font>
|
|
16
|
-
</defs>
|
|
17
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="EmanualBookMarkLink" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="EmanualBookMarkLink" d="M908.629 647.339c-101.717 97.621-203.435 195.925-305.152 293.547-8.192 8.192-19.115 12.971-30.037 12.971h-347.477c-26.624 0-48.469-21.845-48.469-48.469v-915.456c0-26.624 21.845-48.469 48.469-48.469h647.851c26.624 0 48.469 21.845 48.469 48.469v626.005c0 12.288-4.779 23.893-13.653 31.403zM723.627 361.984l-82.603-83.285c-1.365-1.365-2.048-4.096-2.048-6.144l21.845-115.371c1.365-5.461-4.779-9.557-9.557-7.509l-105.131 53.248c-2.048 1.365-4.096 1.365-6.144 0l-103.083-56.661c-4.779-2.731-10.923 1.365-10.24 6.827l17.749 116.053c0 2.048-0.683 4.096-2.048 6.144l-84.651 80.555c-4.096 4.096-2.048 10.923 3.413 11.605l116.053 19.115c2.048 0 4.096 2.048 4.779 4.096l50.517 105.813c2.048 4.779 9.557 5.461 12.288 0l53.931-104.448c0.683-2.048 2.731-3.413 5.461-3.413l116.736-15.019c4.779-0.683 6.827-7.509 2.731-11.605zM887.467 609.792l-265.557 2.048c-26.624 0-48.469 21.845-48.469 49.152l1.365 253.952c0 6.144 7.509 8.875 11.605 4.779 101.717-98.987 203.435-198.656 305.152-298.325 4.779-3.413 2.048-11.605-4.096-11.605z" />
|
|
11
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="EmanualFolder" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="EmanualFolder" d="M102.4 878.080c-33.689 0-61.44-27.751-61.44-61.44v-737.28c0-33.689 27.751-61.44 61.44-61.44h819.2c33.689 0 61.44 27.751 61.44 61.44v655.36c0 33.689-27.751 61.44-61.44 61.44h-552.96c1.773 0-0.635-0.007-5.64 5.76s-11.165 15.336-17.6 25.6c-6.434 10.264-13.178 21.216-21.68 30.84s-20.232 19.72-37 19.72h-184.32zM102.4 837.12h184.32c-1.244 0 1.252-0.144 6.32-5.88s11.236-15.264 17.64-25.48c6.404-10.216 13.036-21.127 21.36-30.72s19.784-19.84 36.6-19.84h552.96c11.572 0 20.48-8.908 20.48-20.48v-44.8c-6.449 2.326-13.274 3.84-20.48 3.84h-819.2c-7.206 0-14.031-1.514-20.48-3.84v126.72c0 11.572 8.908 20.48 20.48 20.48zM102.4 652.8h819.2c11.572 0 20.48-8.908 20.48-20.48v-552.96c0-11.572-8.908-20.48-20.48-20.48h-819.2c-11.572 0-20.48 8.908-20.48 20.48v552.96c0 11.572 8.908 20.48 20.48 20.48z" />
|
|
11
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="EmmanualFont" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="addFolder" d="M286.72 878.080c16.8 0 28.64-10.24 37.12-19.84s15.36-20.48 21.76-30.72c6.4-10.24 12.24-19.84 17.28-25.6 3.28-3.76 5.12-5.28 5.76-5.76 0.48 0 0.72-0.080 0.64 0h531.84c33.68 0 61.44-27.76 61.44-61.44v-61.44c33.68 0 61.44-27.76 61.44-61.44v-1.92l-0.64-1.92-43.6-235.12c-10.4 12.32-22 23.6-34.64 33.76l37.92 205.2c0 11.52-8.96 20.48-20.48 20.48h-798.72c-11.52 0-20.48-8.96-20.48-20.48v-1.92l-0.64-1.92-101.76-549.12c0-11.52 8.96-20.48 20.48-20.48h559.84c16.64-16.16 35.52-30 56.16-40.96h-616c-29.44 0-54.4 21.36-60.16 49.28-2.080 4.4-2.56 9.36-1.28 14.080v755.84c0 33.68 27.76 61.44 61.44 61.44zM40.96 816.64v-536.32l61.44 331.52 0.64 3.84h0.64c2.24 31.68 27.92 57.6 60.16 57.6h757.76v61.44c0 11.52-8.96 20.48-20.48 20.48h-532.48c-16.8 0-28.16 10.24-36.48 19.84s-15.36 20.48-21.76 30.72c-6.4 10.24-12.24 19.84-17.28 25.6s-7.68 5.76-6.4 5.76h-225.28c-11.52 0-20.48-8.96-20.48-20.48zM912.96 214.64c0-12.32-8.16-20.48-20.48-20.48h-79.84v-79.92c0-12.24-8.24-20.48-20.48-20.48-12.32 0-20.48 8.24-20.48 20.48v79.92h-79.92c-12.24 0-20.48 8.16-20.48 20.48 0 12.24 8.24 20.48 20.48 20.48h79.92v79.84c0 12.32 8.16 20.48 20.48 20.48 12.24 0 20.48-8.16 20.48-20.48v-79.84h79.84c12.32 0 20.48-8.24 20.48-20.48zM996.96 214.64c0-112.64-92.16-204.8-204.8-204.8s-204.8 92.16-204.8 204.8c0 112.64 92.16 204.8 204.8 204.8s204.8-92.16 204.8-204.8zM956 214.64c0 90.080-73.76 163.84-163.84 163.84-90.16 0-163.84-73.76-163.84-163.84 0-90.16 73.68-163.84 163.84-163.84 90.080 0 163.84 73.68 163.84 163.84z" />
|
|
11
|
-
<glyph unicode="" glyph-name="EditFolder" d="M286.72 878.080c16.8 0 28.64-10.24 37.12-19.84s15.36-20.48 21.76-30.72c6.4-10.24 12.24-19.84 17.28-25.6 3.28-3.76 5.12-5.28 5.76-5.76 0.48 0 0.72-0.080 0.64 0h531.84c33.68 0 61.44-27.76 61.44-61.44v-61.44c33.68 0 61.44-27.76 61.44-61.44v-1.92l-0.64-1.92-101.76-549.12c0-0.24 0-0.4 0-0.64l-0.64-3.2c0-0.4 0-0.88 0-1.28-0.080-1.28-0.48-2.56-0.64-3.84-4.48-29.44-29.6-52.48-60.16-52.48h-798.72c-29.44 0-54.4 21.36-60.16 49.28-2.080 4.4-2.56 9.36-1.28 14.080v755.84c0 33.68 27.76 61.44 61.44 61.44zM40.96 816.64v-536.32l61.44 331.52 0.64 3.84h0.64c2.24 31.68 27.92 57.6 60.16 57.6h757.76v61.44c0 11.52-8.96 20.48-20.48 20.48h-532.48c-16.8 0-28.16 10.24-36.48 19.84s-15.36 20.48-21.76 30.72c-6.4 10.24-12.24 19.84-17.28 25.6s-7.68 5.76-6.4 5.76h-225.28c-11.52 0-20.48-8.96-20.48-20.48zM143.36 611.84v-1.92l-0.64-1.92-101.76-549.12c0-11.52 8.96-20.48 20.48-20.48h261.040c3.28-0.48 6.48-0.72 9.76-0.72 4.4 0 7.68 0 11.44 0.72h516.48c9.36 0 17.28 5.76 19.84 14.080-0.080 0.88-0.080 1.68 0 2.56 0.080 0.64-0.080 1.28 0 1.92 0.16 1.12 0.32 2.16 0.64 3.2 0 0.24 0 0.4 0 0.64 0 0.4 0 0.88 0 1.28 0.16 0.88 0.4 1.76 0.64 2.56 0.16 0.88 0.4 1.76 0.64 2.56l0.64 1.28 100.48 543.36c0 11.52-8.96 20.48-20.48 20.48h-798.72c-11.52 0-20.48-8.96-20.48-20.48zM678.080 528.96c-20.48 0-38.88-8.24-55.28-22.56l-4.080-2.080-2.080-2-24.56-24.56-239.6-241.68c-2.080-2.080-4.16-6.16-6.16-8.24l-34.8-122.88c-4.16-10.24 2-22.48 14.32-24.56 4.080-2 8.16-2 10.24 0l122.88 32.8c4.080 0 6.16 2 10.24 6.16l262.16 262.080 6.080 4.16c32.8 32.72 32.8 86 0 118.72-16.32 18.48-38.88 24.64-59.36 24.64zM678.080 488c10.24 0 22.56-4.16 30.72-12.32 16.4-16.4 16.4-40.96 2.080-57.36l-59.44 59.44c8.24 6.080 16.4 10.24 26.64 10.24zM620.72 449.040l61.44-61.44-223.2-223.2-61.44 59.36zM377.040 184.88l42.96-43.040-59.36-16.4z" />
|
|
12
|
-
<glyph unicode="" glyph-name="selectedFolder" d="M286.72 878.080c16.8 0 28.64-10.24 37.12-19.84s15.36-20.48 21.76-30.72c6.4-10.24 12.24-19.84 17.28-25.6 3.28-3.76 5.12-5.28 5.76-5.76 0.48 0 0.72-0.080 0.64 0h531.84c33.68 0 61.44-27.76 61.44-61.44v-61.44c33.68 0 61.44-27.76 61.44-61.44v-1.92l-0.64-1.92-51.2-276.080c-9.040 16.48-19.92 31.92-32.4 45.92l43.28 234c0 11.52-8.96 20.48-20.48 20.48h-798.72c-11.52 0-20.48-8.96-20.48-20.48v-1.92l-0.64-1.92-101.76-549.12c0-11.52 8.96-20.48 20.48-20.48h524.080c16.64-16.16 35.52-30 56.16-40.96h-580.24c-29.44 0-54.4 21.36-60.16 49.28-2.080 4.4-2.56 9.36-1.28 14.080v755.84c0 33.68 27.76 61.44 61.44 61.44zM40.96 816.64v-536.32l61.44 331.52 0.64 3.84h0.64c2.24 31.68 27.92 57.6 60.16 57.6h757.76v61.44c0 11.52-8.96 20.48-20.48 20.48h-532.48c-16.8 0-28.16 10.24-36.48 19.84s-15.36 20.48-21.76 30.72c-6.4 10.24-12.24 19.84-17.28 25.6s-7.68 5.76-6.4 5.76h-225.28c-11.52 0-20.48-8.96-20.48-20.48zM908.64 22c-8.4-11.2-20.48-19.52-34.48-22.88 12.16 6.64 23.68 14.32 34.48 22.88zM756.4 9.84c-112.64 0-204.8 92.16-204.8 204.8s92.16 204.8 204.8 204.8c112.64 0 204.8-92.16 204.8-204.8s-92.16-204.8-204.8-204.8zM756.4 378.48c-90.080 0-163.84-73.76-163.84-163.84 0-90.16 73.76-163.84 163.84-163.84 90.16 0 163.84 73.68 163.84 163.84 0 90.080-73.68 163.84-163.84 163.84zM875.2 282.16l-30.72 26.64-110.56-129.040-67.6 51.2-24.56-32.72 96.24-73.76z" />
|
|
13
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Created by Icons8</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="EmanualFont" horiz-adv-x="1024">
|
|
7
|
-
<font-face font-family="EmanualFont"
|
|
8
|
-
units-per-em="1024" ascent="896"
|
|
9
|
-
descent="128"
|
|
10
|
-
font-weight="500" />
|
|
11
|
-
<missing-glyph horiz-adv-x="0" />
|
|
12
|
-
<glyph glyph-name="empty-trash"
|
|
13
|
-
unicode=""
|
|
14
|
-
horiz-adv-x="1024" d="M160 732.16C150.24001024 730.31999488 143.20001024 721.67999488 143.36 711.6800000000001L143.36 629.76C143.36 618.48000512 152.56000512 609.28 163.84 609.28L167.68 609.28L227.84 286.7200000000001C227.44000512 282.48000512 228.32001024 278.23998976 230.4 274.56L257.92 127.36C257.7600102400001 124.08000512 258.4000102400001 120.71999488 259.8400000000001 117.76L274.56 38.4C274.56 38.15999488 274.56 38.00000512 274.56 37.76C284.6400102400001 -9.9200000000001 326.08 -46.08 375.04 -46.08L648.96 -46.08C697.76001024 -46.08 741.44 -10.48000512 749.44 38.4C749.44 38.64000512 749.44 38.79999488 749.44 39.04L764.16 117.76C764.16 118.00000512 764.16 118.15999488 764.16 118.4L764.8000000000001 119.68C765.76 122.31999488 766.24001024 125.19999488 766.08 128L793.6 273.92C796.0000102399999 278.00000512 796.87999488 282.71998976 796.16 287.36L856.32 609.28L860.16 609.28C871.4399948800001 609.28 880.64 618.48000512 880.64 629.76L880.64 711.6800000000001C880.64 722.9599948800001 871.4399948800001 732.16 860.16 732.16L163.84 732.16C163.2 732.16 162.56 732.16 161.92 732.16C161.28 732.16 160.64 732.16 160 732.16zM184.32 691.2L839.6800000000001 691.2L839.6800000000001 650.24L659.84 650.24C657.76001024 650.8000051199999 655.60000512 651.03998976 653.44 650.88C652.8000000000001 650.71998976 652.16 650.48000512 651.52 650.24L434.56 650.24C432.48001024 650.8000051199999 430.32000512 651.03998976 428.1600000000001 650.88C427.52 650.71998976 426.88 650.48000512 426.24 650.24L184.32 650.24zM254.72 609.28L318.7200000000001 609.28L286.7200000000001 577.28zM377.6 609.28L421.12 609.28L482.56 547.8399999999999L399.36 464L316.1600000000001 547.8399999999999zM480 609.28L544 609.28L512 577.28zM602.88 609.28L646.4 609.28L707.84 547.8399999999999L624.64 464.64L541.44 547.8399999999999zM705.28 609.28L769.28 609.28L737.28 577.28zM211.84 593.28L257.2800000000001 547.8399999999999L226.56 516.48zM812.16 593.28L798.08 516.48L766.72 547.8399999999999zM286.7200000000001 518.4L370.56 435.2L286.7200000000001 351.36L254.08 384C253.12 384.96 252.00001024 385.84000512 250.88 386.56L235.52 467.84zM512 518.4L595.84 435.2L512 351.36L428.1600000000001 435.2zM737.28 518.4L788.48 467.84L773.76 387.2C772.32001024 386.31999488 771.04001024 385.20000512 769.9200000000001 384L737.28 351.36L653.44 435.2zM399.36 406.4L483.2 322.56L399.36 238.7200000000001L315.52 322.56zM624.64 406.4L708.48 322.56L624.64 238.7200000000001L540.8 322.56zM286.7200000000001 293.76L370.56 209.92L297.6 136.96L271.36 278.4zM512 293.76L595.84 209.92L512 126.0799999999999L428.1600000000001 209.92zM737.28 293.76L753.28 277.76L726.4 136.96L653.44 209.92zM399.36 181.12L483.2 97.28L409.6 23.68L325.76 107.52zM624.64 181.12L698.24 107.52L614.4 23.68L540.8 97.28zM512 68.48L585.6 -5.12L438.4000000000001 -5.12zM311.68 64L380.8 -5.12L375.04 -5.12C346.16000512 -5.12 321.20000512 15.9200051199999 314.88 46.0799999999999zM712.32 64L709.12 46.0799999999999C709.12 45.83999488 709.12 45.6800051199999 709.12 45.4399999999999C704.56000512 16.79998976 677.8399948800001 -5.12 648.96 -5.12L643.2 -5.12z" />
|
|
15
|
-
<glyph glyph-name="full-trash"
|
|
16
|
-
unicode=""
|
|
17
|
-
horiz-adv-x="1024" d="M407.04 855.04C403.27999488 854.55998976 399.75999488 852.95998976 396.8 850.56L252.8 732.16L163.84 732.16C163.2 732.16 162.56 732.16 161.92 732.16C161.28 732.16 160.64 732.16 160 732.16C150.24001024 730.31999488 143.20001024 721.67999488 143.36 711.6800000000001L143.36 629.76C143.36 618.48000512 152.56000512 609.28 163.84 609.28L167.68 609.28L227.84 286.7200000000001C227.44000512 282.48000512 228.32001024 278.23998976 230.4 274.56L257.92 127.36C257.7600102400001 124.08000512 258.4000102400001 120.71999488 259.8400000000001 117.76L274.56 38.4C274.56 38.15999488 274.56 38.00000512 274.56 37.76C284.6400102400001 -9.9200000000001 326.08 -46.08 375.04 -46.08L648.96 -46.08C697.76001024 -46.08 741.44 -10.48000512 749.44 38.4C749.44 38.64000512 749.44 38.79999488 749.44 39.04L764.16 117.76C764.16 118.00000512 764.16 118.15999488 764.16 118.4L764.8000000000001 119.68C765.76 122.31999488 766.24001024 125.19999488 766.08 128L793.6 273.92C796.0000102399999 278.00000512 796.87999488 282.71998976 796.16 287.36L856.32 609.28L860.16 609.28C871.4399948800001 609.28 880.64 618.48000512 880.64 629.76L880.64 711.6800000000001C880.64 722.9599948800001 871.4399948800001 732.16 860.16 732.16L798.72 732.16L664.96 827.52C661.28001024 830.32000512 656.7199948800001 831.43999488 652.16 830.72C651.04001024 830.4 649.99999488 830.00000512 648.96 829.44L517.76 773.12L422.4000000000001 850.56C418.08001024 854.08 412.5599948800001 855.68 407.04 855.04zM409.6 808.3199999999999L503.68 732.16L317.44 732.16zM653.44 794.88L741.76 732.16L568.32 732.16L547.2 749.44zM184.32 691.2L839.6800000000001 691.2L839.6800000000001 650.24L659.84 650.24C657.76001024 650.8000051199999 655.60000512 651.03998976 653.44 650.88C652.8000000000001 650.71998976 652.16 650.48000512 651.52 650.24L432 650.24C430.4799948800001 650.3999897599999 429.04000512 650.3999897599999 427.52 650.24L184.32 650.24zM254.72 609.28L318.7200000000001 609.28L286.7200000000001 577.28zM377.6 609.28L421.12 609.28L482.56 547.8399999999999L399.36 464.64L316.1600000000001 547.8399999999999zM480 609.28L544 609.28L512 577.28zM602.88 609.28L646.4 609.28L707.84 547.8399999999999L624.64 464.64L541.44 547.8399999999999zM705.28 609.28L769.28 609.28L737.28 577.28zM211.84 593.28L257.2800000000001 547.8399999999999L226.56 516.48zM812.16 593.28L798.08 515.8399999999999L766.72 547.8399999999999zM286.7200000000001 519.04L370.56 435.2L286.7200000000001 351.36L254.08 384C253.12 384.96 252.00001024 385.84000512 250.88 386.56L235.52 467.84zM512 518.4L595.84 435.2L512 351.36L428.8 435.2zM737.28 518.4L788.48 467.84L773.76 387.2C772.32001024 386.31999488 771.04001024 385.20000512 769.9200000000001 384L737.28 351.36L653.44 435.2zM399.36 406.4L483.2 322.56L399.36 238.7200000000001L315.52 322.56zM624.64 406.4L708.48 322.56L624.64 238.7200000000001L540.8 322.56zM286.7200000000001 293.76L370.56 209.92L297.6 136.96L271.36 278.4zM512 293.76L595.84 209.92L512 126.0799999999999L428.1600000000001 209.92zM737.28 293.76L752.64 278.4L726.4 136.96L653.44 209.92zM399.36 181.12L483.2 97.28L409.6 23.68L325.76 107.52zM624.64 181.12L698.24 107.52L614.4 23.68L540.8 97.28zM512 68.48L585.6 -5.12L438.4000000000001 -5.12zM311.68 64L380.8 -5.12L375.04 -5.12C346.16000512 -5.12 321.20000512 15.9200051199999 314.88 46.0799999999999zM712.32 64L709.12 46.0799999999999C709.12 45.83999488 709.12 45.6800051199999 709.12 45.4399999999999C704.56000512 16.79998976 677.8399948800001 -5.12 648.96 -5.12L643.2 -5.12z" />
|
|
18
|
-
<glyph glyph-name="bookmark"
|
|
19
|
-
unicode=""
|
|
20
|
-
horiz-adv-x="1024" d="M262.4 855.04C252.64001024 853.19999488 245.60001024 844.55999488 245.76 834.56L245.76 -66.5600000000001C245.68000512 -73.9200000000001 249.6 -80.7199948800001 255.92000512 -84.4000051200001C262.24001024 -88.16001024 270.08 -88.16001024 276.48 -84.48L512 53.12L747.52 -84.48C753.92 -88.16001024 761.76001024 -88.16001024 768.0799948800001 -84.4000051200001C774.4 -80.7199948800001 778.3199948800001 -73.9200000000001 778.24 -66.5600000000001L778.24 834.56C778.24 845.83999488 769.03999488 855.04 757.76 855.04L266.24 855.04C265.6 855.04 264.96 855.04 264.32 855.04C263.68 855.04 263.04 855.04 262.4 855.04zM286.7200000000001 814.08L737.28 814.08L737.28 -30.72L522.24 94.72C515.91999488 98.39998976 508.08000512 98.39998976 501.76 94.72L286.7200000000001 -30.72z" />
|
|
21
|
-
<glyph glyph-name="bookmark-2"
|
|
22
|
-
unicode=""
|
|
23
|
-
horiz-adv-x="1024" d="M757.76 -87.04C754.16000512 -87.04 750.64000512 -86.08 747.44000512 -84.23999488L512 53.12L276.5599948800001 -84.23999488C270.24001024 -87.92000512 262.4 -88 256.07999488 -84.32001024C249.67999488 -80.64 245.76 -73.9200000000001 245.76 -66.5600000000001L245.76 834.56C245.76 845.83999488 254.96000512 855.04 266.24 855.04L757.76 855.04C769.1200102399999 855.04 778.24 845.83999488 778.24 834.56L778.24 -66.5600000000001C778.24 -73.9200000000001 774.32000512 -80.64 767.92000512 -84.32001024C764.8000000000001 -86.15999488 761.28 -87.04 757.76 -87.04z" />
|
|
24
|
-
<glyph glyph-name="add-bookmark"
|
|
25
|
-
unicode=""
|
|
26
|
-
horiz-adv-x="1024" d="M266.24 855.04C254.91456 855.04 245.76 845.86496 245.76 834.56L245.76 -66.5600000000001C245.76 -73.89184 249.67071744 -80.67454976 256.0399974400001 -84.32001024C262.40927744 -87.96542976 270.23167488 -87.92639488 276.5599948800001 -84.23999488L512 53.08000256L747.44000512 -84.23999488C750.61440512 -86.1036748800001 754.1964800000001 -87.04 757.76 -87.04C761.28256 -87.04 764.80608256 -86.14270976 767.96000256 -84.32001024C774.32928256 -80.6745702400001 778.24 -73.89184 778.24 -66.5600000000001L778.24 162.4000102399999C764.12928 164.77566976 750.46912 168.3510476800001 737.28 173.00000768L737.28 -30.92000768L522.31999488 94.4799948800001C519.14559488 96.34367488 515.56352 97.28 512 97.28C508.43648 97.28 504.85440512 96.34367488 501.68000512 94.4799948800001L286.7200000000001 -30.92000768L286.7200000000001 814.08L737.28 814.08L737.28 635.95999232C750.46912 640.62943232 764.12928 644.18433024 778.24 646.55998976L778.24 834.56C778.24 845.86496 769.08544 855.04 757.76 855.04L266.24 855.04zM819.44000512 609.52000512C706.80000512 609.52000512 614.64000512 517.36000512 614.64000512 404.72000512C614.64000512 292.08000512 706.80000512 199.9200051199999 819.44000512 199.9200051199999C932.08000512 199.9200051199999 1024.24000512 292.08000512 1024.24000512 404.72000512C1024.24000512 517.36000512 932.08000512 609.52000512 819.44000512 609.52000512zM819.44000512 568.5600051199999C909.55200512 568.5600051199999 983.28000512 494.83200512 983.28000512 404.72000512C983.28000512 314.6080051200001 909.55200512 240.88000512 819.44000512 240.88000512C729.3280051200001 240.88000512 655.60000512 314.6080051200001 655.60000512 404.72000512C655.60000512 494.83200512 729.3280051200001 568.5600051199999 819.44000512 568.5600051199999zM819.44000512 525.55999232C807.15200512 525.55999232 798.96000512 517.36799232 798.96000512 505.07999232L798.96000512 425.20000512L719.07999744 425.20000512C706.79199744 425.20000512 698.59999744 417.00800512 698.59999744 404.72000512C698.59999744 392.4320051200001 706.79199744 384.24000512 719.07999744 384.24000512L798.96000512 384.24000512L798.96000512 304.3599974400001C798.96000512 292.07199744 807.15200512 283.87999744 819.44000512 283.87999744C831.72800512 283.87999744 839.92000512 292.07199744 839.92000512 304.3599974400001L839.92000512 384.24000512L919.79999232 384.24000512C932.08799232 384.24000512 940.27999232 392.4320051200001 940.27999232 404.72000512C940.27999232 417.00800512 932.08799232 425.20000512 919.79999232 425.20000512L839.92000512 425.20000512L839.92000512 505.07999232C839.92000512 517.36799232 831.72800512 525.55999232 819.44000512 525.55999232z" />
|
|
27
|
-
<glyph glyph-name="add-bookmark-2"
|
|
28
|
-
unicode=""
|
|
29
|
-
horiz-adv-x="1024" d="M266.24 855.04C254.91456 855.04 245.76 845.86496 245.76 834.56L245.76 -66.5600000000001C245.76 -73.89184 249.67071744 -80.67454976 256.0399974400001 -84.32001024C262.40927744 -87.96542976 270.23167488 -87.92639488 276.5599948800001 -84.23999488L512 53.08000256L747.44000512 -84.23999488C750.61440512 -86.1036748800001 754.1964800000001 -87.04 757.76 -87.04C761.28256 -87.04 764.80608256 -86.14270976 767.96000256 -84.32001024C774.32928256 -80.6745702400001 778.24 -73.89184 778.24 -66.5600000000001L778.24 204.16C791.5667456 201.40845056 805.32959232 199.9200051199999 819.44000512 199.9200051199999C932.08000512 199.9200051199999 1024.24000512 292.08000512 1024.24000512 404.72000512C1024.24000512 517.36000512 932.08000512 609.52000512 819.44000512 609.52000512C805.32959232 609.52000512 791.5667456 608.07153664 778.24 605.32000768L778.24 834.56C778.24 845.86496 769.08544 855.04 757.76 855.04L266.24 855.04zM819.44000512 568.5600051199999C909.55200512 568.5600051199999 983.28000512 494.83200512 983.28000512 404.72000512C983.28000512 314.6080051200001 909.55200512 240.88000512 819.44000512 240.88000512C729.3280051200001 240.88000512 655.60000512 314.6080051200001 655.60000512 404.72000512C655.60000512 494.83200512 729.3280051200001 568.5600051199999 819.44000512 568.5600051199999zM819.44000512 525.55999232C807.15200512 525.55999232 798.96000512 517.36799232 798.96000512 505.07999232L798.96000512 425.20000512L719.07999744 425.20000512C706.79199744 425.20000512 698.59999744 417.00800512 698.59999744 404.72000512C698.59999744 392.4320051200001 706.79199744 384.24000512 719.07999744 384.24000512L798.96000512 384.24000512L798.96000512 304.3599974400001C798.96000512 292.07199744 807.15200512 283.87999744 819.44000512 283.87999744C831.72800512 283.87999744 839.92000512 292.07199744 839.92000512 304.3599974400001L839.92000512 384.24000512L919.79999232 384.24000512C932.08799232 384.24000512 940.27999232 392.4320051200001 940.27999232 404.72000512C940.27999232 417.00800512 932.08799232 425.20000512 919.79999232 425.20000512L839.92000512 425.20000512L839.92000512 505.07999232C839.92000512 517.36799232 831.72800512 525.55999232 819.44000512 525.55999232z" />
|
|
30
|
-
</font>
|
|
31
|
-
</defs>
|
|
32
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="EmanualPendingIcon" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="pending" d="M122.88 939.52v-81.92c0-33.84 27.6-61.44 61.44-61.44h40.96v-137.6c0-61.6 30.64-119.44 81.92-153.6l85.76-56.96-85.76-56.96c-51.28-34.16-81.92-92-81.92-153.6v-137.6h-40.96c-33.84 0-61.44-27.6-61.44-61.44v-81.92h778.24v81.92c0 33.84-27.6 61.44-61.44 61.44h-40.96v137.6c0 61.6-30.64 119.44-81.92 153.6l-85.76 56.96 85.76 56.96c51.28 34.16 81.92 92 81.92 153.6v137.6h40.96c33.84 0 61.44 27.6 61.44 61.44v81.92zM266.24 796.16h491.52v-137.6c0-47.92-24.080-92.48-64-119.040l-111.36-74.24-25.6-17.28 25.6-17.28 111.36-74.24c39.92-26.64 64-71.12 64-119.040v-137.6h-491.52v137.6c0 47.92 24.080 92.4 64 119.040l111.36 74.24 25.6 17.28-25.6 17.28-111.36 74.24c-39.92 26.56-64 71.12-64 119.040zM512 329.6c0 0-156.88-55.28-195.84-188.8h392.32c-38.48 136.16-196.48 188.8-196.48 188.8z" />
|
|
11
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="EmanualPublishFile" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="PublishFile" d="M819.2 960c-111.92 0-203.2-90.080-204.8-201.6 0-1.040 0-2.16 0-3.2 0-75.52 40.88-141.12 101.76-176.64 30.24-17.68 65.52-28.16 103.040-28.16 112.96 0 204.8 91.84 204.8 204.8s-91.84 204.8-204.8 204.8zM574.72 737.92l-209.28-104.96c48.72-42.24 80.72-103.040 84.48-171.52l211.84 106.24c-49.44 41.52-82.16 102-87.040 170.24zM204.8 652.8c-112.96 0-204.8-91.84-204.8-204.8s91.84-204.8 204.8-204.8c42 0 80.72 12.8 113.28 34.56 54.96 36.72 91.52 99.12 91.52 170.24 0 73.52-39.12 137.92-97.28 174.080-31.36 19.52-68 30.72-107.52 30.72zM449.92 434.56c-3.76-68.4-35.2-129.84-83.84-172.16l208.64-104.32c4.88 68.24 37.040 128.64 86.4 170.24zM819.2 345.6c-42.24 0-81.28-13.2-113.92-35.2-54.64-36.8-90.88-98.8-90.88-169.6 0-0.32 0-0.32 0-0.64-0.88-0.080-1.68-0.56-2.56-0.64l2.56-1.28c1.36-111.76 92.72-202.24 204.8-202.24 112.96 0 204.8 91.84 204.8 204.8s-91.84 204.8-204.8 204.8z" />
|
|
11
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="EmanualPublishIconFile" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="EmanualPublishIcon" d="M871.083 648.021c-101.717 98.304-203.435 195.925-305.152 294.229-8.192 8.192-19.115 12.288-30.72 12.288h-347.477c-26.624 0-48.469-21.845-48.469-48.469v-915.456c0-26.624 21.845-48.469 48.469-48.469h647.851c26.624 0 48.469 21.845 48.469 48.469v626.005c0.683 11.605-4.096 23.211-12.971 31.403zM643.072 428.203l-180.224-180.224-0.683 0.683-4.096-4.096-77.141 77.141c-3.413 3.413-5.461 8.875-5.461 13.653s2.048 9.557 5.461 12.971c7.509 7.509 19.115 7.509 26.624 0l43.008-43.008c4.779-4.779 12.288-4.779 16.384 0l149.504 149.504c7.509 7.509 19.115 7.509 26.624 0s7.509-19.797 0-26.624zM849.237 610.475l-265.557 2.048c-26.624 0-48.469 21.845-48.469 49.152l2.048 253.952c0 6.144 7.509 8.875 11.605 4.779 101.717-98.987 203.435-198.656 305.152-298.325 4.779-4.096 1.365-11.605-4.779-11.605z" />
|
|
11
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="EmanualRestoreTrash" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="icons8-trash" d="M593.92 960c33.68 0 61.44-27.76 61.44-61.44v-40.96h204.8c7.36 0.080 14.24-3.76 18-10.16 3.68-6.4 3.68-14.24 0-20.64-3.76-6.4-10.64-10.24-18-10.16h-22.4l-44.32-499.6c-12.96 3.84-26.4 7.040-40.32 9.52l43.68 490.080h-569.6l73.6-826.24c0.64-7.12 8.24-13.44 14.72-13.44h392.96c6.48 0 14.080 6.32 14.72 13.44l5.12 57.6c2.16 6.64 3.36 13.76 3.36 21.28v16.080l1.6 18.56c14.8-2.24 28.24-5.2 40.48-8.8l-9.6-107.92c-2.56-28.64-26.96-51.2-55.68-51.2h-392.96c-28.72 0-53.12 22.56-55.68 51.2l-73.6 829.44h-22.4c-11.28-0.56-20.88 8.24-21.44 19.52s8.24 20.88 19.52 21.44c0.64 0 38.4 0 39.040 0 2.56 0.48 5.12 0.48 7.68 0h160v40.96c0 33.68 27.76 61.44 61.44 61.44zM409.6 898.56v-40.96h204.8v40.96c0 11.52-8.96 20.48-20.48 20.48h-163.84c-11.52 0-20.48-8.96-20.48-20.48zM403.2 750.32c4.24-4 6.64-9.68 6.4-15.6v-486.96c-4.16-8.56-6.24-18.32-6.24-28.72 0-8.72 2.32-17.44 6.24-25.6v-134.56c0.080-7.36-3.76-14.24-10.16-18-6.4-3.68-14.24-3.68-20.64 0-6.4 3.76-10.24 10.64-10.16 18v675.84c-0.24 9.76 6.48 18.32 16 20.48 0.8 0.24 1.68 0.48 2.56 0.64 5.84 0.56 11.68-1.44 16-5.52zM526.080 750.32c4.24-4 6.64-9.68 6.4-15.6v-388l-40.96-30.72v418.72c-0.24 9.76 6.48 18.32 16 20.48 0.8 0.24 1.68 0.48 2.56 0.64 5.84 0.56 11.68-1.44 16-5.52zM532.48 58.88c0.080-7.36-3.76-14.24-10.16-18-6.4-3.68-14.24-3.68-20.64 0-6.4 3.76-10.24 10.64-10.16 18v64.56l40.96-29.92zM648.96 750.32c4.24-4 6.64-9.68 6.4-15.6v-302c-8-1.92-15.84-5.44-22.16-10.48l-18.8-14.080v326.56c-0.24 9.76 6.48 18.32 16 20.48 0.8 0.24 1.68 0.48 2.56 0.64 5.84 0.56 11.68-1.44 16-5.52zM446.8 214.88c0-2.080 0-2.080 2-4.080l4.16-4.16 205.2-149.76c6.080-4.16 14.32-6.16 20.48-2.080s10.24 10.24 10.24 18.48v78c240.080-8.24 246.24-178.56 246.24-186.72 0-2.080 0-2.080 0-4.16 0-2 0-2 0-4.080s2.080-2.080 2.080-4.080c0-2.080 2.080-2.080 2.080-4.16 0 0 2-2 4.080-2 2 0 2-2.080 4.080-2.080s2.080 0 4.080-2.080c2.080 0 2.080 0 4.16 0 0 0 0 0 2 0h2.080c2.080 0 4.080 0 6.16 2.080l2.080 2.080c2 0 2 2 4.080 2l2.080 2.080c0 2.080 2 2.080 2 4.080 0 2.080 0 2.080 0 4.16 0 2 0 2 0 4.080 0 6.16 8.24 149.76-82.080 246.24-49.2 53.36-118.96 82.080-205.2 86.16v80c0 8.24-4.080 14.4-12.32 18.48-6.16 4.16-14.32 2.080-20.48-2l-205.2-153.92-4.080-4.080c0-2.080 0-2.080 0-4.16-2.080-2-2.080-2-2.080-4.080s0-2.080 0-4.080c0-2.080 0-2.080 0-4.16 0 0 0-2 2.080-2z" />
|
|
11
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="EmanualRestoreTrashRight" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="icons8-trashRight" d="M593.92 960c33.68 0 61.44-27.76 61.44-61.44v-40.96h204.8c7.36 0.080 14.24-3.76 18-10.16 3.68-6.4 3.68-14.24 0-20.64-3.76-6.4-10.64-10.24-18-10.16h-22.4l-31.12-350.4-38.48 28.88 28.64 321.52h-569.6l73.6-826.24c0.64-7.12 8.24-13.44 14.72-13.44h392.96c6.48 0 14.080 6.32 14.72 13.44l9.84 110.080c4.8 1.92 9.36 4.48 13.28 7.68l30.56 22.24-12.72-143.2c-2.56-28.64-26.96-51.2-55.68-51.2h-392.96c-28.72 0-53.12 22.56-55.68 51.2l-73.6 829.44h-22.4c-11.28-0.56-20.88 8.24-21.44 19.52s8.24 20.88 19.52 21.44c0.64 0 38.4 0 39.040 0 2.56 0.48 5.12 0.48 7.68 0h160v40.96c0 33.68 27.76 61.44 61.44 61.44zM409.6 898.56v-40.96h204.8v40.96c0 11.52-8.96 20.48-20.48 20.48h-163.84c-11.52 0-20.48-8.96-20.48-20.48zM403.2 750.32c4.24-4 6.64-9.68 6.4-15.6v-470.64c-22.32-40.4-34.48-82.080-40.96-118v588.64c-0.24 9.76 6.48 18.32 16 20.48 0.8 0.24 1.68 0.48 2.56 0.64 5.84 0.56 11.68-1.44 16-5.52zM526.080 750.32c4.24-4 6.64-9.68 6.4-15.6v-350.56c-14.48-7.44-28.080-16-40.96-25.52v376.080c-0.24 9.76 6.48 18.32 16 20.48 0.8 0.24 1.68 0.48 2.56 0.64 5.84 0.56 11.68-1.44 16-5.52zM532.48 58.88c0.080-7.36-3.76-14.24-10.16-18-6.4-3.68-14.24-3.68-20.64 0-6.4 3.76-10.24 10.64-10.16 18v27.36c6.48 17.76 18.48 39.28 40.96 58.64zM648.96 750.32c4.24-4 6.64-9.68 6.4-15.6v-243.040c-4.8-9.040-7.36-19.2-7.36-29.36v-42.96c-11.44-1.52-22.72-3.44-33.6-5.84v321.2c-0.24 9.76 6.48 18.32 16 20.48 0.8 0.24 1.68 0.48 2.56 0.64 5.84 0.56 11.68-1.44 16-5.52zM655.36 58.88c0.080-7.36-3.76-14.24-10.16-18-6.4-3.68-14.24-3.68-20.64 0-6.4 3.76-10.24 10.64-10.16 18v126.48c10.4 2.72 21.52 4.96 33.6 6.72v-34.8c0-10.32 2.64-20.64 7.36-29.76zM934.72 305.6c0 2.080 0 2.080 0 4.080 0 2.080 0 2.080 0 4.16 0 2 0 2-2.080 4.080 0 2 0 2-2 4.080l-2.080 2.080-2.080 2-204.72 153.6c-6.16 4.080-14.32 6.080-20.48 2-8.16-4.080-12.24-10.24-12.24-18.4v-79.84c-86-4.080-155.68-32.8-204.8-86-90.080-96.24-81.92-239.6-81.92-245.68 0-2.080 0-2.080 0-4.16 0-2 0-2 0-4.080 0-2 2.080-2 2.080-4.080l2.080-2.080c2-2 2-2 4.080-2l2-2.080c2.080 0 4.16 0 6.16-2h2.080c0 0 0 0 2 0 2.080 0 2.080 0 4.16 0 2 0 2 0 4.080 2 2 0 2 2.080 4.080 2.080s2.080 2 4.080 2c0 0 2.080 2.080 2.080 4.16 0 2 2 2 2 4.080 0 2 0 2 0 4.080s0 2.080 0 4.080c0 8.24 6.16 176.080 245.76 186.32v-77.76c0-8.24 4.080-14.32 10.16-18.48 6.16-4.080 14.4-2 20.48 2.080l204.8 149.44 2 2.080 2.080 2c0 2.080 2.080 2.080 2.080 4.16 2 0 4.080 2 4.080 2z" />
|
|
11
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="LibraryIcon" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="icons8-facebook-like" d="M471.040 898.56c-11.28 0-20.48-9.2-20.48-20.48v-158.72l-81.92-209.92v-430.080c8.48-23.84 34.72-40.96 61.44-40.96h389.12c45.2 0 81.92 36.72 81.92 81.92 0 16.88-5.36 32.4-14.080 45.44 31.92 11.2 55.040 41.76 55.040 77.44 0 20.080-7.2 38.24-19.2 52.48 23.76 14.32 39.68 40.64 39.68 70.4 0 20.080-7.2 38.24-19.2 52.48 23.76 14.32 39.68 40.64 39.68 70.4 0 45.2-36.72 81.92-81.92 81.92h-299.52c12.48 39.52 33.28 110.24 33.28 143.36 0 77.12-56.48 184.32-112 184.32zM61.44 570.88c-5.84 0-11.44-2.64-15.36-7.040s-5.84-10.16-5.12-16l61.44-491.52c1.28-10.24 10.16-17.92 20.48-17.92h184.32c11.28 0 20.48 9.12 20.48 20.48v491.52c0 11.28-9.2 20.48-20.48 20.48zM235.52 181.76c16.96 0 30.72-13.76 30.72-30.72s-13.76-30.72-30.72-30.72c-16.96 0-30.72 13.76-30.72 30.72s13.76 30.72 30.72 30.72z" />
|
|
11
|
-
<glyph unicode="" glyph-name="icons8-ok-hand" d="M535.024 909.568c-27.984-7.504-46.16-34.896-40.128-70.416 6.304-37.104 41.648-137.616 41.648-137.616l12.288-107.712-93.008 129.376c0 0-123.472 103.744-136.528 114.624-15.856 13.216-35.92 19.424-55.52 1.504-21.904-20.016-12.496-57.216 3.392-77.040 12.528-15.648 95.632-97.44 95.632-97.44l62.608-100.928c0 0-114.64-5.472-125.648-9.824-11.008-4.336-90.352-75.248-95.104-80.368-4.736-5.12-30.896-64.72-39.344-82.032-7.392-15.136-4.064-34.72 12.976-47.568 17.040-12.864 47.76-3.984 61.248 9.888 25.248 25.968 37.28 63.024 37.28 63.024l77.2 37.936 99.872-42.432c58.912-114.8-18-211.024-108.064-188.896l-47.744 10.48c-81.824 163.328-181.296 79.68-181.296 79.68s24.416-52.896 64.656-153.984c10.64-26.752 29.2-45.424 59.328-53.024s383.232-90.8 383.232-90.8l163.792 244.624-26.72 189.984 34.832 162.976 6.32 182.784c1.664 29.472-10.752 35.2-29.072 35.872-27.648 1.024-53.648-25.824-55.744-63.12l-14.224-115.408-36.896-111.984-26.208 171.984c0 0-62.72 155.2-69.024 174.096-4.352 13.024-13.76 27.728-36.032 21.76z" />
|
|
12
|
-
</font></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|