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,107 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="8.3343754mm"
6
+ height="8.3343754mm"
7
+ viewBox="0 0 8.3343756 8.3343756"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4 (86a8ad7, 2024-10-11)"
11
+ sodipodi:docname="intermediate-timer.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="#505050"
19
+ bordercolor="#eeeeee"
20
+ borderopacity="1"
21
+ inkscape:showpageshadow="0"
22
+ inkscape:pageopacity="0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#505050"
25
+ inkscape:document-units="mm"
26
+ inkscape:zoom="11.502694"
27
+ inkscape:cx="25.298421"
28
+ inkscape:cy="14.561806"
29
+ inkscape:window-width="2560"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="-8"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
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(28.111983,-209.21927)">
42
+ <circle
43
+ cx="-23.944796"
44
+ cy="213.38646"
45
+ r="3.96875"
46
+ style="fill:none;stroke:#22242a;stroke-width:0.396875px;stroke-linecap:round;stroke-linejoin:round"
47
+ id="circle59" />
48
+ <circle
49
+ cx="-23.944796"
50
+ cy="213.38646"
51
+ r="2.9104166"
52
+ style="fill:none;stroke:#22242a;stroke-width:0.529167px;stroke-linecap:round;stroke-linejoin:round"
53
+ id="circle60" />
54
+ <path
55
+ d="m -23.944795,213.38646 0.595312,-1.98438 m -0.595312,1.98438 1.389062,0.39687"
56
+ style="fill:none;stroke:#22242a;stroke-width:0.529167px;stroke-linecap:round;stroke-linejoin:round"
57
+ id="path60" />
58
+ <path
59
+ d="m -23.944795,213.38646 m 0,1.98437 v 0.59532"
60
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
61
+ id="path61" />
62
+ <path
63
+ d="m -23.944795,213.38646 m -0.992187,1.71852 -0.297657,0.51555"
64
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
65
+ id="path62" />
66
+ <path
67
+ d="m -23.944795,213.38646 m -1.718519,0.99218 -0.515556,0.29766"
68
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
69
+ id="path63" />
70
+ <path
71
+ d="m -23.944795,213.38646 m -1.984375,0 h -0.595312"
72
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
73
+ id="path64" />
74
+ <path
75
+ d="m -23.944795,213.38646 m -1.718519,-0.99219 -0.515556,-0.29766"
76
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
77
+ id="path65" />
78
+ <path
79
+ d="m -23.944795,213.38646 m -0.992187,-1.71852 -0.297657,-0.51555"
80
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
81
+ id="path66" />
82
+ <path
83
+ d="m -23.944795,213.38646 m 0,-1.98437 v -0.59532"
84
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
85
+ id="path67" />
86
+ <path
87
+ d="m -23.944795,213.38646 m 0.992187,-1.71852 0.297657,-0.51555"
88
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
89
+ id="path68" />
90
+ <path
91
+ d="m -23.944795,213.38646 m 1.718519,-0.99218 0.515556,-0.29766"
92
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
93
+ id="path69" />
94
+ <path
95
+ d="m -23.944795,213.38646 m 1.984375,0 h 0.595312"
96
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
97
+ id="path70" />
98
+ <path
99
+ d="m -23.944795,213.38646 m 1.718519,0.99219 0.515556,0.29766"
100
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
101
+ id="path71" />
102
+ <path
103
+ d="m -23.944795,213.38646 m 0.992187,1.71852 0.297657,0.51555"
104
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
105
+ id="path72" />
106
+ </g>
107
+ </svg>
@@ -0,0 +1,49 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="8.3343754mm"
6
+ height="8.3343754mm"
7
+ viewBox="0 0 8.3343756 8.3343756"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4 (86a8ad7, 2024-10-11)"
11
+ sodipodi:docname="intermediate.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="#505050"
19
+ bordercolor="#eeeeee"
20
+ borderopacity="1"
21
+ inkscape:showpageshadow="0"
22
+ inkscape:pageopacity="0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#505050"
25
+ inkscape:document-units="mm"
26
+ inkscape:zoom="16.267265"
27
+ inkscape:cx="12.663468"
28
+ inkscape:cy="14.35398"
29
+ inkscape:window-width="2560"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="-8"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
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(207.23489,-211.8651)">
42
+ <circle
43
+ cx="-203.0677"
44
+ cy="216.03229"
45
+ r="3.96875"
46
+ style="fill:none;stroke:#22242a;stroke-width:0.396875px;stroke-linecap:round;stroke-linejoin:round"
47
+ id="circle50" />
48
+ </g>
49
+ </svg>
@@ -0,0 +1,54 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="13.49375mm"
6
+ height="13.49375mm"
7
+ viewBox="0 0 13.49375 13.49375"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4 (86a8ad7, 2024-10-11)"
11
+ sodipodi:docname="message-end.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="#505050"
19
+ bordercolor="#eeeeee"
20
+ borderopacity="1"
21
+ inkscape:showpageshadow="0"
22
+ inkscape:pageopacity="0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#505050"
25
+ inkscape:document-units="mm"
26
+ inkscape:zoom="32.53453"
27
+ inkscape:cx="25.972405"
28
+ inkscape:cy="22.453067"
29
+ inkscape:window-width="2560"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="-8"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
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(-28.310416,-212.98958)">
42
+ <g
43
+ id="g4">
44
+ <path
45
+ d="m 32.666222,218.20322 v 2.97242 h 4.736145 v -2.97242 l -2.302701,1.31413 a 0.13230472,0.13230472 0 0 1 -0.130742,0 z"
46
+ style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#22242a;stroke-linecap:round;stroke-linejoin:round;enable-background:accumulate;stop-color:#000000;stop-opacity:1;fill-opacity:1"
47
+ id="path4" />
48
+ <path
49
+ d="m 33.033125,218.10761 1.999878,1.14257 2.001945,-1.14257 z"
50
+ style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#22242a;stroke-linecap:round;stroke-linejoin:round;enable-background:accumulate;stop-color:#000000;stop-opacity:1;fill-opacity:1"
51
+ id="path3" />
52
+ </g>
53
+ </g>
54
+ </svg>
@@ -0,0 +1,41 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="5.2652082mm"
6
+ height="3.5983334mm"
7
+ viewBox="0 0 5.2652084 3.5983335"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4 (86a8ad7, 2024-10-11)"
11
+ sodipodi:docname="message-start.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="#505050"
19
+ bordercolor="#eeeeee"
20
+ borderopacity="1"
21
+ inkscape:showpageshadow="0"
22
+ inkscape:pageopacity="0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#505050"
25
+ inkscape:document-units="mm"
26
+ inkscape:zoom="11.502694"
27
+ inkscape:cx="23.559698"
28
+ inkscape:cy="12.21453"
29
+ inkscape:window-width="2560"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="-8"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="svg1" />
35
+ <defs
36
+ id="defs1" />
37
+ <path
38
+ d="M 0.13229166,0.13229167 V 3.4660416 H 5.1329166 V 0.13229166 Z m 0,0 L 2.6326041,1.5610416 5.1329166,0.13229167"
39
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
40
+ id="path4" />
41
+ </svg>
@@ -0,0 +1,47 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="5.0270643mm"
6
+ height="4.5508189mm"
7
+ viewBox="0 0 5.0270645 4.550819"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4 (86a8ad7, 2024-10-11)"
11
+ sodipodi:docname="signal-end.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="#505050"
19
+ bordercolor="#eeeeee"
20
+ borderopacity="1"
21
+ inkscape:showpageshadow="0"
22
+ inkscape:pageopacity="0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#505050"
25
+ inkscape:document-units="mm"
26
+ inkscape:zoom="11.502694"
27
+ inkscape:cx="11.562509"
28
+ inkscape:cy="10.128063"
29
+ inkscape:window-width="2560"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="-8"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
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(-93.92709,-150.86543)">
42
+ <path
43
+ d="m 96.440622,150.99771 2.38125,4.28625 h -4.7625 z"
44
+ style="fill:#22242a;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
45
+ id="path43" />
46
+ </g>
47
+ </svg>
@@ -0,0 +1,47 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="5.0270643mm"
6
+ height="4.5508189mm"
7
+ viewBox="0 0 5.0270645 4.550819"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4 (86a8ad7, 2024-10-11)"
11
+ sodipodi:docname="signal-start.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="#505050"
19
+ bordercolor="#eeeeee"
20
+ borderopacity="1"
21
+ inkscape:showpageshadow="0"
22
+ inkscape:pageopacity="0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#505050"
25
+ inkscape:document-units="mm"
26
+ inkscape:zoom="8.1336326"
27
+ inkscape:cx="3.31955"
28
+ inkscape:cy="27.72439"
29
+ inkscape:window-width="2560"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="-8"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
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(-122.5021,-95.038348)">
42
+ <path
43
+ d="m 125.01563,95.170625 2.38125,4.28625 h -4.7625 z"
44
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
45
+ id="path40" />
46
+ </g>
47
+ </svg>
@@ -0,0 +1,49 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="6.3499966mm"
6
+ height="6.3499966mm"
7
+ viewBox="0 0 6.3499967 6.3499967"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4 (86a8ad7, 2024-10-11)"
11
+ sodipodi:docname="terminate.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="#505050"
19
+ bordercolor="#eeeeee"
20
+ borderopacity="1"
21
+ inkscape:showpageshadow="0"
22
+ inkscape:pageopacity="0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#505050"
25
+ inkscape:document-units="mm"
26
+ inkscape:zoom="16.267265"
27
+ inkscape:cx="0.67620462"
28
+ inkscape:cy="9.6820208"
29
+ inkscape:window-width="2560"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="-8"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
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(-148.82811,-151.73855)">
42
+ <circle
43
+ cx="152.00311"
44
+ cy="154.91354"
45
+ r="2.6458333"
46
+ style="fill:#22242a;stroke:#22242a;stroke-width:1.05833px;stroke-linecap:round;stroke-linejoin:round"
47
+ id="circle47" />
48
+ </g>
49
+ </svg>
@@ -0,0 +1,104 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="6.3499999mm"
6
+ height="6.3499999mm"
7
+ viewBox="0 0 6.3500001 6.3500001"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4 (86a8ad7, 2024-10-11)"
11
+ sodipodi:docname="timer.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="#505050"
19
+ bordercolor="#eeeeee"
20
+ borderopacity="1"
21
+ inkscape:showpageshadow="0"
22
+ inkscape:pageopacity="0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#505050"
25
+ inkscape:document-units="mm"
26
+ inkscape:zoom="11.502694"
27
+ inkscape:cx="-3.2166378"
28
+ inkscape:cy="17.169891"
29
+ inkscape:window-width="2560"
30
+ inkscape:window-height="1009"
31
+ inkscape:window-x="-8"
32
+ inkscape:window-y="-8"
33
+ inkscape:window-maximized="1"
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(-129.24896,-55.430208)">
42
+ <g
43
+ id="g1">
44
+ <circle
45
+ cx="132.42397"
46
+ cy="58.605209"
47
+ r="2.9104166"
48
+ style="fill:none;stroke:#22242a;stroke-width:0.529167px;stroke-linecap:round;stroke-linejoin:round"
49
+ id="circle8" />
50
+ <path
51
+ d="m 132.42396,58.605208 0.59531,-1.984375 m -0.59531,1.984375 1.38906,0.396875"
52
+ style="fill:none;stroke:#22242a;stroke-width:0.529167px;stroke-linecap:round;stroke-linejoin:round"
53
+ id="path8" />
54
+ <path
55
+ d="m 132.42396,58.605208 m 0,1.984375 v 0.595312"
56
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
57
+ id="path9" />
58
+ <path
59
+ d="m 132.42396,58.605208 m -0.99219,1.718519 -0.29766,0.515556"
60
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
61
+ id="path10" />
62
+ <path
63
+ d="m 132.42396,58.605208 m -1.71852,0.992188 -0.51555,0.297656"
64
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
65
+ id="path11" />
66
+ <path
67
+ d="m 132.42396,58.605208 m -1.98437,0 h -0.59532"
68
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
69
+ id="path12" />
70
+ <path
71
+ d="m 132.42396,58.605208 m -1.71852,-0.992187 -0.51555,-0.297657"
72
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
73
+ id="path13" />
74
+ <path
75
+ d="m 132.42396,58.605208 m -0.99218,-1.718519 -0.29766,-0.515556"
76
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
77
+ id="path14" />
78
+ <path
79
+ d="m 132.42396,58.605208 m 0,-1.984375 v -0.595312"
80
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
81
+ id="path15" />
82
+ <path
83
+ d="m 132.42396,58.605208 m 0.99219,-1.718519 0.29766,-0.515556"
84
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
85
+ id="path16" />
86
+ <path
87
+ d="m 132.42396,58.605208 m 1.71852,-0.992187 0.51555,-0.297657"
88
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
89
+ id="path17" />
90
+ <path
91
+ d="m 132.42396,58.605208 m 1.98437,0 h 0.59532"
92
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
93
+ id="path18" />
94
+ <path
95
+ d="m 132.42396,58.605208 m 1.71852,0.992188 0.51555,0.297656"
96
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
97
+ id="path19" />
98
+ <path
99
+ d="m 132.42396,58.605208 m 0.99218,1.718519 0.29766,0.515556"
100
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
101
+ id="path20" />
102
+ </g>
103
+ </g>
104
+ </svg>
@@ -0,0 +1,61 @@
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="complex.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.8390424"
27
+ inkscape:cx="39.987251"
28
+ inkscape:cy="19.218679"
29
+ inkscape:window-width="1104"
30
+ inkscape:window-height="827"
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
+ <g
43
+ id="path115"
44
+ style="fill:#22242a;fill-opacity:1;stroke:none;stroke-width:0;stroke-dasharray:none"
45
+ transform="matrix(0.26458333,0,0,0.26458333,-13.62604,-21.563537)">
46
+ <path
47
+ style="fill:#22242a;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
48
+ d="m 460,631 v 7.11679 l -5.01825,-5.01825 -3.10219,3.10219 5.01825,5.01825 h -7.11679 v 4.37956 h 7.11679 l -5.01825,5.01825 3.10219,3.10219 L 460,648.70073 v 7.11679 h 4.37956 v -7.11679 l 5.01825,5.01825 3.10219,-3.10219 -5.01825,-5.01825 h 7.11679 v -4.37956 h -7.11679 l 5.01825,-5.01825 -3.10219,-3.10219 -5.01825,5.01825 V 631 Z"
49
+ id="path211" />
50
+ </g>
51
+ <rect
52
+ x="102.52604"
53
+ y="142.47813"
54
+ rx="1.0583333"
55
+ width="12.170834"
56
+ height="12.170834"
57
+ class="djs-outline"
58
+ style="fill:none;stroke-width:0.264583"
59
+ id="rect117" />
60
+ </g>
61
+ </svg>
@@ -0,0 +1,68 @@
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="event-based.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.3759929"
27
+ inkscape:cx="21.36658"
28
+ inkscape:cy="26.16549"
29
+ inkscape:window-width="1104"
30
+ inkscape:window-height="786"
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(-1969.426,-2186.3844)">
42
+ <circle
43
+ cx="1976.3052"
44
+ cy="2193.2637"
45
+ r="3.96875"
46
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
47
+ id="circle112" />
48
+ <circle
49
+ cx="1976.3052"
50
+ cy="2193.2637"
51
+ r="3.175"
52
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
53
+ id="circle113" />
54
+ <path
55
+ d="m 1974.4531,2192.4698 1.9483,-1.2988 1.9483,1.2988 -0.6494,2.5978 h -2.5978 z"
56
+ style="fill:none;stroke:#22242a;stroke-width:0.529167px;stroke-linecap:round;stroke-linejoin:round"
57
+ id="path113" />
58
+ <rect
59
+ x="1970.2197"
60
+ y="2187.1782"
61
+ rx="1.0583333"
62
+ width="12.170834"
63
+ height="12.170834"
64
+ class="djs-outline"
65
+ style="fill:none;stroke-width:0.264583"
66
+ id="rect114" />
67
+ </g>
68
+ </svg>