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,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.5032949mm"
6
+ height="5.2628441mm"
7
+ viewBox="0 0 5.5032951 5.2628442"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4 (86a8ad7, 2024-10-11)"
11
+ sodipodi:docname="error.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="40.859995"
28
+ inkscape:cy="8.737084"
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(24.288738,-155.33712)">
42
+ <path
43
+ d="m -24.156455,160.46768 0.02474,-0.007 1.941829,-2.54284 2.028561,2.37229 1.243621,-4.82082 -1.553289,3.08242 -1.931353,-2.53613 z"
44
+ style="fill:#22242a;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
45
+ id="path34" />
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="4.4978838mm"
6
+ height="5.5561948mm"
7
+ viewBox="0 0 4.4978839 5.5561949"
8
+ version="1.1"
9
+ id="svg1"
10
+ inkscape:version="1.4 (86a8ad7, 2024-10-11)"
11
+ sodipodi:docname="escalation.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.040892"
28
+ inkscape:cy="10.910488"
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(-152.92918,-91.334188)">
42
+ <path
43
+ d="m 155.17812,91.466457 2.11667,5.291667 -2.11667,-1.852084 -2.11667,1.852084 z"
44
+ style="fill:#22242a;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
45
+ id="path31" />
46
+ </g>
47
+ </svg>
@@ -0,0 +1,53 @@
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-compensation.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="55.46527"
28
+ inkscape:cy="20.212657"
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(69.65157,-208.95468)">
42
+ <circle
43
+ cx="-65.484383"
44
+ cy="213.12187"
45
+ r="3.96875"
46
+ style="fill:none;stroke:#22242a;stroke-width:0.396875px;stroke-linecap:round;stroke-linejoin:round"
47
+ id="circle87" />
48
+ <path
49
+ d="m -68.151379,213.12187 2.38125,-1.71979 v 3.43958 z m 2.460625,-0.10583 2.301875,-1.61396 v 3.43958 l -2.301875,-1.61396 z"
50
+ style="fill:#22242a;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
51
+ id="path87" />
52
+ </g>
53
+ </svg>
@@ -0,0 +1,53 @@
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-conditional.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="17.561104"
28
+ inkscape:cy="19.864912"
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(-91.215099,-208.95468)">
42
+ <circle
43
+ cx="95.382286"
44
+ cy="213.12187"
45
+ r="3.96875"
46
+ style="fill:none;stroke:#22242a;stroke-width:0.396875px;stroke-linecap:round;stroke-linejoin:round"
47
+ id="circle78" />
48
+ <path
49
+ d="m 93.397914,210.60833 h 3.836458 v 4.7625 h -3.836458 z m 0.529167,0.79375 h 2.778125 m -2.778125,0.79375 h 2.778125 m -2.778125,0.79375 h 2.778125 m -2.778125,0.79375 h 2.778125 m -2.778125,0.79375 h 2.778125 m -2.778125,0.79375 h 2.778125"
50
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
51
+ id="path78" />
52
+ </g>
53
+ </svg>
@@ -0,0 +1,53 @@
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-escalation.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="-12.779615"
28
+ inkscape:cy="20.386529"
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(-371.14427,-181.43802)">
42
+ <circle
43
+ cx="375.31146"
44
+ cy="185.60521"
45
+ r="3.96875"
46
+ style="fill:none;stroke:#22242a;stroke-width:0.396875px;stroke-linecap:round;stroke-linejoin:round"
47
+ id="circle75" />
48
+ <path
49
+ d="m 375.31146,182.74771 2.11667,5.29167 -2.11667,-1.85209 -2.11667,1.85209 z"
50
+ style="fill:#22242a;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
51
+ id="path75" />
52
+ </g>
53
+ </svg>
@@ -0,0 +1,53 @@
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-link-catch.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="-16.343997"
28
+ inkscape:cy="17.778444"
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(-235.14843,-194.93177)">
42
+ <circle
43
+ cx="239.31561"
44
+ cy="199.09895"
45
+ r="3.96875"
46
+ style="fill:none;stroke:#22242a;stroke-width:0.396875px;stroke-linecap:round;stroke-linejoin:round"
47
+ id="circle81" />
48
+ <path
49
+ d="m 239.98237,196.84153 v 1.17409 h -3.57188 v 1.78594 h 3.57188 v 1.17409 l 2.60449,-2.06706 z"
50
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
51
+ id="path81" />
52
+ </g>
53
+ </svg>
@@ -0,0 +1,53 @@
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-link-throw.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="32.687996"
28
+ inkscape:cy="14.127126"
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(119.65781,-208.95468)">
42
+ <circle
43
+ cx="-115.49062"
44
+ cy="213.12187"
45
+ r="3.96875"
46
+ style="fill:none;stroke:#22242a;stroke-width:0.396875px;stroke-linecap:round;stroke-linejoin:round"
47
+ id="circle84" />
48
+ <path
49
+ d="m -114.82387,210.86444 v 1.17409 h -3.57188 v 1.78594 h 3.57188 v 1.17409 l 2.60449,-2.06706 z"
50
+ style="fill:#22242a;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
51
+ id="path84" />
52
+ </g>
53
+ </svg>
@@ -0,0 +1,53 @@
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-receive.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="21.386294"
28
+ inkscape:cy="10.301934"
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(-75.075519,-224.82968)">
42
+ <circle
43
+ cx="79.242706"
44
+ cy="228.99687"
45
+ r="3.96875"
46
+ style="fill:none;stroke:#22242a;stroke-width:0.396875px;stroke-linecap:round;stroke-linejoin:round"
47
+ id="circle53" />
48
+ <path
49
+ d="m 76.718582,227.23474 v 3.33375 h 5.000625 v -3.33375 z m 0,0 2.500312,1.42875 2.500313,-1.42875"
50
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
51
+ id="path53" />
52
+ </g>
53
+ </svg>
@@ -0,0 +1,69 @@
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-send.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"
27
+ inkscape:cx="-5.25"
28
+ inkscape:cy="14.84375"
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="path56" />
35
+ <defs
36
+ id="defs1" />
37
+ <g
38
+ inkscape:label="Layer 1"
39
+ inkscape:groupmode="layer"
40
+ id="layer1"
41
+ transform="translate(-232.76718,-160.00678)">
42
+ <circle
43
+ cx="236.93437"
44
+ cy="164.17397"
45
+ r="3.96875"
46
+ style="fill:none;stroke:#22242a;stroke-width:0.396875px;stroke-linecap:round;stroke-linejoin:round"
47
+ id="circle56" />
48
+ <g
49
+ id="path56">
50
+ <path
51
+ style="fill:none;stroke-linecap:round;stroke-linejoin:round;stroke:none"
52
+ d="m 234.41024,162.41183 v 3.33375 h 5.00063 v -3.33375 z m 0,0 2.50032,1.42875"
53
+ id="path1"
54
+ sodipodi:nodetypes="ccccccc" />
55
+ <g
56
+ id="g4"
57
+ transform="translate(201.87036,-55.570754)">
58
+ <path
59
+ 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"
60
+ style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#22242a;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
61
+ id="path4" />
62
+ <path
63
+ d="m 33.033125,218.10761 1.999878,1.14257 2.001945,-1.14257 z"
64
+ style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#22242a;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
65
+ id="path3" />
66
+ </g>
67
+ </g>
68
+ </g>
69
+ </svg>
@@ -0,0 +1,53 @@
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-signal-catch.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="40.164504"
28
+ inkscape:cy="13.083891"
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(-0.19843645,-215.30468)">
42
+ <circle
43
+ cx="4.365624"
44
+ cy="219.47186"
45
+ r="3.96875"
46
+ style="fill:none;stroke:#22242a;stroke-width:0.396875px;stroke-linecap:round;stroke-linejoin:round"
47
+ id="circle90" />
48
+ <path
49
+ d="m 4.3656239,216.61437 2.38125,4.28625 h -4.7625 z"
50
+ style="fill:none;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
51
+ id="path90" />
52
+ </g>
53
+ </svg>
@@ -0,0 +1,53 @@
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-signal-throw.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="32.334876"
28
+ inkscape:cy="-6.7005731"
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(-53.115108,-210.80677)">
42
+ <circle
43
+ cx="57.282295"
44
+ cy="214.97395"
45
+ r="3.96875"
46
+ style="fill:none;stroke:#22242a;stroke-width:0.396875px;stroke-linecap:round;stroke-linejoin:round"
47
+ id="circle93" />
48
+ <path
49
+ d="m 57.282297,212.11646 2.38125,4.28625 h -4.7625 z"
50
+ style="fill:#22242a;stroke:#22242a;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:round"
51
+ id="path93" />
52
+ </g>
53
+ </svg>