kitchen-simulator 11.28.0 → 11.28.2

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.
Files changed (85) hide show
  1. package/es/actions/items-actions.js +12 -1
  2. package/es/assets/img/svg/3d_item_move.svg +9 -105
  3. package/es/assets/img/svg/3d_item_rotation.svg +3 -75
  4. package/es/assets/img/svg/accessories.svg +4 -4
  5. package/es/assets/img/svg/bottombar/elevation-back.svg +6 -6
  6. package/es/assets/img/svg/bottombar/elevation-front.svg +6 -6
  7. package/es/assets/img/svg/bottombar/elevation-left.svg +6 -6
  8. package/es/assets/img/svg/bottombar/elevation-right.svg +7 -7
  9. package/es/assets/img/svg/bottombar/elevation.svg +13 -13
  10. package/es/assets/img/svg/delete.svg +6 -2
  11. package/es/assets/img/svg/detail.svg +77 -77
  12. package/es/assets/img/svg/duplicate.svg +6 -6
  13. package/es/assets/img/svg/filtersActive.svg +19 -19
  14. package/es/assets/img/svg/invert.svg +12 -127
  15. package/es/assets/img/svg/menubar/login.svg +84 -84
  16. package/es/assets/img/svg/menubar/my_projects.svg +85 -85
  17. package/es/assets/img/svg/menubar/new_project.svg +110 -110
  18. package/es/assets/img/svg/menubar/save_project.svg +84 -84
  19. package/es/assets/img/svg/options.svg +3 -3
  20. package/es/assets/img/svg/positioning.svg +3 -3
  21. package/es/assets/img/svg/toggleFilters.svg +19 -19
  22. package/es/assets/img/svg/toolbar/shopping-cart.svg +13 -13
  23. package/es/assets/img/svg/wizardstep/detail_view.svg +87 -87
  24. package/es/assets/img/svg/wizardstep/tile_view.svg +95 -95
  25. package/es/catalog/utils/exporter.js +4 -0
  26. package/es/catalog/utils/item-loader.js +18 -8
  27. package/es/class/item.js +32 -2
  28. package/es/components/viewer2d/item.js +139 -125
  29. package/es/components/viewer2d/viewer2d.js +5 -2
  30. package/es/components/viewer3d/camera-controls-module/camera-controls.module.js +556 -556
  31. package/es/components/viewer3d/scene-creator.js +18 -0
  32. package/es/components/viewer3d/viewer3d.js +137 -49
  33. package/es/constants.js +4 -0
  34. package/es/events/external/handleExternalEvent.js +36 -33
  35. package/es/events/external/handlers.elementOps.js +8 -0
  36. package/es/mappings/external-events/mapExternalEventPayload.js +4 -4
  37. package/es/mappings/external-events/mappers/addItemMapper.js +9 -9
  38. package/es/models.js +4 -0
  39. package/es/reducers/items-reducer.js +8 -1
  40. package/es/shared/domain/asset/sanitize-asset-url.js +5 -5
  41. package/es/shared/domain/cabinet-mirror.js +7 -0
  42. package/es/utils/skinPanelEngine.js +14 -14
  43. package/lib/actions/items-actions.js +12 -0
  44. package/lib/assets/img/svg/3d_item_move.svg +9 -105
  45. package/lib/assets/img/svg/3d_item_rotation.svg +3 -75
  46. package/lib/assets/img/svg/accessories.svg +4 -4
  47. package/lib/assets/img/svg/bottombar/elevation-back.svg +6 -6
  48. package/lib/assets/img/svg/bottombar/elevation-front.svg +6 -6
  49. package/lib/assets/img/svg/bottombar/elevation-left.svg +6 -6
  50. package/lib/assets/img/svg/bottombar/elevation-right.svg +7 -7
  51. package/lib/assets/img/svg/bottombar/elevation.svg +13 -13
  52. package/lib/assets/img/svg/delete.svg +6 -2
  53. package/lib/assets/img/svg/detail.svg +77 -77
  54. package/lib/assets/img/svg/duplicate.svg +6 -6
  55. package/lib/assets/img/svg/filtersActive.svg +19 -19
  56. package/lib/assets/img/svg/invert.svg +12 -127
  57. package/lib/assets/img/svg/menubar/login.svg +84 -84
  58. package/lib/assets/img/svg/menubar/my_projects.svg +85 -85
  59. package/lib/assets/img/svg/menubar/new_project.svg +110 -110
  60. package/lib/assets/img/svg/menubar/save_project.svg +84 -84
  61. package/lib/assets/img/svg/options.svg +3 -3
  62. package/lib/assets/img/svg/positioning.svg +3 -3
  63. package/lib/assets/img/svg/toggleFilters.svg +19 -19
  64. package/lib/assets/img/svg/toolbar/shopping-cart.svg +13 -13
  65. package/lib/assets/img/svg/wizardstep/detail_view.svg +87 -87
  66. package/lib/assets/img/svg/wizardstep/tile_view.svg +95 -95
  67. package/lib/catalog/utils/exporter.js +4 -0
  68. package/lib/catalog/utils/item-loader.js +18 -8
  69. package/lib/class/item.js +31 -1
  70. package/lib/components/viewer2d/item.js +138 -124
  71. package/lib/components/viewer2d/viewer2d.js +5 -2
  72. package/lib/components/viewer3d/camera-controls-module/camera-controls.module.js +556 -556
  73. package/lib/components/viewer3d/scene-creator.js +18 -0
  74. package/lib/components/viewer3d/viewer3d.js +137 -49
  75. package/lib/constants.js +8 -4
  76. package/lib/events/external/handleExternalEvent.js +34 -31
  77. package/lib/events/external/handlers.elementOps.js +9 -0
  78. package/lib/mappings/external-events/mapExternalEventPayload.js +4 -4
  79. package/lib/mappings/external-events/mappers/addItemMapper.js +9 -9
  80. package/lib/models.js +4 -0
  81. package/lib/reducers/items-reducer.js +7 -0
  82. package/lib/shared/domain/asset/sanitize-asset-url.js +5 -5
  83. package/lib/shared/domain/cabinet-mirror.js +13 -0
  84. package/lib/utils/skinPanelEngine.js +14 -14
  85. package/package.json +1 -1
@@ -1,11 +1,11 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_3202_404863)">
3
- <path d="M6.6665 8.33268C6.6665 7.89065 6.8421 7.46673 7.15466 7.15417C7.46722 6.84161 7.89114 6.66602 8.33317 6.66602H14.9998C15.4419 6.66602 15.8658 6.84161 16.1783 7.15417C16.4909 7.46673 16.6665 7.89065 16.6665 8.33268V14.9993C16.6665 15.4414 16.4909 15.8653 16.1783 16.1779C15.8658 16.4904 15.4419 16.666 14.9998 16.666H8.33317C7.89114 16.666 7.46722 16.4904 7.15466 16.1779C6.8421 15.8653 6.6665 15.4414 6.6665 14.9993V8.33268Z" stroke="#4C12A1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M13.3335 6.66732V5.00065C13.3335 4.55862 13.1579 4.1347 12.8453 3.82214C12.5328 3.50958 12.1089 3.33398 11.6668 3.33398H5.00016C4.55814 3.33398 4.13421 3.50958 3.82165 3.82214C3.50909 4.1347 3.3335 4.55862 3.3335 5.00065V11.6673C3.3335 12.1093 3.50909 12.5333 3.82165 12.8458C4.13421 13.1584 4.55814 13.334 5.00016 13.334H6.66683" stroke="#4C12A1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_2362_168013)">
3
+ <path d="M5.33334 6.66683C5.33334 6.31321 5.47382 5.97407 5.72387 5.72402C5.97392 5.47397 6.31305 5.3335 6.66668 5.3335H12C12.3536 5.3335 12.6928 5.47397 12.9428 5.72402C13.1929 5.97407 13.3333 6.31321 13.3333 6.66683V12.0002C13.3333 12.3538 13.1929 12.6929 12.9428 12.943C12.6928 13.193 12.3536 13.3335 12 13.3335H6.66668C6.31305 13.3335 5.97392 13.193 5.72387 12.943C5.47382 12.6929 5.33334 12.3538 5.33334 12.0002V6.66683Z" stroke="#3A0B80" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M10.6667 5.33317V3.99984C10.6667 3.64622 10.5262 3.30708 10.2761 3.05703C10.0261 2.80698 9.68695 2.6665 9.33332 2.6665H3.99999C3.64637 2.6665 3.30723 2.80698 3.05718 3.05703C2.80713 3.30708 2.66666 3.64622 2.66666 3.99984V9.33317C2.66666 9.68679 2.80713 10.0259 3.05718 10.276C3.30723 10.526 3.64637 10.6665 3.99999 10.6665H5.33332" stroke="#3A0B80" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
5
5
  </g>
6
6
  <defs>
7
- <clipPath id="clip0_3202_404863">
8
- <rect width="20" height="20" fill="white"/>
7
+ <clipPath id="clip0_2362_168013">
8
+ <rect width="16" height="16" fill="white"/>
9
9
  </clipPath>
10
10
  </defs>
11
11
  </svg>
@@ -1,19 +1,19 @@
1
- <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect width="40" height="40" rx="6" fill="#3A0B80"/>
3
- <g clip-path="url(#clip0_2782_269361)">
4
- <path d="M20 14C20 14.5304 20.2107 15.0391 20.5858 15.4142C20.9609 15.7893 21.4696 16 22 16C22.5304 16 23.0391 15.7893 23.4142 15.4142C23.7893 15.0391 24 14.5304 24 14C24 13.4696 23.7893 12.9609 23.4142 12.5858C23.0391 12.2107 22.5304 12 22 12C21.4696 12 20.9609 12.2107 20.5858 12.5858C20.2107 12.9609 20 13.4696 20 14Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M12 14H20" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
6
- <path d="M24 14H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
7
- <path d="M14 20C14 20.5304 14.2107 21.0391 14.5858 21.4142C14.9609 21.7893 15.4696 22 16 22C16.5304 22 17.0391 21.7893 17.4142 21.4142C17.7893 21.0391 18 20.5304 18 20C18 19.4696 17.7893 18.9609 17.4142 18.5858C17.0391 18.2107 16.5304 18 16 18C15.4696 18 14.9609 18.2107 14.5858 18.5858C14.2107 18.9609 14 19.4696 14 20Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
8
- <path d="M12 20H14" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
9
- <path d="M18 20H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
10
- <path d="M23 26C23 26.5304 23.2107 27.0391 23.5858 27.4142C23.9609 27.7893 24.4696 28 25 28C25.5304 28 26.0391 27.7893 26.4142 27.4142C26.7893 27.0391 27 26.5304 27 26C27 25.4696 26.7893 24.9609 26.4142 24.5858C26.0391 24.2107 25.5304 24 25 24C24.4696 24 23.9609 24.2107 23.5858 24.5858C23.2107 24.9609 23 25.4696 23 26Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
11
- <path d="M12 26H23" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
12
- <path d="M27 26H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
13
- </g>
14
- <defs>
15
- <clipPath id="clip0_2782_269361">
16
- <rect width="24" height="24" fill="white" transform="translate(8 8)"/>
17
- </clipPath>
18
- </defs>
19
- </svg>
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="40" height="40" rx="6" fill="#3A0B80"/>
3
+ <g clip-path="url(#clip0_2782_269361)">
4
+ <path d="M20 14C20 14.5304 20.2107 15.0391 20.5858 15.4142C20.9609 15.7893 21.4696 16 22 16C22.5304 16 23.0391 15.7893 23.4142 15.4142C23.7893 15.0391 24 14.5304 24 14C24 13.4696 23.7893 12.9609 23.4142 12.5858C23.0391 12.2107 22.5304 12 22 12C21.4696 12 20.9609 12.2107 20.5858 12.5858C20.2107 12.9609 20 13.4696 20 14Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M12 14H20" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M24 14H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M14 20C14 20.5304 14.2107 21.0391 14.5858 21.4142C14.9609 21.7893 15.4696 22 16 22C16.5304 22 17.0391 21.7893 17.4142 21.4142C17.7893 21.0391 18 20.5304 18 20C18 19.4696 17.7893 18.9609 17.4142 18.5858C17.0391 18.2107 16.5304 18 16 18C15.4696 18 14.9609 18.2107 14.5858 18.5858C14.2107 18.9609 14 19.4696 14 20Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M12 20H14" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M18 20H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M23 26C23 26.5304 23.2107 27.0391 23.5858 27.4142C23.9609 27.7893 24.4696 28 25 28C25.5304 28 26.0391 27.7893 26.4142 27.4142C26.7893 27.0391 27 26.5304 27 26C27 25.4696 26.7893 24.9609 26.4142 24.5858C26.0391 24.2107 25.5304 24 25 24C24.4696 24 23.9609 24.2107 23.5858 24.5858C23.2107 24.9609 23 25.4696 23 26Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
11
+ <path d="M12 26H23" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
12
+ <path d="M27 26H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
13
+ </g>
14
+ <defs>
15
+ <clipPath id="clip0_2782_269361">
16
+ <rect width="24" height="24" fill="white" transform="translate(8 8)"/>
17
+ </clipPath>
18
+ </defs>
19
+ </svg>
@@ -1,127 +1,12 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- width="18"
13
- height="18"
14
- id="svg120611"
15
- version="1.1"
16
- inkscape:version="0.48.4 r9939"
17
- sodipodi:docname="New document 4">
18
- <defs
19
- id="defs120613">
20
- <clipPath
21
- id="clip629_0_1">
22
- <rect
23
- style="fill:#ffffff"
24
- y="0"
25
- x="0"
26
- width="24"
27
- height="24"
28
- transform="translate(248,2075.73)"
29
- id="rect108754" />
30
- </clipPath>
31
- <clipPath
32
- id="clip1165_0_1">
33
- <rect
34
- style="fill:#ffffff"
35
- y="0"
36
- x="0"
37
- width="24"
38
- height="24"
39
- transform="translate(4088,2523.73)"
40
- id="rect110362" />
41
- </clipPath>
42
- <clipPath
43
- id="clip1165_0_1-4">
44
- <rect
45
- style="fill:#ffffff"
46
- y="0"
47
- x="0"
48
- width="24"
49
- height="24"
50
- transform="translate(4088,2523.73)"
51
- id="rect110362-0" />
52
- </clipPath>
53
- </defs>
54
- <sodipodi:namedview
55
- id="base"
56
- pagecolor="#ffffff"
57
- bordercolor="#666666"
58
- borderopacity="1.0"
59
- inkscape:pageopacity="0.0"
60
- inkscape:pageshadow="2"
61
- inkscape:zoom="11.313708"
62
- inkscape:cx="18.003245"
63
- inkscape:cy="16.213573"
64
- inkscape:current-layer="layer1"
65
- showgrid="true"
66
- inkscape:grid-bbox="true"
67
- inkscape:document-units="px"
68
- inkscape:window-width="1920"
69
- inkscape:window-height="1017"
70
- inkscape:window-x="-8"
71
- inkscape:window-y="-8"
72
- inkscape:window-maximized="1" />
73
- <metadata
74
- id="metadata120616">
75
- <rdf:RDF>
76
- <cc:Work
77
- rdf:about="">
78
- <dc:format>image/svg+xml</dc:format>
79
- <dc:type
80
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
81
- <dc:title></dc:title>
82
- </cc:Work>
83
- </rdf:RDF>
84
- </metadata>
85
- <g
86
- id="layer1"
87
- inkscape:label="Layer 1"
88
- inkscape:groupmode="layer"
89
- transform="translate(0,-14)">
90
- <path
91
- id="path69482"
92
- d="m 8.9951119,15.80962 h -0.01155"
93
- inkscape:connector-curvature="0"
94
- style="fill:none;stroke:#4c12a1;stroke-width:2.04160428;stroke-linecap:round;stroke-linejoin:round" />
95
- <path
96
- id="path69484"
97
- d="m 8.9951119,20.322213 h -0.01155"
98
- inkscape:connector-curvature="0"
99
- style="fill:none;stroke:#4c12a1;stroke-width:2.04160428;stroke-linecap:round;stroke-linejoin:round" />
100
- <path
101
- id="path69486"
102
- d="m 8.9951119,25.737326 h -0.01155"
103
- inkscape:connector-curvature="0"
104
- style="fill:none;stroke:#4c12a1;stroke-width:2.04160428;stroke-linecap:round;stroke-linejoin:round" />
105
- <path
106
- id="path69490"
107
- d="m 8.9951119,30.249918 h -0.01155"
108
- inkscape:connector-curvature="0"
109
- style="fill:none;stroke:#4c12a1;stroke-width:2.04160428;stroke-linecap:round;stroke-linejoin:round" />
110
- <path
111
- id="path74578"
112
- d="M 6.6644273,31.349204 H 0.90408625 c -0.0523097,0 -0.10943184,-0.05284 -0.15462738,-0.135899 C 0.70447257,31.129555 0.66994817,31.014789 0.6479781,30.868621 0.6291466,30.73282 0.6218233,30.576183 0.6333313,30.429915 0.6448395,30.283546 0.6709943,30.147747 0.7086572,30.043354 l 5.484983,-15.189609 c 0.037663,-0.104492 0.086834,-0.177476 0.1433285,-0.208784 0.052309,-0.03091 0.1056655,-0.02094 0.1583937,0.04088 0.049171,0.05284 0.094157,0.156638 0.1246017,0.282068 0.03034,0.12533 0.044986,0.271599 0.044986,0.428337 v 15.952162 z"
113
- inkscape:connector-curvature="0"
114
- style="fill:none;stroke:#4c12a1;stroke-width:1.25551593;stroke-linecap:round;stroke-linejoin:round" />
115
- <g
116
- transform="matrix(-1.0461935,0,0,0.99705989,4305.2764,-2502.1467)"
117
- clip-path="url(#clip1165_0_1-4)"
118
- id="g74576-9"
119
- style="fill:#4c12a1;fill-opacity:1">
120
- <path
121
- style="fill:#4c12a1;fill-opacity:1;stroke:#4c12a1;stroke-width:1.22929358;stroke-linecap:round;stroke-linejoin:round"
122
- inkscape:connector-curvature="0"
123
- d="m 4104.3469,2540.9898 h -5.506 c -0.05,0 -0.1046,-0.053 -0.1478,-0.1363 -0.043,-0.084 -0.076,-0.1991 -0.097,-0.3457 -0.018,-0.1362 -0.025,-0.2933 -0.014,-0.44 0.011,-0.1468 0.036,-0.283 0.072,-0.3877 l 5.2428,-15.2344 c 0.036,-0.1048 0.083,-0.178 0.137,-0.2094 0.05,-0.031 0.101,-0.021 0.1514,0.041 0.047,0.053 0.09,0.1571 0.1191,0.2829 0.029,0.1257 0.043,0.2724 0.043,0.4296 v 15.9992 z"
124
- id="path74578-4" />
125
- </g>
126
- </g>
127
- </svg>
1
+ <svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_2431_146436)">
3
+ <path d="M7.5 1.875V13.125" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M10 4.375V10.625H13.125L10 4.375Z" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M5 4.375V10.625H1.875L5 4.375Z" fill="#3A0B80" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_2431_146436">
9
+ <rect width="15" height="15" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -1,84 +1,84 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- width="14"
13
- height="20"
14
- id="svg60766"
15
- version="1.1"
16
- inkscape:version="0.48.4 r9939"
17
- sodipodi:docname="New document 2">
18
- <defs
19
- id="defs60768">
20
- <clipPath
21
- id="clip96_0_1">
22
- <rect
23
- style="fill:#ffffff"
24
- y="0"
25
- x="0"
26
- width="24"
27
- height="24"
28
- transform="translate(2080,835.725)"
29
- id="rect44351" />
30
- </clipPath>
31
- </defs>
32
- <sodipodi:namedview
33
- id="base"
34
- pagecolor="#ffffff"
35
- bordercolor="#666666"
36
- borderopacity="1.0"
37
- inkscape:pageopacity="0.0"
38
- inkscape:pageshadow="2"
39
- inkscape:zoom="11.197802"
40
- inkscape:cx="16"
41
- inkscape:cy="16"
42
- inkscape:current-layer="g856"
43
- showgrid="true"
44
- inkscape:grid-bbox="true"
45
- inkscape:document-units="px"
46
- inkscape:window-width="1920"
47
- inkscape:window-height="1017"
48
- inkscape:window-x="-8"
49
- inkscape:window-y="-8"
50
- inkscape:window-maximized="1" />
51
- <metadata
52
- id="metadata60771">
53
- <rdf:RDF>
54
- <cc:Work
55
- rdf:about="">
56
- <dc:format>image/svg+xml</dc:format>
57
- <dc:type
58
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
59
- <dc:title></dc:title>
60
- </cc:Work>
61
- </rdf:RDF>
62
- </metadata>
63
- <g
64
- id="layer1"
65
- inkscape:label="Layer 1"
66
- inkscape:groupmode="layer"
67
- transform="translate(0,-12)">
68
- <g
69
- transform="translate(-2085,-825.725)"
70
- clip-path="url(#clip96_0_1)"
71
- id="g856">
72
- <path
73
- style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
74
- inkscape:connector-curvature="0"
75
- d="m 2088,842.725 c 0,1.061 0.42,2.078 1.17,2.829 0.75,0.75 1.77,1.171 2.83,1.171 1.06,0 2.08,-0.421 2.83,-1.171 0.75,-0.751 1.17,-1.768 1.17,-2.829 0,-1.061 -0.42,-2.078 -1.17,-2.828 -0.75,-0.75 -1.77,-1.172 -2.83,-1.172 -1.06,0 -2.08,0.422 -2.83,1.172 -0.75,0.75 -1.17,1.767 -1.17,2.828 z"
76
- id="path858" />
77
- <path
78
- style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
79
- inkscape:connector-curvature="0"
80
- d="m 2086,856.725 v -2 c 0,-1.061 0.42,-2.078 1.17,-2.828 0.75,-0.75 1.77,-1.172 2.83,-1.172 h 4 c 1.06,0 2.08,0.422 2.83,1.172 0.75,0.75 1.17,1.767 1.17,2.828 v 2"
81
- id="path860" />
82
- </g>
83
- </g>
84
- </svg>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="14"
13
+ height="20"
14
+ id="svg60766"
15
+ version="1.1"
16
+ inkscape:version="0.48.4 r9939"
17
+ sodipodi:docname="New document 2">
18
+ <defs
19
+ id="defs60768">
20
+ <clipPath
21
+ id="clip96_0_1">
22
+ <rect
23
+ style="fill:#ffffff"
24
+ y="0"
25
+ x="0"
26
+ width="24"
27
+ height="24"
28
+ transform="translate(2080,835.725)"
29
+ id="rect44351" />
30
+ </clipPath>
31
+ </defs>
32
+ <sodipodi:namedview
33
+ id="base"
34
+ pagecolor="#ffffff"
35
+ bordercolor="#666666"
36
+ borderopacity="1.0"
37
+ inkscape:pageopacity="0.0"
38
+ inkscape:pageshadow="2"
39
+ inkscape:zoom="11.197802"
40
+ inkscape:cx="16"
41
+ inkscape:cy="16"
42
+ inkscape:current-layer="g856"
43
+ showgrid="true"
44
+ inkscape:grid-bbox="true"
45
+ inkscape:document-units="px"
46
+ inkscape:window-width="1920"
47
+ inkscape:window-height="1017"
48
+ inkscape:window-x="-8"
49
+ inkscape:window-y="-8"
50
+ inkscape:window-maximized="1" />
51
+ <metadata
52
+ id="metadata60771">
53
+ <rdf:RDF>
54
+ <cc:Work
55
+ rdf:about="">
56
+ <dc:format>image/svg+xml</dc:format>
57
+ <dc:type
58
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
59
+ <dc:title></dc:title>
60
+ </cc:Work>
61
+ </rdf:RDF>
62
+ </metadata>
63
+ <g
64
+ id="layer1"
65
+ inkscape:label="Layer 1"
66
+ inkscape:groupmode="layer"
67
+ transform="translate(0,-12)">
68
+ <g
69
+ transform="translate(-2085,-825.725)"
70
+ clip-path="url(#clip96_0_1)"
71
+ id="g856">
72
+ <path
73
+ style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
74
+ inkscape:connector-curvature="0"
75
+ d="m 2088,842.725 c 0,1.061 0.42,2.078 1.17,2.829 0.75,0.75 1.77,1.171 2.83,1.171 1.06,0 2.08,-0.421 2.83,-1.171 0.75,-0.751 1.17,-1.768 1.17,-2.829 0,-1.061 -0.42,-2.078 -1.17,-2.828 -0.75,-0.75 -1.77,-1.172 -2.83,-1.172 -1.06,0 -2.08,0.422 -2.83,1.172 -0.75,0.75 -1.17,1.767 -1.17,2.828 z"
76
+ id="path858" />
77
+ <path
78
+ style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
79
+ inkscape:connector-curvature="0"
80
+ d="m 2086,856.725 v -2 c 0,-1.061 0.42,-2.078 1.17,-2.828 0.75,-0.75 1.77,-1.172 2.83,-1.172 h 4 c 1.06,0 2.08,0.422 2.83,1.172 0.75,0.75 1.17,1.767 1.17,2.828 v 2"
81
+ id="path860" />
82
+ </g>
83
+ </g>
84
+ </svg>
@@ -1,85 +1,85 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- xmlns:dc="http://purl.org/dc/elements/1.1/"
6
- xmlns:cc="http://creativecommons.org/ns#"
7
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
- xmlns:svg="http://www.w3.org/2000/svg"
9
- xmlns="http://www.w3.org/2000/svg"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- width="20"
13
- height="19"
14
- id="svg60766"
15
- version="1.1"
16
- inkscape:version="0.48.4 r9939"
17
- sodipodi:docname="New document 2">
18
- <defs
19
- id="defs60768">
20
- <clipPath
21
- id="clip2179_0_1">
22
- <rect
23
- style="fill:#ffffff"
24
- y="0"
25
- x="0"
26
- width="24"
27
- height="24"
28
- transform="translate(3832,3486.86)"
29
- id="rect50600" />
30
- </clipPath>
31
- </defs>
32
- <sodipodi:namedview
33
- id="base"
34
- pagecolor="#ffffff"
35
- bordercolor="#666666"
36
- borderopacity="1.0"
37
- inkscape:pageopacity="0.0"
38
- inkscape:pageshadow="2"
39
- inkscape:zoom="11.197802"
40
- inkscape:cx="16"
41
- inkscape:cy="19.181516"
42
- inkscape:current-layer="g21724"
43
- showgrid="true"
44
- inkscape:grid-bbox="true"
45
- inkscape:document-units="px"
46
- showborder="true"
47
- inkscape:window-width="1084"
48
- inkscape:window-height="670"
49
- inkscape:window-x="104"
50
- inkscape:window-y="104"
51
- inkscape:window-maximized="0" />
52
- <metadata
53
- id="metadata60771">
54
- <rdf:RDF>
55
- <cc:Work
56
- rdf:about="">
57
- <dc:format>image/svg+xml</dc:format>
58
- <dc:type
59
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
60
- <dc:title></dc:title>
61
- </cc:Work>
62
- </rdf:RDF>
63
- </metadata>
64
- <g
65
- id="layer1"
66
- inkscape:label="Layer 1"
67
- inkscape:groupmode="layer"
68
- transform="translate(0,-13)">
69
- <g
70
- transform="translate(-3834,-3476.86)"
71
- clip-path="url(#clip2179_0_1)"
72
- id="g21724">
73
- <path
74
- style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
75
- inkscape:connector-curvature="0"
76
- d="m 3841,3490.86 h 3 l 2,2 h 5 c 0.53,0 1.04,0.21 1.41,0.59 0.38,0.37 0.59,0.88 0.59,1.41 v 7 c 0,0.53 -0.21,1.04 -0.59,1.42 -0.37,0.37 -0.88,0.58 -1.41,0.58 h -10 c -0.53,0 -1.04,-0.21 -1.41,-0.58 -0.38,-0.38 -0.59,-0.89 -0.59,-1.42 v -9 c 0,-0.53 0.21,-1.04 0.59,-1.41 0.37,-0.38 0.88,-0.59 1.41,-0.59 z"
77
- id="path21726" />
78
- <path
79
- style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
80
- inkscape:connector-curvature="0"
81
- d="m 3849,3503.86 v 2 c 0,0.53 -0.21,1.04 -0.59,1.42 -0.37,0.37 -0.88,0.58 -1.41,0.58 h -10 c -0.53,0 -1.04,-0.21 -1.41,-0.58 -0.38,-0.38 -0.59,-0.89 -0.59,-1.42 v -9 c 0,-0.53 0.21,-1.04 0.59,-1.41 0.37,-0.38 0.88,-0.59 1.41,-0.59 h 2"
82
- id="path21728" />
83
- </g>
84
- </g>
85
- </svg>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="20"
13
+ height="19"
14
+ id="svg60766"
15
+ version="1.1"
16
+ inkscape:version="0.48.4 r9939"
17
+ sodipodi:docname="New document 2">
18
+ <defs
19
+ id="defs60768">
20
+ <clipPath
21
+ id="clip2179_0_1">
22
+ <rect
23
+ style="fill:#ffffff"
24
+ y="0"
25
+ x="0"
26
+ width="24"
27
+ height="24"
28
+ transform="translate(3832,3486.86)"
29
+ id="rect50600" />
30
+ </clipPath>
31
+ </defs>
32
+ <sodipodi:namedview
33
+ id="base"
34
+ pagecolor="#ffffff"
35
+ bordercolor="#666666"
36
+ borderopacity="1.0"
37
+ inkscape:pageopacity="0.0"
38
+ inkscape:pageshadow="2"
39
+ inkscape:zoom="11.197802"
40
+ inkscape:cx="16"
41
+ inkscape:cy="19.181516"
42
+ inkscape:current-layer="g21724"
43
+ showgrid="true"
44
+ inkscape:grid-bbox="true"
45
+ inkscape:document-units="px"
46
+ showborder="true"
47
+ inkscape:window-width="1084"
48
+ inkscape:window-height="670"
49
+ inkscape:window-x="104"
50
+ inkscape:window-y="104"
51
+ inkscape:window-maximized="0" />
52
+ <metadata
53
+ id="metadata60771">
54
+ <rdf:RDF>
55
+ <cc:Work
56
+ rdf:about="">
57
+ <dc:format>image/svg+xml</dc:format>
58
+ <dc:type
59
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
60
+ <dc:title></dc:title>
61
+ </cc:Work>
62
+ </rdf:RDF>
63
+ </metadata>
64
+ <g
65
+ id="layer1"
66
+ inkscape:label="Layer 1"
67
+ inkscape:groupmode="layer"
68
+ transform="translate(0,-13)">
69
+ <g
70
+ transform="translate(-3834,-3476.86)"
71
+ clip-path="url(#clip2179_0_1)"
72
+ id="g21724">
73
+ <path
74
+ style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
75
+ inkscape:connector-curvature="0"
76
+ d="m 3841,3490.86 h 3 l 2,2 h 5 c 0.53,0 1.04,0.21 1.41,0.59 0.38,0.37 0.59,0.88 0.59,1.41 v 7 c 0,0.53 -0.21,1.04 -0.59,1.42 -0.37,0.37 -0.88,0.58 -1.41,0.58 h -10 c -0.53,0 -1.04,-0.21 -1.41,-0.58 -0.38,-0.38 -0.59,-0.89 -0.59,-1.42 v -9 c 0,-0.53 0.21,-1.04 0.59,-1.41 0.37,-0.38 0.88,-0.59 1.41,-0.59 z"
77
+ id="path21726" />
78
+ <path
79
+ style="fill:none;stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
80
+ inkscape:connector-curvature="0"
81
+ d="m 3849,3503.86 v 2 c 0,0.53 -0.21,1.04 -0.59,1.42 -0.37,0.37 -0.88,0.58 -1.41,0.58 h -10 c -0.53,0 -1.04,-0.21 -1.41,-0.58 -0.38,-0.38 -0.59,-0.89 -0.59,-1.42 v -9 c 0,-0.53 0.21,-1.04 0.59,-1.41 0.37,-0.38 0.88,-0.59 1.41,-0.59 h 2"
82
+ id="path21728" />
83
+ </g>
84
+ </g>
85
+ </svg>