npmapps 1.0.25 → 1.0.27
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/PUBLISH.md +268 -0
- package/app/.codegraph/daemon.pid +6 -0
- package/app/.eslintrc.js +19 -0
- package/app/README.md +24 -0
- package/app/babel.config.js +5 -0
- package/app/devtool-windows-amd64.zip +0 -0
- package/app/docs/superpowers/plans/2026-05-29-quill-editor.md +836 -0
- package/app/docs/superpowers/specs/2026-05-29-quill-editor-design.md +210 -0
- package/app/docs/superpowers/specs/2026-06-06-lazy-cascader-design.md +400 -0
- package/app/jsconfig.json +19 -0
- package/app/package-lock.json +21347 -0
- package/app/package.json +63 -0
- package/app/postcss.config.js +10 -0
- package/app/public/favicon.ico +0 -0
- package/app/public/index.html +17 -0
- package/app/public//344/270/200/351/224/256/351/273/221/346/232/227.html +136 -0
- package/app/src/App.vue +110 -0
- package/app/src/assets/bpmn-camunda.jpg +0 -0
- package/app/src/assets/css/diagram.less +17 -0
- package/app/src/assets/icon/Icon.less +31 -0
- package/app/src/assets/icon/font/app-codes.css +26 -0
- package/app/src/assets/icon/font/app.eot +0 -0
- package/app/src/assets/icon/font/app.svg +60 -0
- package/app/src/assets/icon/font/app.ttf +0 -0
- package/app/src/assets/icon/font/app.woff +0 -0
- package/app/src/assets/icon/font/app.woff2 +0 -0
- package/app/src/assets/icon/font/config.json +248 -0
- package/app/src/assets/icon/font/source/raw/align-bottom-tool.svg +30 -0
- package/app/src/assets/icon/font/source/raw/align-horizontal-center-tool.svg +85 -0
- package/app/src/assets/icon/font/source/raw/align-left-tool.svg +84 -0
- package/app/src/assets/icon/font/source/raw/align-right-tool.svg +80 -0
- package/app/src/assets/icon/font/source/raw/align-top-tool.svg +84 -0
- package/app/src/assets/icon/font/source/raw/align-vertical-center-tool.svg +89 -0
- package/app/src/assets/icon/font/source/raw/distribute-horizontally-tool.svg +95 -0
- package/app/src/assets/icon/font/source/raw/distribute-vertically-tool.svg +99 -0
- package/app/src/assets/icon/font/source/raw/set-color-tool.svg +111 -0
- package/app/src/assets/icon/font/source/symbols/align-bottom-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/align-horizontal-center-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/align-left-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/align-right-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/align-top-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/align-vertical-center-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/distribute-horizontally-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/distribute-vertically-tool.svg +30 -0
- package/app/src/assets/icon/font/source/symbols/set-color-tool.svg +63 -0
- package/app/src/assets/logo.png +0 -0
- package/app/src/components/EllTable/README.md +70 -0
- package/app/src/components/EllTable/article.md +184 -0
- package/app/src/components/EllTable/index.js +213 -0
- package/app/src/components/FormulaEditor/FunctionSelector.vue +123 -0
- package/app/src/components/FormulaEditor/OperatorSelector.vue +184 -0
- package/app/src/components/FormulaEditor/ParameterSelector.vue +123 -0
- package/app/src/components/FormulaEditor/api.js +69 -0
- package/app/src/components/FormulaEditor/index.vue +435 -0
- package/app/src/components/HelloWorld.vue +58 -0
- package/app/src/components/PageHeader/index.vue +158 -0
- package/app/src/components/Splitter/README.md +144 -0
- package/app/src/components/Splitter/example.vue +88 -0
- package/app/src/components/Splitter/index.vue +203 -0
- package/app/src/components/diagram/ToolBar.vue +357 -0
- package/app/src/components/diagram/customTranslate/customTranslate.js +12 -0
- package/app/src/components/diagram/customTranslate/translationsGerman.js +241 -0
- package/app/src/components/diagram/index.vue +261 -0
- package/app/src/components/diagram/xmlData.js +29 -0
- package/app/src/directives/filldown.js +155 -0
- package/app/src/directives/filldownTable.js +291 -0
- package/app/src/main.js +40 -0
- package/app/src/router/index.js +63 -0
- package/app/src/store/index.js +23 -0
- package/app/src/utils/winBox.js +23 -0
- package/app/src/views/Extend/A.vue +12 -0
- package/app/src/views/Extend/B.vue +10 -0
- package/app/src/views/Extend/MagicalComponentsForELFormItem.vue +87 -0
- package/app/src/views/Extend/index.vue +59 -0
- package/app/src/views/Extend/tableMouseHorizontalWheel.vue +193 -0
- package/app/src/views/Home.vue +37 -0
- package/app/src/views/RouterJump.vue +155 -0
- package/app/src/views/css.vue +57 -0
- package/app/src/views/cssComponents/EllipsisText.vue +83 -0
- package/app/src/views/cssComponents/HoverCard.vue +79 -0
- package/app/src/views/cssComponents/TableHover.vue +140 -0
- package/app/src/views/cssComponents/inputSlo.vue +52 -0
- package/app/src/views/cssComponents/tableFixed.vue +158 -0
- package/app/src/views/echarts/echart-dome.vue +82 -0
- package/app/src/views/echarts/index.vue +118 -0
- package/app/src/views/echarts/pei3d.vue +667 -0
- package/app/src/views/element/bpmn/index.vue +18 -0
- package/app/src/views/element/components/attendanceCycle/index.vue +131 -0
- package/app/src/views/element/components/attendanceGroup/index.vue +147 -0
- package/app/src/views/element/components/attendancePersonnel/index.vue +158 -0
- package/app/src/views/element/components/companyCalendar/index.vue +147 -0
- package/app/src/views/element/components/shift/index.vue +147 -0
- package/app/src/views/element/components/shiftRotationSystem/index.vue +147 -0
- package/app/src/views/element/elTableJsx/columnManagement.vue +340 -0
- package/app/src/views/element/elTableJsx/dialogInput.vue +71 -0
- package/app/src/views/element/elTableJsx/elTableJsx.vue +1826 -0
- package/app/src/views/element/elTableJsx/formTable.vue +598 -0
- package/app/src/views/element/elTableJsx/index.vue +29 -0
- package/app/src/views/element/elTableJsx/simpleTable.vue +192 -0
- package/app/src/views/element/elTableJsx.zip +0 -0
- package/app/src/views/element/index.vue +44 -0
- package/app/src/views/element/lazyCascader/LazyCascader.vue +302 -0
- package/app/src/views/element/lazyCascader/data.js +205 -0
- package/app/src/views/element/lazyCascader/index.vue +315 -0
- package/app/src/views/element/quillEditor/README.md +163 -0
- package/app/src/views/element/quillEditor/example.vue +314 -0
- package/app/src/views/element/quillEditor/index.vue +409 -0
- package/app/src/views/element/quillEditor/toolbar.js +122 -0
- package/app/vue.config.js +15 -0
- package/package.json +1 -1
- package/app/wujie-vue3-child/.claude/settings.local.json +0 -8
- package/app/wujie-vue3-child/.vscode/extensions.json +0 -3
- package/app/wujie-vue3-child/PROJECT_MEMORY.md +0 -427
- package/app/wujie-vue3-child/README.md +0 -5
- package/app/wujie-vue3-child/index.html +0 -13
- package/app/wujie-vue3-child/package-lock.json +0 -5744
- package/app/wujie-vue3-child/package.json +0 -28
- package/app/wujie-vue3-child/public/vite.svg +0 -1
- package/app/wujie-vue3-child/src/App.vue +0 -130
- package/app/wujie-vue3-child/src/assets/vue.svg +0 -1
- package/app/wujie-vue3-child/src/components/HelloWorld.vue +0 -43
- package/app/wujie-vue3-child/src/components/SmartAnchorTabs/index.jsx +0 -224
- package/app/wujie-vue3-child/src/components/SmartAnchorTabs/style.css +0 -154
- package/app/wujie-vue3-child/src/components/tags-view.vue +0 -193
- package/app/wujie-vue3-child/src/components/tags-view1.vue +0 -131
- package/app/wujie-vue3-child/src/directives/aiLoading.js +0 -182
- package/app/wujie-vue3-child/src/hooks/useClickOutside.js +0 -11
- package/app/wujie-vue3-child/src/hooks/useTableDragSort.js +0 -28
- package/app/wujie-vue3-child/src/main.js +0 -18
- package/app/wujie-vue3-child/src/router/index.js +0 -104
- package/app/wujie-vue3-child/src/store/tagsViewStroe.js +0 -34
- package/app/wujie-vue3-child/src/style.css +0 -171
- package/app/wujie-vue3-child/src/views/aiCoach/collapseExpand/index.jsx +0 -108
- package/app/wujie-vue3-child/src/views/aiCoach/collapseExpand/index.module.scss +0 -97
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/README.md +0 -836
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/REFLEX_EXAMPLES.md +0 -728
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentPersonnelSelector.jsx +0 -687
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentPersonnelSelector.module.scss +0 -560
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelector.jsx +0 -570
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelector.module.scss +0 -330
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelectorV2.jsx +0 -378
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelectorV2.module.scss +0 -228
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/OptionsSelector.jsx +0 -399
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/OptionsSelector.module.scss +0 -252
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PersonnelSelector.jsx +0 -585
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PersonnelSelector.module.scss +0 -331
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PopoverSelector.jsx +0 -392
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PopoverSelector.module.scss +0 -39
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/README.md +0 -248
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/SelectorTrigger.jsx +0 -194
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/index.jsx +0 -1459
- package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/mockData.js +0 -301
- package/app/wujie-vue3-child/src/views/aiCoach/dialogueSegment/index.jsx +0 -182
- package/app/wujie-vue3-child/src/views/aiCoach/dialogueSegment/index.module.scss +0 -28
- package/app/wujie-vue3-child/src/views/aiCoach/index.jsx +0 -375
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ChartsPanel/index.jsx +0 -121
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ChartsPanel/index.module.scss +0 -76
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/DonutChart/index.jsx +0 -104
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/PracticeTable/index.jsx +0 -75
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/PracticeTable/index.module.scss +0 -12
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankBarChart/index.jsx +0 -62
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankBarChart/index.module.scss +0 -43
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingGroup/index.jsx +0 -29
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingGroup/index.module.scss +0 -5
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingList/index.jsx +0 -58
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingList/index.module.scss +0 -85
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ScriptStatsPanel/index.jsx +0 -92
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ScriptStatsPanel/index.module.scss +0 -56
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/StatCardsRow/index.jsx +0 -40
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/StatCardsRow/index.module.scss +0 -53
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/echarts/EchartsDonut.jsx +0 -106
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/echarts/EchartsRankBar.jsx +0 -132
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/index.jsx +0 -176
- package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/index.module.scss +0 -96
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/CoachReport/index.jsx +0 -162
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/CoachReport/index.module.scss +0 -16
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ComprehensiveEvaluation/index.jsx +0 -29
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ComprehensiveEvaluation/index.module.scss +0 -25
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueBubble/index.jsx +0 -106
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueBubble/index.module.scss +0 -164
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueRecord/index.jsx +0 -182
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueRecord/index.module.scss +0 -203
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionDetail/index.jsx +0 -145
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionDetail/index.module.scss +0 -126
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionScores/index.jsx +0 -67
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionScores/index.module.scss +0 -105
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ReportHeader/index.jsx +0 -81
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ReportHeader/index.module.scss +0 -47
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/RoleInfo/index.jsx +0 -64
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/RoleInfo/index.module.scss +0 -85
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ScoreBadge/index.jsx +0 -39
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ScoreBadge/index.module.scss +0 -44
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/SubDimensionItem/index.jsx +0 -83
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/SubDimensionItem/index.module.scss +0 -101
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/index.jsx +0 -50
- package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/index.module.scss +0 -25
- package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/index.jsx +0 -196
- package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/index.module.scss +0 -41
- package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/inputColumn/index.jsx +0 -183
- package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/inputColumn/index.module.scss +0 -115
- package/app/wujie-vue3-child/src/views/child-to-parent.vue +0 -117
- package/app/wujie-vue3-child/src/views/home.vue +0 -53
- package/app/wujie-vue3-child/src/views/jsx/btnSelect/btnSelect.vue +0 -169
- package/app/wujie-vue3-child/src/views/jsx/btnSelect/index.vue +0 -69
- package/app/wujie-vue3-child/src/views/jsx/com.vue +0 -44
- package/app/wujie-vue3-child/src/views/jsx/dialog.jsx +0 -66
- package/app/wujie-vue3-child/src/views/jsx/index.vue +0 -72
- package/app/wujie-vue3-child/src/views/jsx/props.vue +0 -33
- package/app/wujie-vue3-child/src/views/parent-to-child.vue +0 -225
- package/app/wujie-vue3-child/src/views/phone-code.vue +0 -318
- package/app/wujie-vue3-child/src/views/router-jump.vue +0 -123
- package/app/wujie-vue3-child/src/views/test.vue +0 -192
- package/app/wujie-vue3-child/vite.config.js +0 -15
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "app",
|
|
3
|
+
"css_prefix_text": "app-icon-",
|
|
4
|
+
"css_use_suffix": false,
|
|
5
|
+
"hinting": true,
|
|
6
|
+
"units_per_em": 1000,
|
|
7
|
+
"ascent": 850,
|
|
8
|
+
"glyphs": [
|
|
9
|
+
{
|
|
10
|
+
"uid": "e3738aef5412e284050a33839d2a2908",
|
|
11
|
+
"css": "save",
|
|
12
|
+
"code": 62498,
|
|
13
|
+
"src": "custom_icons",
|
|
14
|
+
"selected": true,
|
|
15
|
+
"svg": {
|
|
16
|
+
"path": "M557.9 199.9H641.9V351.6H557.9V199.9ZM748 97.7H109.4V902.3H890.6V240.2L748 97.7ZM293.9 156.3H691.4V394.5H293.9V156.3ZM778 838.5H222V526.7H778V838.5ZM719.7 618.2H280.3V579.1H719.7V618.2ZM719.7 663.1H280.3V702.1H719.7V663.1ZM719.7 747.1H280.3V786.1H719.7V747.1Z",
|
|
17
|
+
"width": 1000
|
|
18
|
+
},
|
|
19
|
+
"search": [
|
|
20
|
+
"save"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"uid": "12dd47f54e3efd18d1e8ac0240f66c0a",
|
|
25
|
+
"css": "save-as",
|
|
26
|
+
"code": 62499,
|
|
27
|
+
"src": "custom_icons",
|
|
28
|
+
"selected": true,
|
|
29
|
+
"svg": {
|
|
30
|
+
"path": "M748 97.7H109.4V902.3H890.6V240.2L748 97.7ZM643.4 211.6V355.5H563.3V211.6H643.4ZM812.4 824.2H187.6L187.5 175.8H313V402.3H696.8V175.8H715.7L812.4 272.6V824.2ZM726.8 761.1H273.2V722H726.8V761.1ZM726.8 641.9H273.2V681H726.8V641.9ZM726.8 561.8H273.2V600.9H726.8V561.8Z",
|
|
31
|
+
"width": 1000
|
|
32
|
+
},
|
|
33
|
+
"search": [
|
|
34
|
+
"save-as"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"uid": "5d2d07f112b8de19f2c0dbfec3e42c05",
|
|
39
|
+
"css": "loading",
|
|
40
|
+
"code": 62392,
|
|
41
|
+
"src": "fontelico"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"uid": "381da2c2f7fd51f8de877c044d7f439d",
|
|
45
|
+
"css": "picture",
|
|
46
|
+
"code": 62396,
|
|
47
|
+
"src": "fontawesome"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"uid": "1b5a5d7b7e3c71437f5a26befdd045ed",
|
|
51
|
+
"css": "new",
|
|
52
|
+
"code": 62397,
|
|
53
|
+
"src": "fontawesome"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"uid": "6533bdc16ab201eb3f3b27ce989cab33",
|
|
57
|
+
"css": "open",
|
|
58
|
+
"code": 62398,
|
|
59
|
+
"src": "fontawesome"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"uid": "c819c6225685bae2eed1b8da13e629fa",
|
|
63
|
+
"css": "properties",
|
|
64
|
+
"code": 62402,
|
|
65
|
+
"src": "fontawesome"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"uid": "2cfb3f2b46b34a1790aec0aa846297b6",
|
|
69
|
+
"css": "menu",
|
|
70
|
+
"code": 62393,
|
|
71
|
+
"src": "entypo"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"uid": "70370693ada58ef0a60fa0984fe8d52a",
|
|
75
|
+
"css": "plus",
|
|
76
|
+
"code": 62394,
|
|
77
|
+
"src": "entypo"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"uid": "1256e3054823e304d7e452a589cf8bb8",
|
|
81
|
+
"css": "minus",
|
|
82
|
+
"code": 62395,
|
|
83
|
+
"src": "entypo"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"uid": "465bb89b6f204234e5787c326b4ae54c",
|
|
87
|
+
"css": "undo",
|
|
88
|
+
"code": 62399,
|
|
89
|
+
"src": "entypo"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"uid": "bb46b15cb78cc4cc05d3d715d522ac4d",
|
|
93
|
+
"css": "redo",
|
|
94
|
+
"code": 62400,
|
|
95
|
+
"src": "entypo"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"uid": "3eadc3e443cf1c7e17f1b44d21254c00",
|
|
99
|
+
"css": "size-reset",
|
|
100
|
+
"code": 62401,
|
|
101
|
+
"src": "entypo"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"uid": "5a895c3699e25c9f62e93f8b64b95cb9",
|
|
105
|
+
"css": "align-bottom-tool",
|
|
106
|
+
"code": 59392,
|
|
107
|
+
"src": "custom_icons",
|
|
108
|
+
"selected": true,
|
|
109
|
+
"svg": {
|
|
110
|
+
"path": "M0 144.5L0 714.8 0 786.1 285.2 786.1 356.4 786.1 641.6 786.1 712.9 786.1 998 786.1 998 714.8 998 144.5 962.4 144.5 712.9 144.5 712.9 714.8 641.6 714.8 641.6 358.4 606 358.4 356.4 358.4 356.4 714.8 285.2 714.8 285.2 144.5 249.5 144.5 0 144.5ZM71.3 215.8L213.9 215.8 213.9 714.8 71.3 714.8 71.3 215.8ZM784.2 215.8L926.8 215.8 926.8 714.8 784.2 714.8 784.2 215.8ZM427.7 429.7L570.3 429.7 570.3 714.8 427.7 714.8 427.7 429.7Z",
|
|
111
|
+
"width": 1000
|
|
112
|
+
},
|
|
113
|
+
"search": [
|
|
114
|
+
"align-bottom-tool"
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"uid": "1538228ddbdd447333b02843885bce50",
|
|
119
|
+
"css": "align-left-tool",
|
|
120
|
+
"code": 59393,
|
|
121
|
+
"src": "custom_icons",
|
|
122
|
+
"selected": true,
|
|
123
|
+
"svg": {
|
|
124
|
+
"path": "M142.6 2L142.6 287.1 142.6 358.4 142.6 643.6 142.6 714.8 142.6 1000 213.9 1000 784.2 1000 784.2 964.4 784.2 714.8 213.9 714.8 213.9 643.6 570.3 643.6 570.3 607.9 570.3 358.4 213.9 358.4 213.9 287.1 784.2 287.1 784.2 251.5 784.2 2 213.9 2 142.6 2ZM213.9 73.2L712.9 73.2 712.9 215.8 213.9 215.8 213.9 73.2ZM213.9 429.7L499 429.7 499 572.3 213.9 572.3 213.9 429.7ZM213.9 786.1L712.9 786.1 712.9 928.7 213.9 928.7 213.9 786.1Z",
|
|
125
|
+
"width": 1000
|
|
126
|
+
},
|
|
127
|
+
"search": [
|
|
128
|
+
"align-left-tool"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"uid": "a5d5413bc1a6df98026773a871651b9f",
|
|
133
|
+
"css": "align-center-tool",
|
|
134
|
+
"code": 59394,
|
|
135
|
+
"src": "custom_icons",
|
|
136
|
+
"selected": true,
|
|
137
|
+
"svg": {
|
|
138
|
+
"path": "M142.6 2L142.6 287.1 178.2 287.1 463.4 287.1 463.4 358.4 285.2 358.4 285.2 643.6 320.8 643.6 466.3 643.6 466.3 714.8 142.6 714.8 142.6 1000 178.2 1000 855.5 1000 855.5 714.8 537.6 714.8 537.6 643.6 712.9 643.6 712.9 358.4 534.7 358.4 534.7 287.1 855.5 287.1 855.5 2 142.6 2ZM213.9 73.2L784.2 73.2 784.2 215.8 213.9 215.8 213.9 73.2ZM356.4 429.7L641.6 429.7 641.6 572.3 356.4 572.3 356.4 429.7ZM213.9 786.1L784.2 786.1 784.2 928.7 213.9 928.7 213.9 786.1Z",
|
|
139
|
+
"width": 1000
|
|
140
|
+
},
|
|
141
|
+
"search": [
|
|
142
|
+
"align-center-tool"
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"uid": "e60dd97fccc91dc3e44b7c69afc112ec",
|
|
147
|
+
"css": "align-right-tool",
|
|
148
|
+
"code": 59395,
|
|
149
|
+
"src": "custom_icons",
|
|
150
|
+
"selected": true,
|
|
151
|
+
"svg": {
|
|
152
|
+
"path": "M213.9 2L213.9 287.1 249.5 287.1 784.2 287.1 784.2 358.4 427.7 358.4 427.7 643.6 463.4 643.6 784.2 643.6 784.2 714.8 213.9 714.8 213.9 1000 249.5 1000 784.2 1000 855.5 1000 855.5 714.8 855.5 643.6 855.5 358.4 855.5 287.1 855.5 2 784.2 2 213.9 2ZM285.2 73.2L784.2 73.2 784.2 215.8 285.2 215.8 285.2 73.2ZM499 429.7L784.2 429.7 784.2 572.3 499 572.3 499 429.7ZM285.2 786.1L784.2 786.1 784.2 928.7 285.2 928.7 285.2 786.1Z",
|
|
153
|
+
"width": 1000
|
|
154
|
+
},
|
|
155
|
+
"search": [
|
|
156
|
+
"align-right-tool"
|
|
157
|
+
]
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"uid": "8a2e21eb93ac1edc59e4610e94a61b97",
|
|
161
|
+
"css": "align-top-tool",
|
|
162
|
+
"code": 59396,
|
|
163
|
+
"src": "custom_icons",
|
|
164
|
+
"selected": true,
|
|
165
|
+
"svg": {
|
|
166
|
+
"path": "M0 144.5L0 215.8 0 786.1 285.2 786.1 285.2 750.5 285.2 215.8 356.4 215.8 356.4 572.3 641.6 572.3 641.6 536.6 641.6 215.8 712.9 215.8 712.9 786.1 998 786.1 998 750.5 998 215.8 998 144.5 712.9 144.5 0 144.5ZM71.3 215.8L213.9 215.8 213.9 714.8 71.3 714.8 71.3 215.8ZM427.7 215.8L570.3 215.8 570.3 501 427.7 501 427.7 215.8ZM784.2 215.8L926.8 215.8 926.8 714.8 784.2 714.8 784.2 215.8Z",
|
|
167
|
+
"width": 1000
|
|
168
|
+
},
|
|
169
|
+
"search": [
|
|
170
|
+
"align-top-tool"
|
|
171
|
+
]
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"uid": "6714e0ed1689a63cf0b2c9d4e4142a95",
|
|
175
|
+
"css": "distribute-horizontal-tool",
|
|
176
|
+
"code": 59398,
|
|
177
|
+
"src": "custom_icons",
|
|
178
|
+
"selected": true,
|
|
179
|
+
"svg": {
|
|
180
|
+
"path": "M213.9 144.5L213.9 215.8 213.9 287.1 0 287.1 0 322.8 0 857.4 285.2 857.4 285.2 287.1 285.2 215.8 463.4 215.8 463.4 287.1 356.4 287.1 356.4 322.8 356.4 714.8 641.6 714.8 641.6 287.1 534.7 287.1 534.7 215.8 712.9 215.8 712.9 287.1 712.9 322.8 712.9 857.4 998 857.4 998 287.1 784.2 287.1 784.2 215.8 784.2 144.5 213.9 144.5ZM71.3 358.4L213.9 358.4 213.9 786.1 71.3 786.1 71.3 358.4ZM427.7 358.4L570.3 358.4 570.3 643.6 427.7 643.6 427.7 358.4ZM784.2 358.4L926.8 358.4 926.8 786.1 784.2 786.1 784.2 358.4Z",
|
|
181
|
+
"width": 1000
|
|
182
|
+
},
|
|
183
|
+
"search": [
|
|
184
|
+
"distribute-horizontal-tool"
|
|
185
|
+
]
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"uid": "feed67f29a81ace2bd77f4093caf3e3a",
|
|
189
|
+
"css": "distribute-vertical-tool",
|
|
190
|
+
"code": 59399,
|
|
191
|
+
"src": "custom_icons",
|
|
192
|
+
"selected": true,
|
|
193
|
+
"svg": {
|
|
194
|
+
"path": "M285.2 2L285.2 215.8 213.9 215.8 142.6 215.8 142.6 786.1 213.9 786.1 285.2 786.1 285.2 1000 320.8 1000 855.5 1000 855.5 714.8 285.2 714.8 213.9 714.8 213.9 536.6 285.2 536.6 285.2 643.6 320.8 643.6 712.9 643.6 712.9 358.4 285.2 358.4 285.2 465.3 213.9 465.3 213.9 287.1 285.2 287.1 320.8 287.1 855.5 287.1 855.5 2 285.2 2ZM356.4 73.2L784.2 73.2 784.2 215.8 356.4 215.8 356.4 73.2ZM356.4 429.7L641.6 429.7 641.6 572.3 356.4 572.3 356.4 429.7ZM356.4 786.1L784.2 786.1 784.2 928.7 356.4 928.7 356.4 786.1Z",
|
|
195
|
+
"width": 1000
|
|
196
|
+
},
|
|
197
|
+
"search": [
|
|
198
|
+
"distribute-vertical-tool"
|
|
199
|
+
]
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"uid": "a640657022f2b745c502dc7082f634d6",
|
|
203
|
+
"css": "align-middle-tool",
|
|
204
|
+
"code": 59400,
|
|
205
|
+
"src": "custom_icons",
|
|
206
|
+
"selected": true,
|
|
207
|
+
"svg": {
|
|
208
|
+
"path": "M0 144.5L0 180.2 0 857.4 285.2 857.4 285.2 539.5 356.4 539.5 356.4 714.8 641.6 714.8 641.6 536.6 712.9 536.6 712.9 857.4 998 857.4 998 144.5 712.9 144.5 712.9 180.2 712.9 465.3 641.6 465.3 641.6 287.1 356.4 287.1 356.4 322.8 356.4 468.2 285.2 468.2 285.2 144.5 0 144.5ZM71.3 215.8L213.9 215.8 213.9 786.1 71.3 786.1 71.3 215.8ZM784.2 215.8L926.8 215.8 926.8 786.1 784.2 786.1 784.2 215.8ZM427.7 358.4L570.3 358.4 570.3 643.6 427.7 643.6 427.7 358.4Z",
|
|
209
|
+
"width": 1000
|
|
210
|
+
},
|
|
211
|
+
"search": [
|
|
212
|
+
"align-middle-tool"
|
|
213
|
+
]
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"uid": "21c9ab9c1830ebb75f60c43fd3f1977d",
|
|
217
|
+
"css": "set-color-tool",
|
|
218
|
+
"code": 59403,
|
|
219
|
+
"src": "custom_icons",
|
|
220
|
+
"selected": true,
|
|
221
|
+
"svg": {
|
|
222
|
+
"path": "M837.8 13.9L627.8 223.9 570.6 281 466.2 251.6 357.8 221.1 356.2 223.3 355.9 223 268.5 310.5 477.5 519.5 686.5 728.6 774 641.1 773.8 640.9 775.9 639.2 745.4 530.9 718.3 434.4 778.3 374.4 988.3 164.4 837.8 13.9ZM206.4 373.4L11.7 568 220.8 777.1 429.8 986.1 624.4 791.5 415.4 582.4 206.4 373.4Z",
|
|
223
|
+
"width": 1000
|
|
224
|
+
},
|
|
225
|
+
"search": [
|
|
226
|
+
"set-color-tool"
|
|
227
|
+
]
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"uid": "c62cbc7fa604e32cc19731a3bb29be79",
|
|
231
|
+
"css": "map",
|
|
232
|
+
"code": 62072,
|
|
233
|
+
"src": "fontawesome"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"uid": "eeec3208c90b7b48e804919d0d2d4a41",
|
|
237
|
+
"css": "deploy",
|
|
238
|
+
"code": 59397,
|
|
239
|
+
"src": "fontawesome"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"uid": "108c8ac13badc00ce66da014436e6eb1",
|
|
243
|
+
"css": "minimize",
|
|
244
|
+
"code": 59402,
|
|
245
|
+
"src": "entypo"
|
|
246
|
+
}
|
|
247
|
+
]
|
|
248
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
width="2048"
|
|
9
|
+
height="2048"
|
|
10
|
+
id="svg3891"
|
|
11
|
+
version="1.1">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs3893" />
|
|
14
|
+
<metadata
|
|
15
|
+
id="metadata3896">
|
|
16
|
+
<rdf:RDF>
|
|
17
|
+
<cc:Work
|
|
18
|
+
rdf:about="">
|
|
19
|
+
<dc:format>image/svg+xml</dc:format>
|
|
20
|
+
<dc:type
|
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
22
|
+
<dc:title></dc:title>
|
|
23
|
+
</cc:Work>
|
|
24
|
+
</rdf:RDF>
|
|
25
|
+
</metadata>
|
|
26
|
+
<path
|
|
27
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
28
|
+
d="M 0 442 L 0 515 L 0 1610 L 0 1756 L 584 1756 L 2044 1756 L 2044 1610 L 2044 442 L 1460 442 L 1460 515 L 1460 1610 L 1314 1610 L 1314 880 L 730 880 L 730 953 L 730 1610 L 584 1610 L 584 442 L 0 442 z M 146 588 L 438 588 L 438 1610 L 146 1610 L 146 588 z M 1606 588 L 1898 588 L 1898 1610 L 1606 1610 L 1606 588 z M 876 1026 L 1168 1026 L 1168 1610 L 876 1610 L 876 1026 z "
|
|
29
|
+
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#282828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
version="1.1"
|
|
11
|
+
id="svg3891"
|
|
12
|
+
height="2048"
|
|
13
|
+
width="2048"
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
|
+
sodipodi:docname="align-horizontal-center-tool.svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
pagecolor="#ffffff"
|
|
18
|
+
bordercolor="#666666"
|
|
19
|
+
borderopacity="1"
|
|
20
|
+
objecttolerance="10"
|
|
21
|
+
gridtolerance="10"
|
|
22
|
+
guidetolerance="10"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pageshadow="2"
|
|
25
|
+
inkscape:window-width="1600"
|
|
26
|
+
inkscape:window-height="847"
|
|
27
|
+
id="namedview8"
|
|
28
|
+
showgrid="true"
|
|
29
|
+
inkscape:snap-bbox="true"
|
|
30
|
+
inkscape:bbox-paths="true"
|
|
31
|
+
inkscape:snap-bbox-edge-midpoints="true"
|
|
32
|
+
inkscape:bbox-nodes="true"
|
|
33
|
+
inkscape:snap-bbox-midpoints="false"
|
|
34
|
+
inkscape:zoom="0.23046875"
|
|
35
|
+
inkscape:cx="444.15067"
|
|
36
|
+
inkscape:cy="1024"
|
|
37
|
+
inkscape:window-x="-8"
|
|
38
|
+
inkscape:window-y="-8"
|
|
39
|
+
inkscape:window-maximized="1"
|
|
40
|
+
inkscape:current-layer="svg3891">
|
|
41
|
+
<inkscape:grid
|
|
42
|
+
type="xygrid"
|
|
43
|
+
id="grid4137"
|
|
44
|
+
empspacing="146" />
|
|
45
|
+
</sodipodi:namedview>
|
|
46
|
+
<defs
|
|
47
|
+
id="defs3893" />
|
|
48
|
+
<metadata
|
|
49
|
+
id="metadata3896">
|
|
50
|
+
<rdf:RDF>
|
|
51
|
+
<cc:Work
|
|
52
|
+
rdf:about="">
|
|
53
|
+
<dc:format>image/svg+xml</dc:format>
|
|
54
|
+
<dc:type
|
|
55
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
56
|
+
<dc:title />
|
|
57
|
+
</cc:Work>
|
|
58
|
+
</rdf:RDF>
|
|
59
|
+
</metadata>
|
|
60
|
+
<path
|
|
61
|
+
inkscape:connector-curvature="0"
|
|
62
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
63
|
+
d="m 1027.9727,1318 c 0,146 0,146 0,146"
|
|
64
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
65
|
+
<path
|
|
66
|
+
id="rect4338-7-82-22-4"
|
|
67
|
+
d="M 364.99999,515 1679,515 l 0,-437.999997 -1314.00001,0 0,437.999997 z"
|
|
68
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
69
|
+
inkscape:connector-curvature="0" />
|
|
70
|
+
<path
|
|
71
|
+
id="rect4338-7-82-22-4-9"
|
|
72
|
+
d="m 657,1245 730,0 0,-438 -730,0 0,438 z"
|
|
73
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
74
|
+
inkscape:connector-curvature="0" />
|
|
75
|
+
<path
|
|
76
|
+
inkscape:connector-curvature="0"
|
|
77
|
+
id="path4363-4-2-8-5-8-0-8-4"
|
|
78
|
+
d="m 1022,588 c 0,145.99998 0,145.99998 0,145.99998"
|
|
79
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
80
|
+
<path
|
|
81
|
+
id="rect4338-7-82-22-4-7"
|
|
82
|
+
d="m 365,1975 1314,0 0,-438 -1314,0 0,438 z"
|
|
83
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
84
|
+
inkscape:connector-curvature="0" />
|
|
85
|
+
</svg>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
version="1.1"
|
|
11
|
+
id="svg3891"
|
|
12
|
+
height="2048"
|
|
13
|
+
width="2048"
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
|
+
sodipodi:docname="align-left-tool.svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
pagecolor="#ffffff"
|
|
18
|
+
bordercolor="#666666"
|
|
19
|
+
borderopacity="1"
|
|
20
|
+
objecttolerance="10"
|
|
21
|
+
gridtolerance="10"
|
|
22
|
+
guidetolerance="10"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pageshadow="2"
|
|
25
|
+
inkscape:window-width="1600"
|
|
26
|
+
inkscape:window-height="847"
|
|
27
|
+
id="namedview8"
|
|
28
|
+
showgrid="true"
|
|
29
|
+
inkscape:snap-bbox="true"
|
|
30
|
+
inkscape:bbox-paths="true"
|
|
31
|
+
inkscape:snap-bbox-edge-midpoints="true"
|
|
32
|
+
inkscape:bbox-nodes="true"
|
|
33
|
+
inkscape:snap-bbox-midpoints="false"
|
|
34
|
+
inkscape:zoom="0.32593203"
|
|
35
|
+
inkscape:cx="944.25494"
|
|
36
|
+
inkscape:cy="1024"
|
|
37
|
+
inkscape:window-x="-8"
|
|
38
|
+
inkscape:window-y="-8"
|
|
39
|
+
inkscape:window-maximized="1"
|
|
40
|
+
inkscape:current-layer="svg3891">
|
|
41
|
+
<inkscape:grid
|
|
42
|
+
type="xygrid"
|
|
43
|
+
id="grid4137"
|
|
44
|
+
empspacing="146" />
|
|
45
|
+
</sodipodi:namedview>
|
|
46
|
+
<defs
|
|
47
|
+
id="defs3893" />
|
|
48
|
+
<metadata
|
|
49
|
+
id="metadata3896">
|
|
50
|
+
<rdf:RDF>
|
|
51
|
+
<cc:Work
|
|
52
|
+
rdf:about="">
|
|
53
|
+
<dc:format>image/svg+xml</dc:format>
|
|
54
|
+
<dc:type
|
|
55
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
56
|
+
<dc:title></dc:title>
|
|
57
|
+
</cc:Work>
|
|
58
|
+
</rdf:RDF>
|
|
59
|
+
</metadata>
|
|
60
|
+
<g
|
|
61
|
+
id="g4158"
|
|
62
|
+
transform="matrix(0,1,-1,0,1902,4.000047)">
|
|
63
|
+
<path
|
|
64
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
65
|
+
d="M -4.695944e-5,1537 C 2044,1537 2044,1537 2044,1537"
|
|
66
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
67
|
+
inkscape:connector-curvature="0" />
|
|
68
|
+
<path
|
|
69
|
+
inkscape:connector-curvature="0"
|
|
70
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
71
|
+
d="m 511.00001,368.99999 0,1168.00001 -438.000008,0 0,-1168.00001 438.000008,0 z"
|
|
72
|
+
id="rect4338-7-82-22-4" />
|
|
73
|
+
<path
|
|
74
|
+
inkscape:connector-curvature="0"
|
|
75
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
76
|
+
d="m 1241,806.99998 0,730.00002 -437.99997,0 0,-730.00002 437.99997,0 z"
|
|
77
|
+
id="rect4338-7-82-22-4-9" />
|
|
78
|
+
<path
|
|
79
|
+
inkscape:connector-curvature="0"
|
|
80
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
81
|
+
d="m 1971,369 0,1168 -438,0 0,-1168 438,0 z"
|
|
82
|
+
id="rect4338-7-82-22-4-4" />
|
|
83
|
+
</g>
|
|
84
|
+
</svg>
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
version="1.1"
|
|
11
|
+
id="svg3891"
|
|
12
|
+
height="2048"
|
|
13
|
+
width="2048"
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
|
+
sodipodi:docname="align-right-tool.svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
pagecolor="#ffffff"
|
|
18
|
+
bordercolor="#666666"
|
|
19
|
+
borderopacity="1"
|
|
20
|
+
objecttolerance="10"
|
|
21
|
+
gridtolerance="10"
|
|
22
|
+
guidetolerance="10"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pageshadow="2"
|
|
25
|
+
inkscape:window-width="1600"
|
|
26
|
+
inkscape:window-height="847"
|
|
27
|
+
id="namedview8"
|
|
28
|
+
showgrid="true"
|
|
29
|
+
inkscape:snap-bbox="true"
|
|
30
|
+
inkscape:bbox-paths="true"
|
|
31
|
+
inkscape:snap-bbox-edge-midpoints="true"
|
|
32
|
+
inkscape:bbox-nodes="true"
|
|
33
|
+
inkscape:snap-bbox-midpoints="false"
|
|
34
|
+
inkscape:zoom="0.32593203"
|
|
35
|
+
inkscape:cx="444.15067"
|
|
36
|
+
inkscape:cy="1024"
|
|
37
|
+
inkscape:window-x="-8"
|
|
38
|
+
inkscape:window-y="-8"
|
|
39
|
+
inkscape:window-maximized="1"
|
|
40
|
+
inkscape:current-layer="svg3891">
|
|
41
|
+
<inkscape:grid
|
|
42
|
+
type="xygrid"
|
|
43
|
+
id="grid4137"
|
|
44
|
+
empspacing="146" />
|
|
45
|
+
</sodipodi:namedview>
|
|
46
|
+
<defs
|
|
47
|
+
id="defs3893" />
|
|
48
|
+
<metadata
|
|
49
|
+
id="metadata3896">
|
|
50
|
+
<rdf:RDF>
|
|
51
|
+
<cc:Work
|
|
52
|
+
rdf:about="">
|
|
53
|
+
<dc:format>image/svg+xml</dc:format>
|
|
54
|
+
<dc:type
|
|
55
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
56
|
+
<dc:title />
|
|
57
|
+
</cc:Work>
|
|
58
|
+
</rdf:RDF>
|
|
59
|
+
</metadata>
|
|
60
|
+
<path
|
|
61
|
+
inkscape:connector-curvature="0"
|
|
62
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
63
|
+
d="m 1679,4 c 0,2044 0,2044 0,2044"
|
|
64
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
|
65
|
+
<path
|
|
66
|
+
id="rect4338-7-82-22-4"
|
|
67
|
+
d="m 510.99998,515.00006 1168.00002,0 0,-438.000011 -1168.00002,0 0,438.000011 z"
|
|
68
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
69
|
+
inkscape:connector-curvature="0" />
|
|
70
|
+
<path
|
|
71
|
+
id="rect4338-7-82-22-4-9"
|
|
72
|
+
d="m 948.99997,1245 730.00003,0 0,-437.99992 -730.00003,0 0,437.99992 z"
|
|
73
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
74
|
+
inkscape:connector-curvature="0" />
|
|
75
|
+
<path
|
|
76
|
+
id="rect4338-7-82-22-4-4"
|
|
77
|
+
d="M 510.99999,1975 1679,1975 l 0,-438 -1168.00001,0 0,438 z"
|
|
78
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
79
|
+
inkscape:connector-curvature="0" />
|
|
80
|
+
</svg>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
10
|
+
version="1.1"
|
|
11
|
+
id="svg3891"
|
|
12
|
+
height="2048"
|
|
13
|
+
width="2048"
|
|
14
|
+
inkscape:version="0.91 r13725"
|
|
15
|
+
sodipodi:docname="align-top-tool.svg">
|
|
16
|
+
<sodipodi:namedview
|
|
17
|
+
pagecolor="#ffffff"
|
|
18
|
+
bordercolor="#666666"
|
|
19
|
+
borderopacity="1"
|
|
20
|
+
objecttolerance="10"
|
|
21
|
+
gridtolerance="10"
|
|
22
|
+
guidetolerance="10"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pageshadow="2"
|
|
25
|
+
inkscape:window-width="1600"
|
|
26
|
+
inkscape:window-height="847"
|
|
27
|
+
id="namedview8"
|
|
28
|
+
showgrid="true"
|
|
29
|
+
inkscape:snap-bbox="true"
|
|
30
|
+
inkscape:bbox-paths="true"
|
|
31
|
+
inkscape:snap-bbox-edge-midpoints="true"
|
|
32
|
+
inkscape:bbox-nodes="true"
|
|
33
|
+
inkscape:snap-bbox-midpoints="false"
|
|
34
|
+
inkscape:zoom="0.32593203"
|
|
35
|
+
inkscape:cx="944.25494"
|
|
36
|
+
inkscape:cy="1024"
|
|
37
|
+
inkscape:window-x="-8"
|
|
38
|
+
inkscape:window-y="-8"
|
|
39
|
+
inkscape:window-maximized="1"
|
|
40
|
+
inkscape:current-layer="svg3891">
|
|
41
|
+
<inkscape:grid
|
|
42
|
+
type="xygrid"
|
|
43
|
+
id="grid4137"
|
|
44
|
+
empspacing="146" />
|
|
45
|
+
</sodipodi:namedview>
|
|
46
|
+
<defs
|
|
47
|
+
id="defs3893" />
|
|
48
|
+
<metadata
|
|
49
|
+
id="metadata3896">
|
|
50
|
+
<rdf:RDF>
|
|
51
|
+
<cc:Work
|
|
52
|
+
rdf:about="">
|
|
53
|
+
<dc:format>image/svg+xml</dc:format>
|
|
54
|
+
<dc:type
|
|
55
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
56
|
+
<dc:title></dc:title>
|
|
57
|
+
</cc:Work>
|
|
58
|
+
</rdf:RDF>
|
|
59
|
+
</metadata>
|
|
60
|
+
<g
|
|
61
|
+
id="g4158"
|
|
62
|
+
transform="matrix(1,0,0,-1,0,1906)">
|
|
63
|
+
<path
|
|
64
|
+
style="fill:none;fill-rule:evenodd;stroke:#282828;stroke-width:146.00001526;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
65
|
+
d="M -4.695944e-5,1537 C 2044,1537 2044,1537 2044,1537"
|
|
66
|
+
id="path4363-4-2-8-5-8-0-8"
|
|
67
|
+
inkscape:connector-curvature="0" />
|
|
68
|
+
<path
|
|
69
|
+
inkscape:connector-curvature="0"
|
|
70
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
71
|
+
d="m 511.00001,368.99999 0,1168.00001 -438.000008,0 0,-1168.00001 438.000008,0 z"
|
|
72
|
+
id="rect4338-7-82-22-4" />
|
|
73
|
+
<path
|
|
74
|
+
inkscape:connector-curvature="0"
|
|
75
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
76
|
+
d="m 1241,806.99998 0,730.00002 -437.99997,0 0,-730.00002 437.99997,0 z"
|
|
77
|
+
id="rect4338-7-82-22-4-9" />
|
|
78
|
+
<path
|
|
79
|
+
inkscape:connector-curvature="0"
|
|
80
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#282828;stroke-width:146;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
81
|
+
d="m 1971,369 0,1168 -438,0 0,-1168 438,0 z"
|
|
82
|
+
id="rect4338-7-82-22-4-4" />
|
|
83
|
+
</g>
|
|
84
|
+
</svg>
|