aurea-eden 1.25.1

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 (93) hide show
  1. package/.gitattributes +2 -0
  2. package/.github/workflows/static.yml +43 -0
  3. package/CHANGELOG.md +60 -0
  4. package/LICENSE +17 -0
  5. package/README.md +171 -0
  6. package/README_.md +174 -0
  7. package/assets/3diagram_logo.png +0 -0
  8. package/assets/aurea-eden-logo.jpeg +0 -0
  9. package/assets/favicon/about.txt +6 -0
  10. package/assets/favicon/android-chrome-192x192.png +0 -0
  11. package/assets/favicon/android-chrome-512x512.png +0 -0
  12. package/assets/favicon/apple-touch-icon.png +0 -0
  13. package/assets/favicon/favicon-16x16.png +0 -0
  14. package/assets/favicon/favicon-32x32.png +0 -0
  15. package/assets/favicon/favicon.ico +0 -0
  16. package/assets/favicon/site.webmanifest +1 -0
  17. package/assets/threejs_camera.jpg.webp +0 -0
  18. package/assets/threejs_camera3.jpg.webp +0 -0
  19. package/assets/threejs_cameras.webp +0 -0
  20. package/assets/threejs_cameras2.webp +0 -0
  21. package/assets/threejs_objects.webp +0 -0
  22. package/assets/threejs_scene.webp +0 -0
  23. package/assets/threejs_scene_graph.webp +0 -0
  24. package/dist/bpmn-diagram.es.js +33126 -0
  25. package/dist/bpmn-diagram.umd.js +5790 -0
  26. package/favicon.ico +0 -0
  27. package/index.html +34 -0
  28. package/index.js +153 -0
  29. package/lib/connectors/Connector.js +47 -0
  30. package/lib/diagrams/Diagram.js +710 -0
  31. package/lib/diagrams/DiagramConstants.js +22 -0
  32. package/lib/elements/Element.js +860 -0
  33. package/lib/materials/BarMaterial.js +17 -0
  34. package/lib/materials/DiagramEditMaterial.js +28 -0
  35. package/lib/notations/BpmnDiagram.js +861 -0
  36. package/lib/shapes/Shape.js +23 -0
  37. package/lib/shapes/bar/ValueBarConstants.js +34 -0
  38. package/lib/shapes/bar/ValueBarShape.js +52 -0
  39. package/lib/shapes/basic/BasicShapeConstants.js +23 -0
  40. package/lib/shapes/basic/BoxShape.js +12 -0
  41. package/lib/shapes/basic/CircleShape.js +55 -0
  42. package/lib/shapes/basic/DiamondShape.js +169 -0
  43. package/lib/shapes/basic/RoundedRectangleShape.js +180 -0
  44. package/lib/shapes/connector/ConnectorConstants.js +7 -0
  45. package/lib/shapes/connector/RoundedCornerOrthogonalConnectorShape.js +229 -0
  46. package/lib/shapes/icon/IconConstants.js +7 -0
  47. package/lib/shapes/icon/IconShape.js +92 -0
  48. package/lib/shapes/icon/bpmn/activities/ad-hoc-marker.svg +50 -0
  49. package/lib/shapes/icon/bpmn/activities/business-rule.svg +92 -0
  50. package/lib/shapes/icon/bpmn/activities/compensation-marker.svg +50 -0
  51. package/lib/shapes/icon/bpmn/activities/loop-marker.svg +50 -0
  52. package/lib/shapes/icon/bpmn/activities/manual.svg +51 -0
  53. package/lib/shapes/icon/bpmn/activities/parallel-mi-marker.svg +70 -0
  54. package/lib/shapes/icon/bpmn/activities/receive.svg +77 -0
  55. package/lib/shapes/icon/bpmn/activities/script.svg +54 -0
  56. package/lib/shapes/icon/bpmn/activities/send.svg +86 -0
  57. package/lib/shapes/icon/bpmn/activities/sequential-mi-marker.svg +70 -0
  58. package/lib/shapes/icon/bpmn/activities/service.svg +58 -0
  59. package/lib/shapes/icon/bpmn/activities/sub-process-marker.svg +51 -0
  60. package/lib/shapes/icon/bpmn/activities/user.svg +50 -0
  61. package/lib/shapes/icon/bpmn/events/compensation.svg +47 -0
  62. package/lib/shapes/icon/bpmn/events/conditional.svg +47 -0
  63. package/lib/shapes/icon/bpmn/events/error.svg +47 -0
  64. package/lib/shapes/icon/bpmn/events/escalation.svg +47 -0
  65. package/lib/shapes/icon/bpmn/events/intermediate-compensation.svg +53 -0
  66. package/lib/shapes/icon/bpmn/events/intermediate-conditional.svg +53 -0
  67. package/lib/shapes/icon/bpmn/events/intermediate-escalation.svg +53 -0
  68. package/lib/shapes/icon/bpmn/events/intermediate-link-catch.svg +53 -0
  69. package/lib/shapes/icon/bpmn/events/intermediate-link-throw.svg +53 -0
  70. package/lib/shapes/icon/bpmn/events/intermediate-receive.svg +53 -0
  71. package/lib/shapes/icon/bpmn/events/intermediate-send.svg +69 -0
  72. package/lib/shapes/icon/bpmn/events/intermediate-signal-catch.svg +53 -0
  73. package/lib/shapes/icon/bpmn/events/intermediate-signal-throw.svg +53 -0
  74. package/lib/shapes/icon/bpmn/events/intermediate-timer.svg +107 -0
  75. package/lib/shapes/icon/bpmn/events/intermediate.svg +49 -0
  76. package/lib/shapes/icon/bpmn/events/message-end.svg +54 -0
  77. package/lib/shapes/icon/bpmn/events/message-start.svg +41 -0
  78. package/lib/shapes/icon/bpmn/events/signal-end.svg +47 -0
  79. package/lib/shapes/icon/bpmn/events/signal-start.svg +47 -0
  80. package/lib/shapes/icon/bpmn/events/terminate.svg +49 -0
  81. package/lib/shapes/icon/bpmn/events/timer.svg +104 -0
  82. package/lib/shapes/icon/bpmn/gateways/complex.svg +61 -0
  83. package/lib/shapes/icon/bpmn/gateways/event-based.svg +68 -0
  84. package/lib/shapes/icon/bpmn/gateways/exclusive.svg +57 -0
  85. package/lib/shapes/icon/bpmn/gateways/inclusive.svg +57 -0
  86. package/lib/shapes/icon/bpmn/gateways/parallel.svg +56 -0
  87. package/lib/shapes/icon/decorators.svg +262 -0
  88. package/lib/shapes/icon/hexagon.svg +5 -0
  89. package/lib/shapes/text/Roboto_Regular.json +5610 -0
  90. package/lib/shapes/text/TextShape.js +29 -0
  91. package/lib/shapes/text/fonts/Roboto.zip +0 -0
  92. package/package.json +45 -0
  93. package/vite.config.js +15 -0
@@ -0,0 +1,57 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="13.758311mm"
6
+ height="13.758311mm"
7
+ viewBox="0 0 13.758311 13.758311"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4 (e7c3feb1, 2024-10-09)"
11
+ sodipodi:docname="exclusive.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg">
16
+ <sodipodi:namedview
17
+ id="namedview1"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#000000"
20
+ borderopacity="0.25"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:document-units="mm"
26
+ inkscape:zoom="4.1672912"
27
+ inkscape:cx="41.63376"
28
+ inkscape:cy="36.714497"
29
+ inkscape:window-width="1104"
30
+ inkscape:window-height="719"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="38"
33
+ inkscape:window-maximized="0"
34
+ inkscape:current-layer="layer1" />
35
+ <defs
36
+ id="defs1" />
37
+ <g
38
+ inkscape:label="Layer 1"
39
+ inkscape:groupmode="layer"
40
+ id="layer1"
41
+ transform="translate(-101.7323,-141.68439)">
42
+ <path
43
+ style="display:inline;fill:#22242a;stroke-linecap:round;stroke-linejoin:round"
44
+ d="M 16,15 23.428571,24.714286 16,34.428571 h 3.428571 l 5.714286,-7.464228 5.714286,7.464228 h 3.428571 L 26.857143,24.714286 34.285714,15 H 30.857143 L 25.142857,22.464229 19.428571,15 Z"
45
+ id="path1"
46
+ transform="matrix(0.26458333,0,0,0.26458333,101.99687,141.94896)" />
47
+ <rect
48
+ x="102.52604"
49
+ y="142.47813"
50
+ rx="1.0583333"
51
+ width="12.170834"
52
+ height="12.170834"
53
+ class="djs-outline"
54
+ style="fill:none;stroke-width:0.264583"
55
+ id="rect108" />
56
+ </g>
57
+ </svg>
@@ -0,0 +1,57 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="13.758311mm"
6
+ height="13.758311mm"
7
+ viewBox="0 0 13.758311 13.758311"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4 (e7c3feb1, 2024-10-09)"
11
+ sodipodi:docname="inclusive.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg">
16
+ <sodipodi:namedview
17
+ id="namedview1"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#000000"
20
+ borderopacity="0.25"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:document-units="mm"
26
+ inkscape:zoom="8.8470394"
27
+ inkscape:cx="30.349136"
28
+ inkscape:cy="27.636364"
29
+ inkscape:window-width="1104"
30
+ inkscape:window-height="784"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="38"
33
+ inkscape:window-maximized="0"
34
+ inkscape:current-layer="layer1" />
35
+ <defs
36
+ id="defs1" />
37
+ <g
38
+ inkscape:label="Layer 1"
39
+ inkscape:groupmode="layer"
40
+ id="layer1"
41
+ transform="translate(-101.73231,-141.68439)">
42
+ <path
43
+ style="display:inline;fill:#22242a;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;stroke-dasharray:none;stroke:none"
44
+ d="m 25,10.75 c -7.855252,0 -14.25,6.394748 -14.25,14.25 0,7.855252 6.394748,14.25 14.25,14.25 7.855252,0 14.25,-6.394748 14.25,-14.25 0,-7.855252 -6.394748,-14.25 -14.25,-14.25 z m 0,2.5 c 6.504152,0 11.75,5.245848 11.75,11.75 0,6.504152 -5.245848,11.75 -11.75,11.75 -6.504152,0 -11.75,-5.245848 -11.75,-11.75 0,-6.504152 5.245848,-11.75 11.75,-11.75 z"
45
+ id="path2"
46
+ transform="matrix(0.26458333,0,0,0.26458333,101.99688,141.94896)" />
47
+ <rect
48
+ x="102.52605"
49
+ y="142.47813"
50
+ rx="1.0583333"
51
+ width="12.170834"
52
+ height="12.170834"
53
+ class="djs-outline"
54
+ style="fill:none;stroke-width:0.264583"
55
+ id="rect105" />
56
+ </g>
57
+ </svg>
@@ -0,0 +1,56 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="13.758311mm"
6
+ height="13.758311mm"
7
+ viewBox="0 0 13.758311 13.758311"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4 (e7c3feb1, 2024-10-09)"
11
+ sodipodi:docname="parallel.svg"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
+ xmlns="http://www.w3.org/2000/svg"
15
+ xmlns:svg="http://www.w3.org/2000/svg">
16
+ <sodipodi:namedview
17
+ id="namedview1"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#000000"
20
+ borderopacity="0.25"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ inkscape:document-units="mm"
26
+ inkscape:zoom="2.5054948"
27
+ inkscape:cx="-2.1951752"
28
+ inkscape:cy="20.155699"
29
+ inkscape:window-width="1104"
30
+ inkscape:window-height="788"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="38"
33
+ inkscape:window-maximized="0"
34
+ inkscape:current-layer="layer1" />
35
+ <defs
36
+ id="defs1" />
37
+ <g
38
+ inkscape:label="Layer 1"
39
+ inkscape:groupmode="layer"
40
+ id="layer1"
41
+ transform="translate(-101.7323,-141.68439)">
42
+ <path
43
+ d="m 108.08229,144.59479 v 3.30729 h -3.3073 v 1.32292 h 3.3073 v 3.30729 h 1.32291 V 149.225 h 3.30729 v -1.32292 h -3.30729 v -3.30729 z"
44
+ style="fill:#22242a;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
45
+ id="path109" />
46
+ <rect
47
+ x="102.52604"
48
+ y="142.47813"
49
+ rx="1.0583333"
50
+ width="12.170834"
51
+ height="12.170834"
52
+ class="djs-outline"
53
+ style="fill:none;stroke-width:0.264583"
54
+ id="rect111" />
55
+ </g>
56
+ </svg>
@@ -0,0 +1,262 @@
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="10000"
13
+ height="10000"
14
+ viewBox="0 0 10000 9999.9997"
15
+ id="svg5418"
16
+ version="1.1"
17
+ inkscape:version="0.91 r13725"
18
+ sodipodi:docname="decorators.svg">
19
+ <defs
20
+ id="defs5420">
21
+ <inkscape:path-effect
22
+ effect="spiro"
23
+ id="path-effect6981"
24
+ is_visible="true" />
25
+ <inkscape:path-effect
26
+ effect="spiro"
27
+ id="path-effect6177"
28
+ is_visible="true" />
29
+ <inkscape:path-effect
30
+ effect="spiro"
31
+ id="path-effect6981-6"
32
+ is_visible="true" />
33
+ <inkscape:path-effect
34
+ effect="spiro"
35
+ id="path-effect6177-1"
36
+ is_visible="true" />
37
+ <inkscape:path-effect
38
+ effect="spiro"
39
+ id="path-effect6177-7"
40
+ is_visible="true" />
41
+ <inkscape:path-effect
42
+ effect="spiro"
43
+ id="path-effect6981-5"
44
+ is_visible="true" />
45
+ <inkscape:path-effect
46
+ effect="spiro"
47
+ id="path-effect6981-5-3"
48
+ is_visible="true" />
49
+ <inkscape:path-effect
50
+ effect="spiro"
51
+ id="path-effect6177-7-2"
52
+ is_visible="true" />
53
+ <inkscape:path-effect
54
+ effect="spiro"
55
+ id="path-effect6981-5-3-4"
56
+ is_visible="true" />
57
+ <inkscape:path-effect
58
+ effect="spiro"
59
+ id="path-effect6177-7-2-0"
60
+ is_visible="true" />
61
+ <inkscape:path-effect
62
+ effect="spiro"
63
+ id="path-effect6981-5-3-4-4"
64
+ is_visible="true" />
65
+ <inkscape:path-effect
66
+ effect="spiro"
67
+ id="path-effect6177-7-2-0-0"
68
+ is_visible="true" />
69
+ <inkscape:path-effect
70
+ effect="spiro"
71
+ id="path-effect6981-5-3-4-4-7"
72
+ is_visible="true" />
73
+ <inkscape:path-effect
74
+ effect="spiro"
75
+ id="path-effect6177-7-2-0-0-2"
76
+ is_visible="true" />
77
+ <inkscape:path-effect
78
+ effect="spiro"
79
+ id="path-effect6981-5-3-4-4-72"
80
+ is_visible="true" />
81
+ <inkscape:path-effect
82
+ effect="spiro"
83
+ id="path-effect6177-7-2-0-0-6"
84
+ is_visible="true" />
85
+ </defs>
86
+ <sodipodi:namedview
87
+ id="base"
88
+ pagecolor="#ffffff"
89
+ bordercolor="#666666"
90
+ borderopacity="1.0"
91
+ inkscape:pageopacity="0.0"
92
+ inkscape:pageshadow="2"
93
+ inkscape:zoom="0.0875"
94
+ inkscape:cx="5473.9229"
95
+ inkscape:cy="1034.3297"
96
+ inkscape:document-units="px"
97
+ inkscape:current-layer="layer1"
98
+ showgrid="true"
99
+ inkscape:window-width="1596"
100
+ inkscape:window-height="771"
101
+ inkscape:window-x="0"
102
+ inkscape:window-y="127"
103
+ inkscape:window-maximized="0"
104
+ units="px"
105
+ inkscape:snap-tangential="false">
106
+ <inkscape:grid
107
+ type="xygrid"
108
+ id="grid7835"
109
+ spacingx="1024"
110
+ spacingy="1024" />
111
+ </sodipodi:namedview>
112
+ <metadata
113
+ id="metadata5423">
114
+ <rdf:RDF>
115
+ <cc:Work
116
+ rdf:about="">
117
+ <dc:format>image/svg+xml</dc:format>
118
+ <dc:type
119
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
120
+ <dc:title />
121
+ </cc:Work>
122
+ </rdf:RDF>
123
+ </metadata>
124
+ <g
125
+ inkscape:label="Layer 1"
126
+ inkscape:groupmode="layer"
127
+ id="layer1"
128
+ transform="translate(0,8947.6376)">
129
+ <g
130
+ id="layer1-4"
131
+ inkscape:label="Ebene 1"
132
+ transform="matrix(0.74578466,0,0,0.64639115,1993.0811,134.13698)" />
133
+ <path
134
+ style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:200;stroke-opacity:1"
135
+ d="m 3667.683,-872.97295 0,205.7451 -462.6499,0 0,388.5306 462.6499,0 0,205.725703 337.3498,-399.995803 z"
136
+ id="rect4138"
137
+ inkscape:connector-curvature="0"
138
+ sodipodi:nodetypes="cccccccc" />
139
+ <path
140
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.03356075;stroke-linecap:round;stroke-linejoin:round;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"
141
+ d="m 2292.881,190.8995 0,25.127 0,754.9433 103.5547,0 412.7129,0 103.7441,0 0,-780.0703 -620.0117,0 z m 49.8867,50.0703 520.0469,0 0,679.9199 -53.666,0 -412.7129,0 -53.668,0 0,-679.9199 z m 53.668,76.541 0,49.8848 412.7129,0 0,-49.8848 -412.7129,0 z m 0,150.6055 0,50.0781 412.7129,0 0,-50.0781 -412.7129,0 z m 0,174.0391 0,49.8945 412.7129,0 0,-49.8945 -412.7129,0 z m 0,157.2226 0,49.8965 412.7129,0 0,-49.8965 -412.7129,0 z"
142
+ id="path3453"
143
+ inkscape:connector-curvature="0" />
144
+ <path
145
+ inkscape:connector-curvature="0"
146
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.03356075;stroke-linecap:round;stroke-linejoin:round;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"
147
+ d="m 1571.9188,-882.48661 c -90.9216,250.5029 -164.0778,568.6942 -255,819.197063 90.9222,-90.570363 164.0784,-184.856063 255,-275.436163 l 255,275.436163 c -79.751,-250.502863 -175.2491,-568.694163 -255,-819.197063 z"
148
+ id="path4363" />
149
+ <path
150
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.03356075;stroke-linecap:round;stroke-linejoin:round;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"
151
+ d="m 1555.6356,161.93142 c -90.9216,250.50289 -164.0778,568.69439 -255,819.19729 90.9222,-90.5704 164.0784,-184.8574 255,-275.4375 l 255,275.4375 c -79.751,-250.5029 -175.2491,-568.6944 -255,-819.19729 z m 1.8535,169.49609 c 43.7848,137.531 96.2151,312.2249 140,449.7559 l -140,-151.2208 c -49.9178,49.7303 -90.0819,101.4959 -140,151.2208 49.9181,-137.531 90.0822,-312.2249 140,-449.7559 z"
152
+ id="path4363-3-5"
153
+ inkscape:connector-curvature="0" />
154
+ <path
155
+ style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:200;stroke-opacity:1"
156
+ d="m 3658.7932,155.36715 0,205.74417 -462.6504,0 0,388.5312 462.6504,0 0,205.7246 337.3496,-399.9941 -337.3496,-400.00587 z m 56.3555,149.56837 208.9668,248.5195 -208.9668,248.5156 0,-111.873 -456.0684,0 0,-271.2774 456.0684,0 0,-113.8847 z"
157
+ id="rect4138-1"
158
+ inkscape:connector-curvature="0" />
159
+ <path
160
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.03356075;stroke-linecap:round;stroke-linejoin:round;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"
161
+ d="m 113.73708,198.95324 0,640.0976 839.2481,0 0,-640.0976 -839.2481,0 z m 186.4336,100.0039 466.3125,0 c -77.7388,62.067 -155.4779,124.1343 -233.2168,186.2109 -77.6986,-62.0766 -155.3971,-124.1439 -233.0957,-186.2109 z m 552.9356,58.873 0,381.2168 -639.4922,0 0,-381.1875 c 106.5507,85.1523 213.1016,170.3145 319.6523,255.457 106.613,-85.1522 213.2268,-170.3244 319.8399,-255.4863 z"
162
+ id="path7153"
163
+ inkscape:connector-curvature="0" />
164
+ <path
165
+ inkscape:connector-curvature="0"
166
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.03356075;stroke-linecap:round;stroke-linejoin:round;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"
167
+ d="m 182.85745,-819.23283 349.6407,283.64058 349.6406,-283.64058 -699.2813,0 z m -77.5801,65.8301 0,574.17177 840.00405,0 0,-562.46477 -412.78325,334.87298 -427.2208,-346.57998 z"
168
+ id="path7809" />
169
+ <path
170
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:49.99999619;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:200;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
171
+ d="m 4589.8105,159.0625 -21.8398,39.20117 -371.6269,667.04688 786.9316,0 -393.4649,-706.24805 z m 0,102.73438 308.3731,553.51367 -616.7461,0 308.373,-553.51367 z"
172
+ id="rect4138-2"
173
+ inkscape:connector-curvature="0" />
174
+ <path
175
+ inkscape:connector-curvature="0"
176
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.03356075;stroke-linecap:round;stroke-linejoin:round;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"
177
+ d="m 4606.9382,-863.85099 -21.7324,39.3107 -371.7051,667.0628 786.8732,0 -393.4357,-706.3735 z"
178
+ id="path10889" />
179
+ <path
180
+ inkscape:connector-curvature="0"
181
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.03356075;stroke-linecap:round;stroke-linejoin:round;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"
182
+ d="m 5640.4744,-921.26323 c -146.9945,106.6991 -293.9883,213.4175 -440.9825,320.1263 56.1465,172.65547 112.293,345.30137 168.4395,517.956974 181.6947,0 363.3893,0 545.084,0 56.1466,-172.655604 112.293,-345.301504 168.4395,-517.956974 -146.9935,-106.7088 -293.987,-213.4175 -440.9805,-320.1263 z"
183
+ id="path11562" />
184
+ <path
185
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:36.98733139;stroke-linecap:round;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"
186
+ d="m 6087.1709,426.28191 -440.9794,-320.1263 -14.7018,10.6718 -426.2802,309.4545 168.4392,517.9666 545.083,0 168.4392,-517.9666 z m -58.8045,19.0893 -145.9771,448.9045 -472.3982,0 -145.9771,-448.9045 382.1749,-277.4389 382.1775,277.4389 z"
187
+ id="path4140"
188
+ inkscape:connector-curvature="0" />
189
+ <path
190
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.51678038;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:200;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
191
+ d="m 7691.6092,245.08637 -428.774,302.73007 28.9125,20.4149 399.8615,282.5088 0,-292.7162 14.3618,10.2074 399.8616,282.5088 0,-605.65377 -414.2234,292.53237 0,-292.53237 z m 364.3352,96.3756 0,412.71877 -292.1484,-206.3643 292.1484,-206.35447 z m -414.4123,0 0,412.33177 -292.1484,-206.1708 292.1484,-206.16097 z"
192
+ id="rect4138-22"
193
+ inkscape:connector-curvature="0" />
194
+ <path
195
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.51678038;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:200;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
196
+ d="m 7691.6092,-778.91366 -428.774,302.7301 28.9125,20.4149 399.8615,282.5088 0,-292.7162 14.3618,10.2074 399.8616,282.5088 0,-605.6538 -414.2234,292.5324 0,-292.5324 z"
197
+ id="path14333" />
198
+ <path
199
+ inkscape:connector-curvature="0"
200
+ style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:160;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
201
+ d="m 9171.5448,-491.6376 a 469.83051,469.83051 0 0 1 -469.8305,469.8305 469.83051,469.83051 0 0 1 -469.8305,-469.8305 469.83051,469.83051 0 0 1 469.8305,-469.8305 469.83051,469.83051 0 0 1 469.8305,469.8305 z"
202
+ id="circle4135" />
203
+ <path
204
+ sodipodi:nodetypes="ccccccc"
205
+ inkscape:connector-curvature="0"
206
+ id="path4137"
207
+ d="m 190.61436,-2156.9035 266.1721,-342.1272 274.5627,314.1711 168.3222,-760.3694 -210.2353,426.1792 -261.4058,-340.0156 z"
208
+ style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:200;stroke-opacity:1" />
209
+ <path
210
+ style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:200;stroke-opacity:1"
211
+ d="m 873.11326,-1910.8332 -210.2364,426.1797 -261.4043,-340.0156 -237.416,702.1621 266.1719,-342.127 274.5625,314.1699 z m -448.3946,224.8594 248.5567,315.125 62.0781,-138.1953 -59.4316,239.1132 -253.6953,-298.4414 -102.9239,159.1172 z"
212
+ id="path4137-6"
213
+ inkscape:connector-curvature="0"
214
+ sodipodi:nodetypes="cccccccccccccc" />
215
+ <path
216
+ inkscape:connector-curvature="0"
217
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.51678038;stroke-linecap:round;stroke-linejoin:round;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"
218
+ d="m 1513.0407,-7893.1812 c -0.01,0 -9.6137,1.8379 -9.6211,1.8379 -0.01,0 -8.1449,5.5156 -8.1504,5.5156 l -30.7324,30.7383 c -0.01,0 -5.6106,8.2236 -5.6133,8.3203 0,0.01 -1.737,9.4824 -1.7363,9.4824 -7e-4,0.01 1.8677,9.3848 1.8711,9.3848 0,0.01 5.3375,8.3203 5.3437,8.3203 l 280.707,280.7031 -280.5722,280.5704 0,-0.086 c 0,0.01 -5.6106,8.3203 -5.6133,8.3203 0,0.01 -1.7363,9.4805 -1.7363,9.4805 0,0.01 1.8683,9.3867 1.8711,9.3867 0,0 5.3383,8.2236 5.3437,8.3203 l 30.7344,30.7285 c 0.01,0.01 8.4105,5.5157 8.4179,5.5157 0.01,0 9.3453,1.8379 9.3536,1.8379 0.01,0 9.4788,-1.7422 9.4863,-1.7422 0.01,0 8.2796,-5.6114 8.2851,-5.6114 l 280.5762,-280.5761 280.6367,280.6347 c 0.01,0.01 8.4112,5.5137 8.418,5.5137 0.01,0 9.3477,1.8379 9.3554,1.8379 0.01,0 9.4786,-1.7402 9.4864,-1.7402 0.01,0 8.2774,-5.6114 8.2832,-5.6114 l 30.7343,-30.7285 c 0.01,-0.01 5.4747,-8.1289 5.4786,-8.1289 0,-0.01 1.8711,-9.5771 1.8711,-9.6738 0,-0.01 -1.8692,-9.3867 -1.8731,-9.3867 0,0 -5.4717,-8.416 -5.4785,-8.416 l -280.6055,-280.6075 280.6074,-280.6074 c 0.01,0 5.4747,-8.1289 5.4786,-8.1289 0,-0.01 1.8711,-9.5781 1.8711,-9.5781 0,-0.01 -1.8682,-9.3848 -1.8711,-9.3848 0,-0.01 -5.6056,-8.3203 -5.6114,-8.3203 l -30.7343,-30.7383 c -0.01,0 -8.1437,-5.5156 -8.1504,-5.5156 -0.01,0 -9.3448,-1.8379 -9.3535,-1.8379 -0.01,0 -9.6124,1.8379 -9.6192,1.8379 -0.01,0 -8.1455,5.5156 -8.1504,5.5156 l -280.6133,280.6133 -280.7382,-280.7402 0,-0.096 c -0.01,0 -8.2783,-5.3223 -8.2852,-5.3223 -0.01,0 -9.3459,-1.8379 -9.3535,-1.8379 z"
219
+ id="rect20398" />
220
+ <path
221
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.51678038;stroke-linecap:round;stroke-linejoin:round;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"
222
+ d="m 183.97706,-7772.4458 c -0.01,0.01 -5.4983,8.1273 -5.5036,8.1273 -0.01,0 -1.8591,9.6752 -1.8631,9.6752 l 0,43.4711 c 0,0 1.8477,9.7817 1.9142,9.8495 0,0.01 5.4768,7.9337 5.4773,7.9337 0.01,0.01 7.9566,5.3214 7.9591,5.3214 0.01,0.01 9.6575,2.1286 9.6619,2.1286 l 396.977,0 0,396.7836 -0.061,-0.058 c 0,0.01 1.9161,9.8494 1.9141,9.8494 0,0.01 5.4759,7.9338 5.4759,7.9338 0.01,0.01 7.9586,5.3214 7.9605,5.3214 0,0 9.5898,2.0318 9.6619,2.1285 l 43.4609,-0.01 c 0.011,0 9.8473,-2.0319 9.8525,-2.0319 0,0 7.9076,-5.3214 7.9134,-5.3214 0.01,-0.01 5.4704,-7.9337 5.4762,-7.9337 0,0 1.8867,-9.8204 1.8906,-9.8204 l 10e-5,-396.803 396.87884,0 c 0.011,0.01 9.8465,-2.0318 9.8513,-2.0318 0.01,0 7.9096,-5.3214 7.9144,-5.3214 0.01,-0.01 5.4714,-7.9338 5.4772,-7.9338 0,0 1.8847,-9.8204 1.8896,-9.8204 l 0,-43.4614 c 0,-0.01 -1.8771,-9.5785 -1.8742,-9.6753 -0.01,-0.01 -5.4491,-8.1272 -5.5168,-8.1272 -0.01,-0.01 -7.9589,-5.3214 -7.9618,-5.3214 0,0.01 -9.82,-2.1286 -9.8249,-2.0318 l -396.83764,0 0,-396.8417 c 0,-0.01 -1.877,-9.5785 -1.8741,-9.6753 -0.01,-0.01 -5.4501,-8.1272 -5.4501,-8.1272 -0.01,-0.01 -7.9569,-5.3214 -7.9589,-5.3214 -0.01,0 -9.8471,-1.9351 -9.8512,-1.9351 l -43.4679,-0.01 c 0,0.01 -9.6585,1.8383 -9.6633,1.8383 -0.01,0 -7.9074,5.3214 -7.9136,5.3214 -0.01,0.01 -5.4974,8.1273 -5.5022,8.1273 0,0.01 -1.8596,9.6752 -1.8631,9.6752 l 0,396.8514 -397.0253,0 -0.066,-0.077 c 0,0.01 -9.617,2.1286 -9.6219,2.1286 -0.01,0.01 -7.9082,5.3214 -7.9135,5.3214 z"
223
+ id="rect20398-4"
224
+ inkscape:connector-curvature="0" />
225
+ <path
226
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.51678038;stroke-linecap:round;stroke-linejoin:round;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"
227
+ d="m 2921.9081,-8064.9076 c -237.2318,0 -430,192.7801 -430,430.0086 0,237.2284 192.7682,429.9989 430,429.9989 237.2319,0 430,-192.7705 430,-429.9989 0,-237.2285 -192.7681,-430.0086 -430,-430.0086 z m 0,47.6895 c 211.4073,0 382.3226,170.914 382.3226,382.3191 0,211.405 -170.9153,382.3287 -382.3226,382.3287 -211.4072,0 -382.3226,-170.9237 -382.3226,-382.3287 0,-211.4051 170.9154,-382.3191 382.3226,-382.3191 z"
228
+ id="path20910-5"
229
+ inkscape:connector-curvature="0" />
230
+ <path
231
+ inkscape:connector-curvature="0"
232
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.51678038;stroke-linecap:round;stroke-linejoin:round;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"
233
+ d="m 3983.8458,-8089.3562 c 0,0.01 -8.3669,1.5469 -8.3711,1.5469 -0.01,0 -6.8521,4.6445 -6.8574,4.6445 -0.01,0 -4.7634,7.0645 -4.7676,7.0645 0,0.01 -1.6103,8.416 -1.6133,8.416 l 0,286.2402 -202.6406,-202.6445 0.01,0 c -0.01,0 -7.1958,-4.6446 -7.1992,-4.6446 -0.012,0 -8.1041,-1.6445 -8.1074,-1.6445 l 0.062,0.3965 c -0.012,0 -8.3484,1.5469 -8.3516,1.5469 -0.01,-0.01 -7.0659,4.7422 -7.0684,4.7422 l -26.6328,26.625 c 0,0 -4.8605,7.1601 -4.8613,7.1601 -0.01,0 -1.5041,8.2246 -1.5039,8.2246 2e-4,0.01 1.6137,8.127 1.6152,8.127 2e-4,0.019 4.6125,7.1601 4.6153,7.1601 l 202.539,202.543 -286.457,0 -0.057,-0.068 c 0,0.01 -8.3317,1.8379 -8.336,1.8379 -0.01,0.01 -6.8509,4.6445 -6.8554,4.6445 l 0,-0.049 c -0.01,0.01 -4.7631,7.0625 -4.7676,7.0625 -0.01,0 -1.6119,8.418 -1.6152,8.418 l 0,37.666 c 0,0 1.6006,8.5137 1.6582,8.5137 0,0.01 4.7456,6.8711 4.7461,6.8711 0.01,0 6.8942,4.6426 6.8964,4.6426 0.01,0.01 8.3673,1.8398 8.3711,1.8398 l 286.3594,0 -202.3672,202.3672 0,-0.076 c -0.01,0.01 -4.86,7.1582 -4.8613,7.1582 -0.01,0.01 -1.5059,8.2246 -1.5059,8.2246 2e-4,0.019 1.6161,8.127 1.6172,8.127 0,0 4.6307,7.1602 4.6153,7.1602 l 26.6367,26.6171 c 0.01,0.01 7.278,4.7403 7.2812,4.7403 0,0 8.104,1.6445 8.1074,1.6445 0.012,0 8.2126,-1.5469 8.2168,-1.5469 0,0 7.1714,-4.8379 7.1739,-4.8379 l 202.6679,-202.664 0,286.8574 -0.053,-0.057 c 0,0.01 1.66,8.5136 1.6582,8.5136 0,0.01 4.7442,6.8692 4.7442,6.8692 0.01,0.01 6.8947,4.6445 6.8965,4.6445 0,0 8.3086,1.7411 8.3711,1.8379 l 37.6543,-0.01 c 0.01,0 8.5322,-1.7422 8.5371,-1.7422 0,0 6.8506,-4.6425 6.8554,-4.6425 0.01,-0.01 4.7413,-6.8711 4.7461,-6.8711 0,0 1.6329,-8.5137 1.6367,-8.5137 l 0,-286.6953 202.5235,202.5195 c -0.01,0.019 7.2754,4.7422 7.2793,4.7422 0.01,0.01 8.1065,1.5469 8.1094,1.5469 0.012,0 8.2129,-1.5469 8.2168,-1.5469 0,0 7.1699,-4.8379 7.1738,-4.8379 l 26.625,-26.6269 c 0.01,0 4.7193,-7.0625 4.7793,-7.0625 -2e-4,-0.01 1.6402,-8.3213 1.5996,-8.418 -2e-4,-0.01 -1.6153,-8.127 -1.6172,-8.127 -0.012,0.019 -4.7135,-7.2558 -4.7754,-7.2558 l -202.0156,-202.0293 285.957,0 c 0.01,0.01 8.5313,-1.7422 8.5352,-1.7422 0.01,0 6.8516,-4.6445 6.8554,-4.6445 0.01,-0.01 4.7403,-6.8692 4.7461,-6.8692 0,0 1.6329,-8.5136 1.6368,-8.5136 l 0,-37.6563 c 0,-0.01 -1.626,-8.3212 -1.6231,-8.418 -0.01,-0.01 -4.7212,-7.0625 -4.7793,-7.0625 -0.01,-0.01 -6.8955,-4.6445 -6.8984,-4.6445 0,0.01 -8.5079,-1.839 -8.5117,-1.7422 l -286.8243,0 202.9258,-202.9199 c 0.01,-0.01 4.7174,-7.0625 4.7774,-7.0625 -2e-4,-0.01 1.6425,-8.3203 1.6425,-8.3203 -2e-4,-0.01 -1.6162,-8.127 -1.6171,-8.127 -0.01,-0.01 -4.8477,-7.1601 -4.8497,-7.1601 l -26.6289,-26.627 c -0.01,0 -7.0439,-4.7402 -7.0468,-4.7402 -0.01,-0.01 -8.1046,-1.5489 -8.1094,-1.5489 -0.012,0 -8.3467,1.5489 -8.3496,1.5489 -0.01,0.01 -7.0664,4.7402 -7.0684,4.7402 l -202.6719,202.668 0,-286.2715 c 0,-0.01 -1.6259,-8.3212 -1.623,-8.418 -0.01,-0.01 -4.7207,-7.0625 -4.7207,-7.0625 -0.01,-0.01 -6.8946,-4.6445 -6.8965,-4.6445 -0.01,0 -8.5322,-1.6445 -8.5351,-1.6445 l -37.6602,-0.01 z"
234
+ id="rect20398-4-7" />
235
+ <path
236
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:80;stroke-linecap:round;stroke-linejoin:round;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"
237
+ d="m 2552.7898,-1917.0312 c -174.4842,-2.3799 -342.27,111.3275 -406.4915,273.2582 -65.7902,155.8008 -29.4187,347.5708 88.8851,468.4426 115.0263,123.8297 304.5532,169.4637 463.3054,111.4273 166.3595,-56.6747 288.5746,-221.2313 292.9783,-397.19 8.8625,-170.9452 -93.875,-339.9699 -248.5592,-412.5671 -59.0266,-28.5789 -124.5461,-43.4575 -190.1181,-43.371 z m 0,80 c 159.4805,-3.0204 310.6037,114.043 347.727,269.1222 40.6988,149.0185 -27.8712,318.9347 -161.362,397.0144 -136.3004,85.5433 -328.4699,62.7465 -440.394,-53.1076 -118.1139,-113.9435 -139.1474,-311.087 -48.5313,-447.736 64.1785,-101.9465 182.0501,-166.4666 302.5603,-165.293 z m 113.4199,102.0176 c -39.9674,72.5091 -79.9349,145.0182 -119.9023,217.5273 -37.0324,3.9378 -45.8293,60.121 -11.6614,75.1054 22.5699,15.6663 40.2472,-10.392 60.793,-9.494 61.0974,0 122.1948,0 183.2922,0 0,-16.6667 0,-33.3333 0,-50 -61.3125,0 -122.625,0 -183.9375,0 38.4017,-69.668 76.8034,-139.3359 115.2051,-209.0039 -14.5964,-8.0449 -29.1927,-16.0899 -43.7891,-24.1348 z"
238
+ id="path3487-0-6-2"
239
+ inkscape:connector-curvature="0" />
240
+ <path
241
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.51678038;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:200;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
242
+ d="m 3818.1593,-2908.8509 -226.4729,226.4729 -230.6322,-230.6321 -179.2258,179.2258 230.6322,230.6322 -226.4662,226.4661 176.3814,176.3814 226.4662,-226.4661 230.7658,230.7658 179.2258,-179.2258 -230.7658,-230.7658 226.4729,-226.473 z"
243
+ id="path8845"
244
+ inkscape:connector-curvature="0" />
245
+ <path
246
+ 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:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.51678038;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:200;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
247
+ d="m 3807.7631,-1890.6172 -226.4729,226.4729 -230.6322,-230.6321 -179.2258,179.2258 230.6322,230.6322 -226.4662,226.4661 176.3814,176.3814 226.4662,-226.4661 230.7658,230.7658 179.2258,-179.2258 -230.7658,-230.7658 226.4729,-226.473 z m 0,70.8213 105.6953,105.6953 -226.4661,226.466 230.6321,230.6322 -108.4099,108.4098 -230.6321,-230.6321 -226.4661,226.4661 -105.6953,-105.6953 226.4661,-226.4661 -230.7657,-230.7657 108.4099,-108.4099 230.7657,230.7658 17.7673,-17.7673 z"
248
+ id="rect4138-4-9-8"
249
+ inkscape:connector-curvature="0"
250
+ sodipodi:nodetypes="ccccccccccccccccccccccccccc" />
251
+ <path
252
+ 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:0.98000004;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:50;stroke-linecap:square;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"
253
+ d="m 6538.2857,147.2195 0,256 -256,0 0,288 256,0 0,256 288,0 0,-256 256,0 0,-288.001 -256,0 0,-255.999 z m 48,48 192,0 0,256 256,0 0,192 -256,0 0,256 -192,0 0,-257.5004 -256,0 0,-190.4996 256,0 z"
254
+ id="rect10567-3"
255
+ inkscape:connector-curvature="0"
256
+ sodipodi:nodetypes="cccccccccccccccccccccccccc" />
257
+ <path
258
+ 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:0.98000004;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:50;stroke-linecap:square;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"
259
+ d="m 6538.2857,-1900.7806 0,256 -256,0 0,288 256,0 0,256 288,0 0,-256 256,0 0,-288.001 -256,0 0,-255.999 z"
260
+ id="path11332" />
261
+ </g>
262
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg id="color-fill" xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="300" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+
3
+ <polygon class="hex" points="300,150 225,280 75,280 0,150 75,20 225,20" fill="#ff0000"></polygon>
4
+
5
+ </svg>