diff --git a/docs/home/300-react-to-events/2-primitive-catalogue/30-mina/10-generic.md b/docs/home/300-react-to-events/2-primitive-catalogue/30-mina/10-generic.md
new file mode 100644
index 00000000..5721ab2b
--- /dev/null
+++ b/docs/home/300-react-to-events/2-primitive-catalogue/30-mina/10-generic.md
@@ -0,0 +1,48 @@
+# Generic Primitives
+
+- [Generic](#generic), allowing you to provide an arbitrary contract address to track any [event / action](https://docs.minaprotocol.com/zkapps/o1js/fetch-events-and-actions) it emits, allowing you to collect data even from smart contract standards not directly supported by other primitives.
+
+## Generic
+
+Generic primitives allow getting all of the events or all the actions provided the address of a zkApp.
+
+### Example configuration
+
+```yaml
+extensions:
+  - name: "mina generic event"
+    type: "mina-event-generic"
+    address: "B62qoP3xe9zZJmBDacZPL8roBivpVKhAiDNtpAM9RCAW579JnJo1ZL2"
+    startBlockHeight: 0
+    scheduledPrefix: "mge"
+    network: 'Mina'
+  - name: "mina generic action"
+    type: "mina-action-generic"
+    address: "B62qoP3xe9zZJmBDacZPL8roBivpVKhAiDNtpAM9RCAW579JnJo1ZL2"
+    startBlockHeight: 0
+    scheduledPrefix: "mga"
+    network: 'Mina'
+```
+
+
+## Concise format
+
+```
+minaGenericEvent = mge|data
+minaGenericAction = mga|data
+```
+
+```ts
+const minaGenericEvent: ParserRecord<MinaGenericEvent> = {
+  data: (keyName: string, input: string) => {
+    return JSON.parse(input);
+  },
+};
+
+const minaGenericAction: ParserRecord<MinaGenericAction> = {
+  data: (keyName: string, input: string) => {
+    return JSON.parse(input);
+  },
+};
+```
+
diff --git a/docs/home/300-react-to-events/2-primitive-catalogue/30-mina/_category_.json b/docs/home/300-react-to-events/2-primitive-catalogue/30-mina/_category_.json
new file mode 100644
index 00000000..083fabf2
--- /dev/null
+++ b/docs/home/300-react-to-events/2-primitive-catalogue/30-mina/_category_.json
@@ -0,0 +1,3 @@
+{
+    "label": "Mina Primitives"
+  }
\ No newline at end of file
diff --git a/docs/home/300-react-to-events/3-funnel-types/600-mina-funnel.mdx b/docs/home/300-react-to-events/3-funnel-types/600-mina-funnel.mdx
new file mode 100644
index 00000000..45fe5ddc
--- /dev/null
+++ b/docs/home/300-react-to-events/3-funnel-types/600-mina-funnel.mdx
@@ -0,0 +1,95 @@
+import Merge from "./mina-funnel-merge.svg";
+
+# Mina funnel
+
+## Configuration
+
+The Mina funnel requires access to historical chain data which is acquired
+through an [archive
+node](https://docs.minaprotocol.com/node-operators/archive-node). A connection
+to the database is required. 
+
+```yaml
+Mina:
+  type: mina
+  archiveConnectionString: "postgresql://postgres:postgres@localhost:5432/archive"
+  confirmationDepth: 15
+  delay: 3600
+```
+
+- `delay` is in seconds.
+- `confirmationDepth` is in number of blocks. If not provided then the archive's
+node configuration is used (blocks with a chain_status of *canonical*).
+
+## Conceptually
+
+This funnel has the following steps in the readData function:
+
+1. Fetch blocks & timestamps from the underlying funnel. This can be either a
+funnel for a single chain, like the [block funnel](300-block-funnel.md), or it
+can be a collection of wrapped funnels involving multiple networks.
+2. Fetch the latest canonical Mina block timestamp. If `confirmationDepth` has a
+value in the configuration, this is done by getting the block at that particular
+height. Otherwise this is done by querying the `blocks` table to get the latest
+block which has `canonical` status. In this case the block confirmation
+parameters are defined by the archive's configuration.
+4. Query the database for events and actions in a certain timestamp range. The
+upper bound of this timestamp range is defined by the blocks fetched at step 1.
+The lower bound is the upper bound on the previous round.
+5. Merge the primitives with the underlying funnel.
+
+### Presync
+
+The presync phase finishes after indexing all the blocks with a timestamp
+strictly lower than `START_BLOCK_HEIGHT - delay`.  Each primitive is paginated
+individually, and progress is tracked in the `cde_tracking_cursor_pagination`
+table. The presync finishes when there are no more events in the range for any
+of the configured extensions.
+
+## Determinism
+
+The merging of events with the underlying funnel works similarly to the
+[parallel evm funnel](500-parallel-evm-funnel.mdx). The events from the Mina
+chain are delayed by the `delay` configuration instead, to account for
+probabilistic finality. This is done by subtracting the delay from the main evm
+chain for the merging process (without affecting the timestamp of the merged
+`ChainData`). This has the effect that if the main evm chain is running in real
+time, the events that are merged into the current block are `delay` seconds old.
+
+<Merge className="img-full" style={{ height: "auto" }} />
+
+## Finalizing blocks
+
+Since events parsed by the state transition are final, we need to be sure that
+we have processed all the Mina events that are associated with a certain block
+height before supplying those to the state transition. To guarantee this, the
+Mina funnel will wait for the timestamp of the latest `canonical` block to be
+greater or equal than the timestamp of the target block.  This is necessary
+because otherwise there is no guarantee that the needed blocks are already
+propagated to the archive node, or in case there is a re-org.
+
+Internally this is done by querying the `blocks` table for the latest block with
+a status of `canonical`.
+
+## Indexer Database
+
+This funnel requires no change to the Mina archive node database schema. The following tables are used to
+retrieve the necessary information:
+
+- account_identifiers
+- accounts_accessed
+- blocks
+- blocks_zkapp_commands
+- zkapp_account_update
+- zkapp_account_update_body
+- zkapp_commands
+- zkapp_events
+- zkapp_field
+- zkapp_field_array
+
+Usage is similar to the one used in [Archive-Node-Api](https://github.com/o1-labs/Archive-Node-API) except for the following:
+
+- `blocks` are filtered by the `timestamp` column when needed.
+- `zkapp_commands` is filtered by `hash` to paginate the results during presync.
+- `blocks` is used to find the the latest finalized block, which is not a
+use-case supported by Archive-Node-Api.
\ No newline at end of file
diff --git a/docs/home/300-react-to-events/3-funnel-types/mina-funnel-merge.svg b/docs/home/300-react-to-events/3-funnel-types/mina-funnel-merge.svg
new file mode 100644
index 00000000..5df9ac52
--- /dev/null
+++ b/docs/home/300-react-to-events/3-funnel-types/mina-funnel-merge.svg
@@ -0,0 +1,307 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   width="497"
+   height="170"
+   viewBox="0 0 497 170"
+   fill="none"
+   version="1.1"
+   id="svg34"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg">
+  <defs
+     id="defs34" />
+  <line
+     x1="91"
+     y1="75.5"
+     x2="495"
+     y2="75.5"
+     stroke="#ffffff"
+     stroke-dasharray="2, 2"
+     id="line1" />
+  <line
+     x1="91"
+     y1="144.5"
+     x2="495"
+     y2="144.5"
+     stroke="#ffffff"
+     stroke-dasharray="2, 2"
+     id="line2" />
+  <path
+     d="M 157,59 H 97 v 30 h 60 z"
+     fill="#f0f0f0"
+     stroke="#808080"
+     stroke-width="1.5"
+     id="path2" />
+  <path
+     d="M 128.183,70.2727 V 79 h -1.057 v -7.6193 h -0.051 l -2.131,1.4148 v -1.0739 l 2.182,-1.4489 z"
+     fill="#000000"
+     id="path3" />
+  <path
+     d="M 153.091,80.6364 V 85 h -0.528 v -3.8097 h -0.026 l -1.065,0.7074 v -0.5369 l 1.091,-0.7244 z"
+     fill="#000000"
+     id="path4" />
+  <path
+     d="M 62,99 H 18 v 22 h 44 z"
+     fill="#f0f0f0"
+     stroke="#808080"
+     id="path5" />
+  <path
+     d="m 26.9444,105.3952 v 0.4262 h -1.696 v -0.4262 z m -1.2017,-0.784 h 0.5028 v 3.1193 c 0,0.142 0.0206,0.2485 0.0618,0.3196 0.0426,0.0696 0.0966,0.1164 0.162,0.1406 0.0667,0.0227 0.137,0.0341 0.2109,0.0341 0.0554,0 0.1008,-0.003 0.1364,-0.008 0.0355,-0.007 0.0639,-0.0128 0.0852,-0.0171 l 0.1023,0.4517 c -0.0341,0.0128 -0.0817,0.0256 -0.1428,0.0384 -0.0611,0.0142 -0.1385,0.0213 -0.2322,0.0213 -0.1421,0 -0.2813,-0.0306 -0.4177,-0.0916 -0.1349,-0.0611 -0.2471,-0.1542 -0.3366,-0.2792 -0.0881,-0.125 -0.1321,-0.2826 -0.1321,-0.473 z m 1.9581,4.0568 v -3.2728 h 0.5028 v 3.2728 z m 0.2557,-3.8182 c -0.098,0 -0.1826,-0.0334 -0.2536,-0.1002 -0.0696,-0.0667 -0.1044,-0.147 -0.1044,-0.2407 0,-0.0938 0.0348,-0.174 0.1044,-0.2408 0.071,-0.0668 0.1556,-0.1001 0.2536,-0.1001 0.098,0 0.1818,0.0333 0.2514,0.1001 0.071,0.0668 0.1065,0.147 0.1065,0.2408 0,0.0937 -0.0355,0.174 -0.1065,0.2407 -0.0696,0.0668 -0.1534,0.1002 -0.2514,0.1002 z m 1.1681,3.8182 v -3.2728 h 0.4858 v 0.5114 h 0.0426 c 0.0682,-0.1747 0.1783,-0.3104 0.3303,-0.407 0.152,-0.098 0.3345,-0.147 0.5476,-0.147 0.2159,0 0.3956,0.049 0.539,0.147 0.1449,0.0966 0.2578,0.2323 0.3388,0.407 h 0.0341 c 0.0838,-0.169 0.2095,-0.3033 0.3771,-0.4027 0.1676,-0.1008 0.3686,-0.1513 0.603,-0.1513 0.2926,0 0.532,0.0916 0.7181,0.2749 0.186,0.1818 0.2791,0.4652 0.2791,0.8501 v 2.1904 h -0.5029 v -2.1904 c 0,-0.2414 -0.066,-0.414 -0.1981,-0.5177 -0.1321,-0.1037 -0.2877,-0.1556 -0.4666,-0.1556 -0.2302,0 -0.4084,0.0696 -0.5348,0.2088 -0.1265,0.1378 -0.1897,0.3125 -0.1897,0.5242 v 2.1307 h -0.5113 v -2.2415 c 0,-0.1861 -0.0604,-0.3359 -0.1811,-0.4496 -0.1208,-0.115 -0.2763,-0.1726 -0.4667,-0.1726 -0.1306,0 -0.2528,0.0348 -0.3664,0.1044 -0.1123,0.0696 -0.2032,0.1662 -0.2728,0.2898 -0.0682,0.1222 -0.1022,0.2635 -0.1022,0.424 v 2.0455 z m 6.587,0.0682 c -0.3153,0 -0.5873,-0.0697 -0.816,-0.2089 -0.2273,-0.1406 -0.4027,-0.3366 -0.5263,-0.588 -0.1222,-0.2529 -0.1832,-0.5469 -0.1832,-0.8821 0,-0.3353 0.061,-0.6307 0.1832,-0.8864 0.1236,-0.2571 0.2954,-0.4574 0.5156,-0.6008 0.2216,-0.1449 0.4801,-0.2174 0.7756,-0.2174 0.1704,0 0.3388,0.0284 0.505,0.0853 0.1661,0.0568 0.3174,0.1491 0.4538,0.2769 0.1364,0.1265 0.245,0.2941 0.326,0.5029 0.0809,0.2088 0.1214,0.4659 0.1214,0.7713 v 0.2131 H 34.544 v -0.4347 h 2.0114 c 0,-0.1847 -0.037,-0.3494 -0.1108,-0.4943 -0.0725,-0.1449 -0.1762,-0.2593 -0.3111,-0.3431 -0.1335,-0.0838 -0.2912,-0.1257 -0.473,-0.1257 -0.2003,0 -0.3736,0.0497 -0.5199,0.1492 -0.1449,0.098 -0.2564,0.2258 -0.3345,0.3835 -0.0781,0.1577 -0.1172,0.3267 -0.1172,0.5071 v 0.2898 c 0,0.2471 0.0426,0.4567 0.1278,0.6285 0.0867,0.1705 0.2067,0.3005 0.3601,0.3899 0.1534,0.0881 0.3317,0.1321 0.5348,0.1321 0.1321,0 0.2514,-0.0184 0.358,-0.0554 0.1079,-0.0383 0.201,-0.0951 0.2791,-0.1704 0.0781,-0.0767 0.1385,-0.1719 0.1811,-0.2855 l 0.4858,0.1363 c -0.0511,0.1648 -0.1371,0.3097 -0.2578,0.4347 -0.1208,0.1236 -0.2699,0.2202 -0.4475,0.2898 -0.1775,0.0682 -0.3771,0.1023 -0.5987,0.1023 z m 4.4382,-2.608 -0.4517,0.1278 c -0.0284,-0.0752 -0.0703,-0.1484 -0.1257,-0.2194 -0.054,-0.0725 -0.1278,-0.1321 -0.2216,-0.179 -0.0937,-0.0469 -0.2138,-0.0703 -0.3601,-0.0703 -0.2002,0 -0.3671,0.0462 -0.5007,0.1385 -0.1321,0.0909 -0.1981,0.2067 -0.1981,0.3473 0,0.125 0.0454,0.2237 0.1363,0.2961 0.0909,0.0725 0.233,0.1329 0.4262,0.1812 l 0.4858,0.1193 c 0.2926,0.071 0.5106,0.1797 0.6541,0.326 0.1435,0.1449 0.2152,0.3316 0.2152,0.5603 0,0.1875 -0.054,0.3552 -0.1619,0.5029 -0.1066,0.1477 -0.2557,0.2642 -0.4475,0.3494 -0.1917,0.0852 -0.4148,0.1279 -0.669,0.1279 -0.3338,0 -0.6101,-0.0725 -0.8289,-0.2174 -0.2187,-0.1449 -0.3572,-0.3565 -0.4154,-0.6349 l 0.4772,-0.1193 c 0.0455,0.1761 0.1314,0.3082 0.2578,0.3963 0.1279,0.088 0.2948,0.1321 0.5008,0.1321 0.2343,0 0.4204,-0.0497 0.5582,-0.1492 0.1392,-0.1008 0.2088,-0.2216 0.2088,-0.3622 0,-0.1136 -0.0398,-0.2088 -0.1193,-0.2855 -0.0796,-0.0781 -0.2017,-0.1364 -0.3665,-0.1747 l -0.5454,-0.1279 c -0.2998,-0.071 -0.5199,-0.1811 -0.6606,-0.3302 -0.1392,-0.1506 -0.2088,-0.3388 -0.2088,-0.5646 0,-0.1847 0.0519,-0.3481 0.1556,-0.4901 0.1051,-0.1421 0.2478,-0.2536 0.4282,-0.3345 0.1819,-0.081 0.3878,-0.1215 0.6179,-0.1215 0.3239,0 0.5782,0.0711 0.7628,0.2131 0.1861,0.142 0.3182,0.3295 0.3963,0.5625 z m 2.2399,-0.733 v 0.4262 h -1.696 v -0.4262 z m -1.2017,-0.784 h 0.5028 v 3.1193 c 0,0.142 0.0206,0.2485 0.0618,0.3196 0.0426,0.0696 0.0966,0.1164 0.162,0.1406 0.0667,0.0227 0.137,0.0341 0.2109,0.0341 0.0554,0 0.1009,-0.003 0.1364,-0.008 0.0355,-0.007 0.0639,-0.0128 0.0852,-0.0171 l 0.1023,0.4517 c -0.0341,0.0128 -0.0817,0.0256 -0.1428,0.0384 -0.0611,0.0142 -0.1385,0.0213 -0.2322,0.0213 -0.1421,0 -0.2813,-0.0306 -0.4176,-0.0916 -0.135,-0.0611 -0.2472,-0.1542 -0.3367,-0.2792 -0.0881,-0.125 -0.1321,-0.2826 -0.1321,-0.473 z m 2.9212,4.1335 c -0.2074,0 -0.3956,-0.0391 -0.5647,-0.1172 -0.169,-0.0796 -0.3032,-0.1939 -0.4027,-0.3431 -0.0994,-0.1505 -0.1491,-0.3323 -0.1491,-0.5454 0,-0.1875 0.0369,-0.3395 0.1108,-0.456 0.0739,-0.1179 0.1726,-0.2102 0.2962,-0.277 0.1235,-0.0667 0.2599,-0.1164 0.409,-0.1491 0.1506,-0.0341 0.3019,-0.0611 0.4539,-0.081 0.1988,-0.0255 0.3601,-0.0447 0.4836,-0.0575 0.125,-0.0142 0.216,-0.0376 0.2728,-0.0703 0.0582,-0.0327 0.0873,-0.0895 0.0873,-0.1705 v -0.017 c 0,-0.2102 -0.0575,-0.3736 -0.1726,-0.4901 -0.1136,-0.1165 -0.2862,-0.1747 -0.5177,-0.1747 -0.2401,0 -0.4283,0.0526 -0.5646,0.1577 -0.1364,0.1051 -0.2323,0.2173 -0.2877,0.3366 l -0.4773,-0.1704 c 0.0853,-0.1989 0.1989,-0.3537 0.341,-0.4645 0.1434,-0.1122 0.2997,-0.1904 0.4687,-0.2344 0.1705,-0.0454 0.3381,-0.0682 0.5028,-0.0682 0.1052,0 0.2259,0.0128 0.3623,0.0384 0.1377,0.0241 0.2706,0.0746 0.3984,0.1513 0.1293,0.0767 0.2365,0.1924 0.3217,0.3473 0.0853,0.1548 0.1279,0.3622 0.1279,0.6221 v 2.1563 h -0.5029 v -0.4432 h -0.0255 c -0.0341,0.071 -0.0909,0.147 -0.1705,0.228 -0.0795,0.0809 -0.1854,0.1498 -0.3175,0.2066 -0.1321,0.0569 -0.2933,0.0853 -0.4836,0.0853 z m 0.0767,-0.4517 c 0.1988,0 0.3665,-0.0391 0.5028,-0.1172 0.1378,-0.0781 0.2415,-0.179 0.3111,-0.3026 0.071,-0.1236 0.1065,-0.2535 0.1065,-0.3899 v -0.4602 c -0.0213,0.0256 -0.0682,0.049 -0.1406,0.0703 -0.071,0.0199 -0.1534,0.0376 -0.2472,0.0533 -0.0923,0.0142 -0.1825,0.027 -0.2706,0.0383 -0.0866,0.01 -0.1569,0.0185 -0.2109,0.0256 -0.1307,0.017 -0.2528,0.0447 -0.3665,0.0831 -0.1122,0.0369 -0.2031,0.093 -0.2727,0.1683 -0.0682,0.0739 -0.1023,0.1747 -0.1023,0.3026 0,0.1747 0.0647,0.3068 0.1939,0.3963 0.1307,0.088 0.2962,0.1321 0.4965,0.1321 z m 2.3411,0.375 v -3.2728 h 0.4858 v 0.5114 h 0.0426 c 0.0682,-0.1747 0.1782,-0.3104 0.3302,-0.407 0.152,-0.098 0.3345,-0.147 0.5476,-0.147 0.2159,0 0.3956,0.049 0.5391,0.147 0.1449,0.0966 0.2578,0.2323 0.3388,0.407 h 0.034 c 0.0838,-0.169 0.2096,-0.3033 0.3772,-0.4027 0.1676,-0.1008 0.3686,-0.1513 0.603,-0.1513 0.2926,0 0.5319,0.0916 0.718,0.2749 0.1861,0.1818 0.2791,0.4652 0.2791,0.8501 v 2.1904 h -0.5028 v -2.1904 c 0,-0.2414 -0.0661,-0.414 -0.1982,-0.5177 -0.1321,-0.1037 -0.2876,-0.1556 -0.4666,-0.1556 -0.2301,0 -0.4084,0.0696 -0.5348,0.2088 -0.1264,0.1378 -0.1896,0.3125 -0.1896,0.5242 v 2.1307 H 48.419 v -2.2415 c 0,-0.1861 -0.0604,-0.3359 -0.1811,-0.4496 -0.1207,-0.115 -0.2763,-0.1726 -0.4666,-0.1726 -0.1307,0 -0.2529,0.0348 -0.3665,0.1044 -0.1122,0.0696 -0.2031,0.1662 -0.2727,0.2898 -0.0682,0.1222 -0.1023,0.2635 -0.1023,0.424 v 2.0455 z m 5.2148,1.2272 v -4.5 h 0.4858 v 0.5199 h 0.0597 c 0.0369,-0.0568 0.088,-0.1292 0.1534,-0.2173 0.0667,-0.0895 0.1619,-0.169 0.2855,-0.2386 0.125,-0.0711 0.294,-0.1066 0.5071,-0.1066 0.2755,0 0.5184,0.0689 0.7287,0.2067 0.2102,0.1378 0.3743,0.3331 0.4922,0.5859 0.1179,0.2529 0.1768,0.5512 0.1768,0.8949 0,0.3466 -0.0589,0.647 -0.1768,0.9013 -0.1179,0.2528 -0.2813,0.4489 -0.4901,0.5881 -0.2088,0.1378 -0.4496,0.2067 -0.7223,0.2067 -0.2102,0 -0.3785,-0.0349 -0.505,-0.1045 -0.1264,-0.071 -0.2237,-0.1512 -0.2919,-0.2407 -0.0682,-0.0909 -0.1207,-0.1662 -0.1576,-0.2259 h -0.0427 v 1.7301 z m 0.4943,-2.8636 c 0,0.2472 0.0362,0.4652 0.1087,0.6541 0.0724,0.1875 0.1783,0.3345 0.3175,0.4411 0.1392,0.1051 0.3096,0.1576 0.5113,0.1576 0.2102,0 0.3857,-0.0554 0.5263,-0.1661 0.142,-0.1123 0.2486,-0.2628 0.3196,-0.4518 0.0724,-0.1903 0.1087,-0.4019 0.1087,-0.6349 0,-0.2301 -0.0355,-0.4375 -0.1066,-0.6222 -0.0696,-0.186 -0.1754,-0.3331 -0.3174,-0.441 -0.1407,-0.1094 -0.3175,-0.1641 -0.5306,-0.1641 -0.2045,0 -0.3764,0.0519 -0.5156,0.1556 -0.1392,0.1022 -0.2443,0.2457 -0.3153,0.4304 -0.0711,0.1832 -0.1066,0.397 -0.1066,0.6413 z"
+     fill="#000000"
+     id="path6" />
+  <path
+     d="m 35.089,117.668 v -2.9091 h 0.3352 v 1.0738 h 0.0284 c 0.0246,-0.0378 0.0587,-0.0861 0.1023,-0.1448 0.0445,-0.0597 0.108,-0.1127 0.1903,-0.1591 0.0834,-0.0474 0.1961,-0.0711 0.3381,-0.0711 0.1837,0 0.3457,0.046 0.4858,0.1378 0.1402,0.0919 0.2495,0.2221 0.3281,0.3907 0.0786,0.1685 0.1179,0.3674 0.1179,0.5965 0,0.2311 -0.0393,0.4314 -0.1179,0.6009 -0.0786,0.1686 -0.1875,0.2992 -0.3267,0.392 -0.1392,0.0919 -0.2997,0.1378 -0.4815,0.1378 -0.1402,0 -0.2524,-0.0232 -0.3367,-0.0696 -0.0842,-0.0473 -0.1491,-0.1008 -0.1946,-0.1605 -0.0454,-0.0606 -0.0805,-0.1108 -0.1051,-0.1506 h -0.0397 v 0.3353 z m 0.3295,-1.0909 c 0,0.1647 0.0242,0.3101 0.0725,0.436 0.0483,0.125 0.1188,0.2231 0.2116,0.2941 0.0928,0.07 0.2065,0.1051 0.3409,0.1051 0.1402,0 0.2571,-0.0369 0.3509,-0.1108 0.0947,-0.0748 0.1657,-0.1752 0.2131,-0.3011 0.0483,-0.1269 0.0724,-0.268 0.0724,-0.4233 0,-0.1534 -0.0237,-0.2917 -0.071,-0.4148 -0.0464,-0.1241 -0.117,-0.2221 -0.2117,-0.294 -0.0937,-0.073 -0.2116,-0.1094 -0.3537,-0.1094 -0.1363,0 -0.2509,0.0345 -0.3437,0.1037 -0.0928,0.0682 -0.1629,0.1638 -0.2102,0.2869 -0.0474,0.1222 -0.0711,0.2647 -0.0711,0.4276 z m 2.4446,-1.8182 v 2.9091 h -0.3352 v -2.9091 z m 1.5004,2.9545 c -0.197,0 -0.3698,-0.0469 -0.5185,-0.1406 -0.1477,-0.0938 -0.2632,-0.2249 -0.3466,-0.3935 -0.0823,-0.1685 -0.1235,-0.3655 -0.1235,-0.5909 0,-0.2272 0.0412,-0.4256 0.1235,-0.5951 0.0834,-0.1696 0.1989,-0.3012 0.3466,-0.3949 0.1487,-0.0938 0.3215,-0.1407 0.5185,-0.1407 0.197,0 0.3693,0.0469 0.517,0.1407 0.1487,0.0937 0.2642,0.2253 0.3466,0.3949 0.0834,0.1695 0.125,0.3679 0.125,0.5951 0,0.2254 -0.0416,0.4224 -0.125,0.5909 -0.0824,0.1686 -0.1979,0.2997 -0.3466,0.3935 -0.1477,0.0937 -0.32,0.1406 -0.517,0.1406 z m 0,-0.3011 c 0.1496,0 0.2727,-0.0384 0.3693,-0.1151 0.0966,-0.0767 0.1681,-0.1775 0.2145,-0.3025 0.0464,-0.125 0.0696,-0.2604 0.0696,-0.4063 0,-0.1458 -0.0232,-0.2817 -0.0696,-0.4076 -0.0464,-0.126 -0.1179,-0.2278 -0.2145,-0.3054 -0.0966,-0.0777 -0.2197,-0.1165 -0.3693,-0.1165 -0.1496,0 -0.2727,0.0388 -0.3693,0.1165 -0.0966,0.0776 -0.1681,0.1794 -0.2145,0.3054 -0.0464,0.1259 -0.0696,0.2618 -0.0696,0.4076 0,0.1459 0.0232,0.2813 0.0696,0.4063 0.0464,0.125 0.1179,0.2258 0.2145,0.3025 0.0966,0.0767 0.2197,0.1151 0.3693,0.1151 z m 2.3867,0.3011 c -0.2045,0 -0.3807,-0.0483 -0.5284,-0.1449 -0.1477,-0.0966 -0.2614,-0.2296 -0.3409,-0.3991 -0.0796,-0.1695 -0.1193,-0.3632 -0.1193,-0.581 0,-0.2216 0.0407,-0.4171 0.1221,-0.5866 0.0824,-0.1705 0.197,-0.3035 0.3438,-0.3992 0.1477,-0.0966 0.3201,-0.1449 0.517,-0.1449 0.1534,0 0.2917,0.0285 0.4148,0.0853 0.1231,0.0568 0.224,0.1363 0.3026,0.2386 0.0786,0.1023 0.1273,0.2216 0.1463,0.358 h -0.3353 c -0.0255,-0.0995 -0.0823,-0.1875 -0.1704,-0.2642 -0.0871,-0.0777 -0.2046,-0.1165 -0.3523,-0.1165 -0.1307,0 -0.2453,0.0341 -0.3437,0.1023 -0.0976,0.0672 -0.1738,0.1624 -0.2287,0.2855 -0.054,0.1221 -0.081,0.2656 -0.081,0.4304 0,0.1685 0.0265,0.3153 0.0795,0.4403 0.054,0.125 0.1298,0.2221 0.2273,0.2912 0.0985,0.0691 0.214,0.1037 0.3466,0.1037 0.0871,0 0.1662,-0.0152 0.2372,-0.0455 0.0711,-0.0303 0.1312,-0.0738 0.1804,-0.1306 0.0493,-0.0569 0.0843,-0.125 0.1051,-0.2046 h 0.3353 c -0.019,0.1288 -0.0658,0.2448 -0.1407,0.348 -0.0738,0.1023 -0.1718,0.1837 -0.294,0.2443 -0.1212,0.0597 -0.2623,0.0895 -0.4233,0.0895 z m 1.6605,-0.8409 -0.0057,-0.4148 h 0.0682 l 0.9546,-0.9715 h 0.4147 l -1.017,1.0284 h -0.0284 z m -0.3125,0.7955 v -2.9091 h 0.3353 v 2.9091 z m 1.3864,0 -0.8523,-1.0796 0.2387,-0.2329 1.0397,1.3125 z m 2.2496,-1.3125 v 1.3125 H 46.399 v -2.1818 h 0.3239 v 0.3409 h 0.0284 c 0.0511,-0.1108 0.1288,-0.1999 0.2329,-0.2671 0.1042,-0.0682 0.2387,-0.1023 0.4034,-0.1023 0.1478,0 0.277,0.0303 0.3878,0.091 0.1108,0.0596 0.197,0.1505 0.2585,0.2727 0.0616,0.1212 0.0924,0.2746 0.0924,0.4602 v 1.3864 h -0.3352 v -1.3637 c 0,-0.1714 -0.0446,-0.3049 -0.1336,-0.4005 -0.089,-0.0966 -0.2111,-0.1449 -0.3664,-0.1449 -0.1071,0 -0.2027,0.0232 -0.287,0.0696 -0.0833,0.0464 -0.1491,0.1141 -0.1974,0.2031 -0.0483,0.089 -0.0725,0.197 -0.0725,0.3239 z m 3.3796,0.4204 v -1.2897 h 0.3353 v 2.1818 h -0.3353 v -0.3693 h -0.0227 c -0.0511,0.1107 -0.1307,0.205 -0.2386,0.2826 -0.108,0.0767 -0.2443,0.1151 -0.4091,0.1151 -0.1364,0 -0.2576,-0.0299 -0.3636,-0.0895 -0.1061,-0.0606 -0.1894,-0.1515 -0.25,-0.2727 -0.0606,-0.1222 -0.091,-0.2761 -0.091,-0.4617 v -1.3863 h 0.3353 v 1.3636 c 0,0.1591 0.0445,0.286 0.1335,0.3807 0.09,0.0947 0.2045,0.142 0.3437,0.142 0.0834,0 0.1681,-0.0213 0.2543,-0.0639 0.0871,-0.0426 0.16,-0.108 0.2188,-0.196 0.0596,-0.0881 0.0894,-0.2003 0.0894,-0.3367 z m 0.9493,0.8921 v -2.1818 h 0.3238 v 0.3409 h 0.0284 c 0.0455,-0.1165 0.1189,-0.207 0.2202,-0.2713 0.1013,-0.0654 0.223,-0.0981 0.3651,-0.0981 0.1439,0 0.2637,0.0327 0.3593,0.0981 0.0966,0.0643 0.1719,0.1548 0.2259,0.2713 h 0.0227 c 0.0559,-0.1127 0.1397,-0.2022 0.2514,-0.2685 0.1118,-0.0672 0.2458,-0.1009 0.402,-0.1009 0.1951,0 0.3547,0.0611 0.4787,0.1833 0.1241,0.1212 0.1861,0.3101 0.1861,0.5667 v 1.4603 h -0.3352 v -1.4603 c 0,-0.1609 -0.0441,-0.276 -0.1321,-0.3451 -0.0881,-0.0692 -0.1918,-0.1037 -0.3111,-0.1037 -0.1534,0 -0.2723,0.0464 -0.3565,0.1392 -0.0843,0.0918 -0.1265,0.2083 -0.1265,0.3494 v 1.4205 h -0.3409 v -1.4943 c 0,-0.1241 -0.0402,-0.224 -0.1207,-0.2998 -0.0805,-0.0767 -0.1842,-0.115 -0.3111,-0.115 -0.0871,0 -0.1685,0.0232 -0.2443,0.0696 -0.0748,0.0464 -0.1354,0.1108 -0.1818,0.1932 -0.0455,0.0814 -0.0682,0.1756 -0.0682,0.2826 v 1.3637 z m 3.522,0 v -2.9091 h 0.3352 v 1.0738 h 0.0284 c 0.0246,-0.0378 0.0587,-0.0861 0.1023,-0.1448 0.0445,-0.0597 0.1079,-0.1127 0.1903,-0.1591 0.0834,-0.0474 0.1961,-0.0711 0.3381,-0.0711 0.1837,0 0.3456,0.046 0.4858,0.1378 0.1402,0.0919 0.2495,0.2221 0.3281,0.3907 0.0786,0.1685 0.1179,0.3674 0.1179,0.5965 0,0.2311 -0.0393,0.4314 -0.1179,0.6009 -0.0786,0.1686 -0.1875,0.2992 -0.3267,0.392 -0.1392,0.0919 -0.2997,0.1378 -0.4815,0.1378 -0.1402,0 -0.2524,-0.0232 -0.3367,-0.0696 -0.0842,-0.0473 -0.1491,-0.1008 -0.1946,-0.1605 -0.0454,-0.0606 -0.0805,-0.1108 -0.1051,-0.1506 h -0.0398 v 0.3353 z m 0.3295,-1.0909 c 0,0.1647 0.0242,0.3101 0.0725,0.436 0.0483,0.125 0.1188,0.2231 0.2116,0.2941 0.0928,0.07 0.2065,0.1051 0.3409,0.1051 0.1402,0 0.2571,-0.0369 0.3509,-0.1108 0.0947,-0.0748 0.1657,-0.1752 0.2131,-0.3011 0.0482,-0.1269 0.0724,-0.268 0.0724,-0.4233 0,-0.1534 -0.0237,-0.2917 -0.071,-0.4148 -0.0464,-0.1241 -0.117,-0.2221 -0.2117,-0.294 -0.0937,-0.073 -0.2116,-0.1094 -0.3537,-0.1094 -0.1363,0 -0.2509,0.0345 -0.3437,0.1037 -0.0928,0.0682 -0.1629,0.1638 -0.2102,0.2869 -0.0474,0.1222 -0.0711,0.2647 -0.0711,0.4276 z m 3.0242,1.1363 c -0.2102,0 -0.3916,-0.0464 -0.5441,-0.1392 -0.1515,-0.0937 -0.2684,-0.2244 -0.3508,-0.392 -0.0814,-0.1686 -0.1222,-0.3646 -0.1222,-0.5881 0,-0.2235 0.0408,-0.4204 0.1222,-0.5909 0.0824,-0.1714 0.197,-0.3049 0.3437,-0.4006 0.1478,-0.0966 0.3201,-0.1449 0.5171,-0.1449 0.1136,0 0.2258,0.019 0.3366,0.0569 0.1108,0.0378 0.2117,0.0994 0.3026,0.1846 0.0909,0.0843 0.1633,0.196 0.2173,0.3352 0.054,0.1393 0.081,0.3107 0.081,0.5143 v 0.142 h -1.6818 v -0.2898 h 1.3409 c 0,-0.1231 -0.0246,-0.2329 -0.0739,-0.3295 -0.0483,-0.0966 -0.1174,-0.1728 -0.2074,-0.2287 -0.089,-0.0559 -0.1941,-0.0838 -0.3153,-0.0838 -0.1335,0 -0.2491,0.0331 -0.3466,0.0994 -0.0966,0.0654 -0.1709,0.1506 -0.223,0.2557 -0.0521,0.1051 -0.0781,0.2178 -0.0781,0.3381 v 0.1931 c 0,0.1648 0.0284,0.3045 0.0852,0.4191 0.0578,0.1136 0.1378,0.2003 0.24,0.2599 0.1023,0.0587 0.2212,0.0881 0.3566,0.0881 0.088,0 0.1676,-0.0123 0.2386,-0.0369 0.072,-0.0256 0.134,-0.0635 0.1861,-0.1137 0.0521,-0.0511 0.0923,-0.1146 0.1207,-0.1903 l 0.3239,0.0909 c -0.0341,0.1098 -0.0914,0.2064 -0.1719,0.2898 -0.0805,0.0823 -0.1799,0.1467 -0.2983,0.1931 -0.1183,0.0455 -0.2514,0.0682 -0.3991,0.0682 z m 1.4133,-0.0454 v -2.1818 h 0.3239 v 0.3295 h 0.0227 c 0.0398,-0.108 0.1118,-0.1956 0.2159,-0.2628 0.1042,-0.0672 0.2216,-0.1008 0.3523,-0.1008 0.0246,0 0.0554,4e-4 0.0923,0.001 0.037,9e-4 0.0649,0.002 0.0838,0.004 v 0.341 c -0.0113,-0.003 -0.0374,-0.007 -0.0781,-0.0128 -0.0398,-0.007 -0.0819,-0.01 -0.1264,-0.01 -0.1061,0 -0.2008,0.0223 -0.2841,0.0668 -0.0824,0.0435 -0.1477,0.1042 -0.196,0.1818 -0.0474,0.0767 -0.071,0.1643 -0.071,0.2628 v 1.3807 z"
+     fill="#000000"
+     id="path7" />
+  <path
+     d="m 257,59 h -60 v 30 h 60 z"
+     fill="#f0f0f0"
+     stroke="#ff0000"
+     stroke-width="2"
+     id="path8" />
+  <path
+     d="m 227.032,79.1193 c -0.563,0 -1.064,-0.0966 -1.504,-0.2898 -0.438,-0.1931 -0.786,-0.4616 -1.044,-0.8054 -0.256,-0.3465 -0.395,-0.7485 -0.418,-1.2059 h 1.074 c 0.023,0.2812 0.119,0.5241 0.29,0.7287 0.17,0.2017 0.393,0.3579 0.669,0.4687 0.275,0.1108 0.581,0.1662 0.916,0.1662 0.375,0 0.707,-0.0653 0.997,-0.196 0.29,-0.1307 0.517,-0.3125 0.682,-0.5455 0.165,-0.2329 0.247,-0.5028 0.247,-0.8096 0,-0.321 -0.079,-0.6037 -0.239,-0.848 -0.159,-0.2472 -0.392,-0.4404 -0.698,-0.5796 -0.307,-0.1392 -0.682,-0.2088 -1.125,-0.2088 h -0.699 v -0.9375 h 0.699 c 0.346,0 0.65,-0.0625 0.911,-0.1875 0.265,-0.125 0.471,-0.3011 0.618,-0.5284 0.151,-0.2273 0.226,-0.4943 0.226,-0.8011 0,-0.2955 -0.065,-0.5526 -0.196,-0.7713 -0.13,-0.2188 -0.315,-0.3892 -0.554,-0.5114 -0.236,-0.1222 -0.514,-0.1832 -0.835,-0.1832 -0.301,0 -0.585,0.0554 -0.852,0.1662 -0.264,0.1079 -0.48,0.2656 -0.648,0.473 -0.168,0.2045 -0.259,0.4517 -0.273,0.7414 h -1.022 c 0.017,-0.4573 0.154,-0.8579 0.413,-1.2017 0.258,-0.3466 0.596,-0.6164 1.014,-0.8096 0.421,-0.1932 0.882,-0.2898 1.385,-0.2898 0.54,0 1.003,0.1094 1.389,0.3281 0.387,0.2159 0.683,0.5015 0.891,0.8566 0.207,0.3551 0.311,0.7386 0.311,1.1505 0,0.4915 -0.129,0.9105 -0.388,1.2571 -0.256,0.3466 -0.604,0.5867 -1.044,0.7202 v 0.0682 c 0.551,0.0909 0.982,0.3253 1.291,0.7031 0.31,0.375 0.465,0.8395 0.465,1.3935 0,0.4744 -0.129,0.9005 -0.388,1.2784 -0.256,0.375 -0.605,0.6704 -1.048,0.8864 -0.443,0.2159 -0.948,0.3238 -1.513,0.3238 z"
+     fill="#000000"
+     id="path9" />
+  <path
+     d="m 250.635,85 v -0.3835 l 1.441,-1.5767 c 0.169,-0.1847 0.308,-0.3452 0.417,-0.4816 0.11,-0.1377 0.191,-0.267 0.243,-0.3877 0.054,-0.1222 0.081,-0.25 0.081,-0.3836 0,-0.1534 -0.037,-0.2862 -0.111,-0.3984 -0.072,-0.1122 -0.172,-0.1989 -0.298,-0.2599 -0.126,-0.0611 -0.268,-0.0917 -0.426,-0.0917 -0.168,0 -0.314,0.0348 -0.439,0.1044 -0.124,0.0682 -0.219,0.1641 -0.288,0.2877 -0.066,0.1236 -0.1,0.2684 -0.1,0.4346 h -0.503 c 0,-0.2556 0.059,-0.4801 0.177,-0.6733 0.118,-0.1931 0.279,-0.3437 0.482,-0.4517 0.204,-0.1079 0.434,-0.1619 0.688,-0.1619 0.256,0 0.482,0.054 0.68,0.1619 0.197,0.108 0.352,0.2536 0.464,0.4368 0.112,0.1833 0.168,0.3871 0.168,0.6115 0,0.1605 -0.029,0.3175 -0.087,0.4709 -0.057,0.152 -0.156,0.3217 -0.298,0.5092 -0.141,0.1861 -0.336,0.4134 -0.586,0.6819 l -0.98,1.0483 v 0.034 h 2.028 V 85 Z"
+     fill="#000000"
+     id="path10" />
+  <path
+     d="m 387,59 h -60 v 30 h 60 z"
+     fill="#f0f0f0"
+     stroke="#ff0000"
+     stroke-width="2"
+     id="path11" />
+  <path
+     d="m 356.98,79.1193 c -0.5,0 -0.95,-0.0994 -1.351,-0.2983 -0.4,-0.1988 -0.721,-0.4716 -0.963,-0.8182 -0.241,-0.3466 -0.373,-0.7414 -0.396,-1.1846 h 1.023 c 0.04,0.3949 0.219,0.7216 0.537,0.9801 0.321,0.2557 0.704,0.3835 1.15,0.3835 0.358,0 0.676,-0.0838 0.955,-0.2514 0.281,-0.1676 0.501,-0.3977 0.66,-0.6903 0.162,-0.2955 0.243,-0.6293 0.243,-1.0015 0,-0.3806 -0.084,-0.7201 -0.251,-1.0184 -0.165,-0.3012 -0.392,-0.5384 -0.682,-0.7117 -0.29,-0.1733 -0.621,-0.2613 -0.993,-0.2642 -0.267,-0.0028 -0.541,0.0384 -0.822,0.1236 -0.282,0.0824 -0.513,0.1889 -0.695,0.3196 l -0.989,-0.1193 0.529,-4.2955 h 4.534 v 0.9375 h -3.648 l -0.307,2.5739 h 0.052 c 0.178,-0.1421 0.403,-0.26 0.673,-0.3537 0.27,-0.0938 0.551,-0.1406 0.844,-0.1406 0.534,0 1.01,0.1278 1.427,0.3835 0.421,0.2528 0.75,0.5994 0.989,1.0398 0.241,0.4403 0.362,0.9431 0.362,1.5085 0,0.5568 -0.125,1.054 -0.375,1.4915 -0.247,0.4346 -0.588,0.7784 -1.023,1.0312 -0.434,0.25 -0.929,0.375 -1.483,0.375 z"
+     fill="#000000"
+     id="path12" />
+  <path
+     d="m 382.016,85.0597 c -0.281,0 -0.532,-0.0483 -0.752,-0.1449 -0.219,-0.0966 -0.393,-0.2309 -0.522,-0.4027 -0.128,-0.1733 -0.198,-0.3743 -0.209,-0.603 h 0.537 c 0.011,0.1406 0.06,0.2621 0.145,0.3643 0.085,0.1009 0.197,0.179 0.334,0.2344 0.138,0.0554 0.291,0.0831 0.458,0.0831 0.188,0 0.354,-0.0327 0.499,-0.098 0.145,-0.0653 0.259,-0.1563 0.341,-0.2727 0.082,-0.1165 0.124,-0.2514 0.124,-0.4049 0,-0.1605 -0.04,-0.3018 -0.12,-0.424 -0.079,-0.1235 -0.196,-0.2201 -0.349,-0.2897 -0.154,-0.0696 -0.341,-0.1044 -0.563,-0.1044 h -0.349 v -0.4688 h 0.349 c 0.174,0 0.326,-0.0312 0.456,-0.0937 0.132,-0.0625 0.235,-0.1506 0.309,-0.2642 0.075,-0.1137 0.113,-0.2472 0.113,-0.4006 0,-0.1477 -0.033,-0.2763 -0.098,-0.3857 -0.065,-0.1093 -0.158,-0.1946 -0.277,-0.2556 -0.118,-0.0611 -0.257,-0.0917 -0.417,-0.0917 -0.151,0 -0.293,0.0277 -0.427,0.0831 -0.132,0.054 -0.24,0.1328 -0.323,0.2365 -0.084,0.1023 -0.13,0.2259 -0.137,0.3708 h -0.511 c 0.008,-0.2287 0.077,-0.429 0.206,-0.6009 0.13,-0.1733 0.299,-0.3082 0.508,-0.4048 0.21,-0.0966 0.441,-0.1449 0.692,-0.1449 0.27,0 0.501,0.0547 0.695,0.1641 0.193,0.1079 0.341,0.2507 0.445,0.4282 0.104,0.1776 0.155,0.3694 0.155,0.5753 0,0.2458 -0.064,0.4553 -0.193,0.6286 -0.128,0.1733 -0.302,0.2933 -0.522,0.3601 v 0.034 c 0.275,0.0455 0.49,0.1627 0.645,0.3516 0.155,0.1875 0.232,0.4198 0.232,0.6967 0,0.2373 -0.064,0.4503 -0.193,0.6392 -0.128,0.1875 -0.303,0.3353 -0.525,0.4432 -0.221,0.108 -0.473,0.162 -0.756,0.162 z"
+     fill="#000000"
+     id="path13" />
+  <path
+     d="m 487,59 h -60 v 30 h 60 z"
+     fill="#f0f0f0"
+     stroke="#808080"
+     stroke-width="1.5"
+     id="path14" />
+  <path
+     d="m 454.748,79 3.904,-7.7216 v -0.0682 h -4.5 v -0.9375 h 5.591 v 0.9887 L 455.856,79 Z"
+     fill="#000000"
+     id="path15" />
+  <path
+     d="m 480.425,84.1051 v -0.4346 l 1.917,-3.0341 h 0.316 v 0.6733 h -0.213 l -1.449,2.2926 v 0.0341 h 2.582 v 0.4687 z M 482.479,85 v -1.027 -0.2024 -3.1342 h 0.502 V 85 Z"
+     fill="#000000"
+     id="path16" />
+  <path
+     d="m 187,129 h -60 v 30 h 60 z"
+     fill="#f0f0f0"
+     stroke="#808080"
+     stroke-width="1.5"
+     id="path17" />
+  <path
+     d="M 183.091,150.636 V 155 h -0.528 v -3.81 h -0.026 l -1.065,0.708 v -0.537 l 1.091,-0.725 z"
+     fill="#000000"
+     id="path18" />
+  <path
+     d="m 154.271,149 v -0.767 l 2.88,-3.1535 c 0.338,-0.3693 0.617,-0.6903 0.836,-0.963 0.218,-0.2756 0.38,-0.5341 0.485,-0.7756 0.108,-0.2443 0.162,-0.5 0.162,-0.767 0,-0.3069 -0.074,-0.5725 -0.221,-0.7969 -0.145,-0.2244 -0.344,-0.3977 -0.597,-0.5199 -0.253,-0.1222 -0.537,-0.1832 -0.852,-0.1832 -0.335,0 -0.628,0.0696 -0.878,0.2088 -0.247,0.1363 -0.439,0.3281 -0.575,0.5753 -0.134,0.2471 -0.201,0.5369 -0.201,0.8693 h -1.005 c 0,-0.5114 0.118,-0.9603 0.353,-1.3466 0.236,-0.3864 0.557,-0.6875 0.963,-0.9034 0.41,-0.2159 0.868,-0.3239 1.377,-0.3239 0.511,0 0.964,0.108 1.359,0.3239 0.395,0.2159 0.705,0.5071 0.929,0.8736 0.225,0.3664 0.337,0.7741 0.337,1.223 0,0.321 -0.058,0.6349 -0.175,0.9417 -0.113,0.304 -0.312,0.6435 -0.596,1.0185 -0.282,0.3721 -0.672,0.8267 -1.172,1.3636 l -1.961,2.0966 v 0.0682 h 4.057 V 149 Z"
+     fill="#000000"
+     id="path19" />
+  <path
+     d="m 307,129 h -60 v 30 h 60 z"
+     fill="#f0f0f0"
+     stroke="#008000"
+     stroke-width="2"
+     id="path20" />
+  <path
+     d="m 273.849,147.2102 v -0.8693 l 3.835,-6.0682 h 0.631 v 1.3466 h -0.426 l -2.898,4.5852 v 0.0682 h 5.165 v 0.9375 z M 277.957,149 v -2.054 -0.4048 -6.2685 h 1.006 V 149 Z"
+     fill="#000000"
+     id="path21" />
+  <path
+     d="m 300.635,155 v -0.384 l 1.441,-1.576 c 0.169,-0.185 0.308,-0.345 0.417,-0.482 0.11,-0.138 0.191,-0.267 0.243,-0.388 0.054,-0.122 0.081,-0.25 0.081,-0.383 0,-0.153 -0.037,-0.286 -0.111,-0.399 -0.072,-0.112 -0.172,-0.198 -0.298,-0.259 -0.126,-0.062 -0.268,-0.092 -0.426,-0.092 -0.168,0 -0.314,0.035 -0.439,0.104 -0.124,0.069 -0.219,0.164 -0.288,0.288 -0.066,0.124 -0.1,0.268 -0.1,0.435 h -0.503 c 0,-0.256 0.059,-0.48 0.177,-0.674 0.118,-0.193 0.279,-0.343 0.482,-0.451 0.204,-0.108 0.434,-0.162 0.688,-0.162 0.256,0 0.482,0.054 0.68,0.162 0.197,0.108 0.352,0.253 0.464,0.436 0.112,0.184 0.168,0.387 0.168,0.612 0,0.16 -0.029,0.317 -0.087,0.471 -0.057,0.152 -0.156,0.322 -0.298,0.509 -0.141,0.186 -0.336,0.413 -0.586,0.682 l -0.98,1.048 v 0.034 h 2.028 V 155 Z"
+     fill="#000000"
+     id="path22" />
+  <path
+     d="m 387,129 h -60 v 30 h 60 z"
+     fill="#f0f0f0"
+     stroke="#008000"
+     stroke-width="2"
+     id="path23" />
+  <path
+     d="m 356.98,149.1193 c -0.5,0 -0.95,-0.0994 -1.351,-0.2983 -0.4,-0.1988 -0.721,-0.4716 -0.963,-0.8182 -0.241,-0.3466 -0.373,-0.7414 -0.396,-1.1846 h 1.023 c 0.04,0.3949 0.219,0.7216 0.537,0.9801 0.321,0.2557 0.704,0.3835 1.15,0.3835 0.358,0 0.676,-0.0838 0.955,-0.2514 0.281,-0.1676 0.501,-0.3977 0.66,-0.6903 0.162,-0.2955 0.243,-0.6293 0.243,-1.0015 0,-0.3806 -0.084,-0.7201 -0.251,-1.0184 -0.165,-0.3012 -0.392,-0.5384 -0.682,-0.7117 -0.29,-0.1733 -0.621,-0.2613 -0.993,-0.2642 -0.267,-0.003 -0.541,0.0384 -0.822,0.1236 -0.282,0.0824 -0.513,0.1889 -0.695,0.3196 l -0.989,-0.1193 0.529,-4.2955 h 4.534 v 0.9375 h -3.648 l -0.307,2.5739 h 0.052 c 0.178,-0.1421 0.403,-0.26 0.673,-0.3537 0.27,-0.0938 0.551,-0.1406 0.844,-0.1406 0.534,0 1.01,0.1278 1.427,0.3835 0.421,0.2528 0.75,0.5994 0.989,1.0398 0.241,0.4403 0.362,0.9431 0.362,1.5085 0,0.5568 -0.125,1.054 -0.375,1.4915 -0.247,0.4346 -0.588,0.7784 -1.023,1.0312 -0.434,0.25 -0.929,0.375 -1.483,0.375 z"
+     fill="#000000"
+     id="path24" />
+  <path
+     d="m 382.016,155.06 c -0.281,0 -0.532,-0.049 -0.752,-0.145 -0.219,-0.097 -0.393,-0.231 -0.522,-0.403 -0.128,-0.173 -0.198,-0.374 -0.209,-0.603 h 0.537 c 0.011,0.141 0.06,0.262 0.145,0.364 0.085,0.101 0.197,0.179 0.334,0.235 0.138,0.055 0.291,0.083 0.458,0.083 0.188,0 0.354,-0.033 0.499,-0.098 0.145,-0.065 0.259,-0.156 0.341,-0.273 0.082,-0.116 0.124,-0.251 0.124,-0.405 0,-0.16 -0.04,-0.302 -0.12,-0.424 -0.079,-0.123 -0.196,-0.22 -0.349,-0.289 -0.154,-0.07 -0.341,-0.105 -0.563,-0.105 h -0.349 v -0.469 h 0.349 c 0.174,0 0.326,-0.031 0.456,-0.093 0.132,-0.063 0.235,-0.151 0.309,-0.265 0.075,-0.113 0.113,-0.247 0.113,-0.4 0,-0.148 -0.033,-0.276 -0.098,-0.386 -0.065,-0.109 -0.158,-0.194 -0.277,-0.255 -0.118,-0.062 -0.257,-0.092 -0.417,-0.092 -0.151,0 -0.293,0.028 -0.427,0.083 -0.132,0.054 -0.24,0.133 -0.323,0.237 -0.084,0.102 -0.13,0.225 -0.137,0.37 h -0.511 c 0.008,-0.228 0.077,-0.429 0.206,-0.601 0.13,-0.173 0.299,-0.308 0.508,-0.404 0.21,-0.097 0.441,-0.145 0.692,-0.145 0.27,0 0.501,0.054 0.695,0.164 0.193,0.108 0.341,0.25 0.445,0.428 0.104,0.178 0.155,0.369 0.155,0.575 0,0.246 -0.064,0.456 -0.193,0.629 -0.128,0.173 -0.302,0.293 -0.522,0.36 v 0.034 c 0.275,0.045 0.49,0.163 0.645,0.352 0.155,0.187 0.232,0.419 0.232,0.696 0,0.238 -0.064,0.451 -0.193,0.64 -0.128,0.187 -0.303,0.335 -0.525,0.443 -0.221,0.108 -0.473,0.162 -0.756,0.162 z"
+     fill="#000000"
+     id="path25" />
+  <path
+     d="m 457,129 h -60 v 30 h 60 z"
+     fill="#f0f0f0"
+     stroke="#808080"
+     stroke-width="1.5"
+     id="path26" />
+  <path
+     d="m 427.057,149.1193 c -0.358,-0.006 -0.716,-0.0738 -1.074,-0.2045 -0.358,-0.1307 -0.685,-0.3509 -0.98,-0.6605 -0.295,-0.3125 -0.533,-0.7344 -0.712,-1.2657 -0.179,-0.5341 -0.268,-1.2045 -0.268,-2.0113 0,-0.7728 0.072,-1.4574 0.217,-2.054 0.145,-0.5994 0.355,-1.1037 0.631,-1.5128 0.275,-0.4119 0.608,-0.7244 0.997,-0.9375 0.392,-0.2131 0.834,-0.3196 1.325,-0.3196 0.489,0 0.924,0.098 1.304,0.294 0.384,0.1932 0.696,0.4631 0.938,0.8097 0.241,0.3466 0.398,0.7457 0.469,1.1974 h -1.04 c -0.097,-0.392 -0.284,-0.7173 -0.563,-0.9758 -0.278,-0.2585 -0.647,-0.3878 -1.108,-0.3878 -0.676,0 -1.208,0.294 -1.598,0.8821 -0.386,0.5881 -0.581,1.4134 -0.583,2.4759 h 0.068 c 0.159,-0.2415 0.348,-0.4475 0.566,-0.6179 0.222,-0.1733 0.466,-0.3069 0.733,-0.4006 0.267,-0.0938 0.55,-0.1406 0.848,-0.1406 0.5,0 0.958,0.125 1.373,0.375 0.414,0.2471 0.747,0.5895 0.997,1.027 0.25,0.4346 0.375,0.9332 0.375,1.4957 0,0.5398 -0.121,1.0341 -0.362,1.483 -0.242,0.446 -0.581,0.8011 -1.019,1.0653 -0.435,0.2614 -0.946,0.3892 -1.534,0.3835 z m 0,-0.9375 c 0.358,0 0.679,-0.0895 0.963,-0.2684 0.287,-0.179 0.513,-0.4191 0.678,-0.7202 0.167,-0.3012 0.251,-0.6364 0.251,-1.0057 0,-0.3608 -0.081,-0.6889 -0.243,-0.9844 -0.159,-0.2983 -0.379,-0.5355 -0.66,-0.7116 -0.279,-0.1762 -0.597,-0.2642 -0.955,-0.2642 -0.27,0 -0.521,0.0539 -0.754,0.1619 -0.233,0.1051 -0.438,0.25 -0.614,0.4347 -0.173,0.1846 -0.309,0.3963 -0.409,0.6349 -0.099,0.2358 -0.149,0.4844 -0.149,0.7457 0,0.3466 0.081,0.6705 0.243,0.9716 0.165,0.3012 0.389,0.5441 0.673,0.7287 0.287,0.1847 0.612,0.277 0.976,0.277 z"
+     fill="#000000"
+     id="path27" />
+  <path
+     d="m 450.425,154.105 v -0.435 l 1.917,-3.034 h 0.316 v 0.674 h -0.213 l -1.449,2.292 v 0.034 h 2.582 v 0.469 z m 2.054,0.895 v -1.027 -0.202 -3.135 h 0.502 V 155 Z"
+     fill="#000000"
+     id="path28" />
+  <path
+     d="m 207,99 -11.503,1.0048 6.622,9.4597 z m -49.427,35.8192 42.627,-29.8388 -1.147,-1.6385 -42.626,29.8389 z"
+     fill="#ffffff"
+     id="path31" />
+  <path
+     d="m 327,99 -11.503,1.0048 6.622,9.4597 z m -49.427,35.8192 42.627,-29.8388 -1.147,-1.6385 -42.626,29.8389 z"
+     fill="#add8e6"
+     id="path32" />
+  <path
+     d="m 357,99 -5.774,10 h 11.548 z m 1,35 v -26 h -2 v 26 z"
+     fill="#add8e6"
+     id="path33" />
+  <path
+     d="m 447,99 -9.974,5.818 10.025,5.7289 z m -19.132,35.4961 15.535,-27.1858 -1.736,-0.9923 -15.535,27.1859 z"
+     fill="#ffffff"
+     id="path34" />
+  <line
+     x1="91.6502"
+     y1="29.345741"
+     x2="495.65021"
+     y2="29.345741"
+     stroke="#ffffff"
+     stroke-dasharray="2, 2"
+     id="line1-3" />
+  <path
+     d="M 157.6502,12.845741 H 97.650198 v 30 H 157.6502 Z"
+     fill="#f0f0f0"
+     stroke="#808080"
+     stroke-width="1.5"
+     id="path2-6" />
+  <path
+     d="m 153.7412,34.482141 v 4.3636 h -0.528 v -3.8097 h -0.026 l -1.065,0.7074 v -0.5369 l 1.091,-0.7244 z"
+     fill="#000000"
+     id="path4-6" />
+  <path
+     d="m 257.6502,12.845741 h -60 v 30 h 60 z"
+     fill="#f0f0f0"
+     stroke="#ff0000"
+     stroke-width="2"
+     id="path8-2" />
+  <path
+     d="m 251.2852,38.845741 v -0.3835 l 1.441,-1.5767 c 0.169,-0.1847 0.308,-0.3452 0.417,-0.4816 0.11,-0.1377 0.191,-0.267 0.243,-0.3877 0.054,-0.1222 0.081,-0.25 0.081,-0.3836 0,-0.1534 -0.037,-0.2862 -0.111,-0.3984 -0.072,-0.1122 -0.172,-0.1989 -0.298,-0.2599 -0.126,-0.0611 -0.268,-0.0917 -0.426,-0.0917 -0.168,0 -0.314,0.0348 -0.439,0.1044 -0.124,0.0682 -0.219,0.1641 -0.288,0.2877 -0.066,0.1236 -0.1,0.2684 -0.1,0.4346 h -0.503 c 0,-0.2556 0.059,-0.4801 0.177,-0.6733 0.118,-0.1931 0.279,-0.3437 0.482,-0.4517 0.204,-0.1079 0.434,-0.1619 0.688,-0.1619 0.256,0 0.482,0.054 0.68,0.1619 0.197,0.108 0.352,0.2536 0.464,0.4368 0.112,0.1833 0.168,0.3871 0.168,0.6115 0,0.1605 -0.029,0.3175 -0.087,0.4709 -0.057,0.152 -0.156,0.3217 -0.298,0.5092 -0.141,0.1861 -0.336,0.4134 -0.586,0.6819 l -0.98,1.0483 v 0.034 h 2.028 v 0.4688 z"
+     fill="#000000"
+     id="path10-1" />
+  <path
+     d="m 387.6502,12.845741 h -60 v 30 h 60 z"
+     fill="#f0f0f0"
+     stroke="#ff0000"
+     stroke-width="2"
+     id="path11-8" />
+  <path
+     d="m 382.6662,38.905441 c -0.281,0 -0.532,-0.0483 -0.752,-0.1449 -0.219,-0.0966 -0.393,-0.2309 -0.522,-0.4027 -0.128,-0.1733 -0.198,-0.3743 -0.209,-0.603 h 0.537 c 0.011,0.1406 0.06,0.2621 0.145,0.3643 0.085,0.1009 0.197,0.179 0.334,0.2344 0.138,0.0554 0.291,0.0831 0.458,0.0831 0.188,0 0.354,-0.0327 0.499,-0.098 0.145,-0.0653 0.259,-0.1563 0.341,-0.2727 0.082,-0.1165 0.124,-0.2514 0.124,-0.4049 0,-0.1605 -0.04,-0.3018 -0.12,-0.424 -0.079,-0.1235 -0.196,-0.2201 -0.349,-0.2897 -0.154,-0.0696 -0.341,-0.1044 -0.563,-0.1044 h -0.349 v -0.4688 h 0.349 c 0.174,0 0.326,-0.0312 0.456,-0.0937 0.132,-0.0625 0.235,-0.1506 0.309,-0.2642 0.075,-0.1137 0.113,-0.2472 0.113,-0.4006 0,-0.1477 -0.033,-0.2763 -0.098,-0.3857 -0.065,-0.1093 -0.158,-0.1946 -0.277,-0.2556 -0.118,-0.0611 -0.257,-0.0917 -0.417,-0.0917 -0.151,0 -0.293,0.0277 -0.427,0.0831 -0.132,0.054 -0.24,0.1328 -0.323,0.2365 -0.084,0.1023 -0.13,0.2259 -0.137,0.3708 h -0.511 c 0.008,-0.2287 0.077,-0.429 0.206,-0.6009 0.13,-0.1733 0.299,-0.3082 0.508,-0.4048 0.21,-0.0966 0.441,-0.1449 0.692,-0.1449 0.27,0 0.501,0.0547 0.695,0.1641 0.193,0.1079 0.341,0.2507 0.445,0.4282 0.104,0.1776 0.155,0.3694 0.155,0.5753 0,0.2458 -0.064,0.4553 -0.193,0.6286 -0.128,0.1733 -0.302,0.2933 -0.522,0.3601 v 0.034 c 0.275,0.0455 0.49,0.1627 0.645,0.3516 0.155,0.1875 0.232,0.4198 0.232,0.6967 0,0.2373 -0.064,0.4503 -0.193,0.6392 -0.128,0.1875 -0.303,0.3353 -0.525,0.4432 -0.221,0.108 -0.473,0.162 -0.756,0.162 z"
+     fill="#000000"
+     id="path13-9" />
+  <path
+     d="m 487.6502,12.845741 h -60 v 30 h 60 z"
+     fill="#f0f0f0"
+     stroke="#808080"
+     stroke-width="1.5"
+     id="path14-2" />
+  <path
+     d="m 481.0752,37.950841 v -0.4346 l 1.917,-3.0341 h 0.316 v 0.6733 h -0.213 l -1.449,2.2926 v 0.0341 h 2.582 v 0.4687 z m 2.054,0.8949 v -1.027 -0.2024 -3.1342 h 0.502 v 4.3636 z"
+     fill="#000000"
+     id="path16-2" />
+  <text
+     xml:space="preserve"
+     style="fill:#000000"
+     x="120.22044"
+     y="33.014793"
+     id="text34"><tspan
+       id="tspan34"
+       x="120.22044"
+       y="33.014793">61</tspan><tspan
+       x="120.22044"
+       y="48.014793"
+       id="tspan35" /></text>
+  <text
+     xml:space="preserve"
+     style="fill:#000000"
+     x="220.78311"
+     y="33.179169"
+     id="text36"><tspan
+       id="tspan36"
+       x="220.78311"
+       y="33.179169">63</tspan></text>
+  <text
+     xml:space="preserve"
+     style="font-size:10.6667px;fill:#ffffff"
+     x="10.40602"
+     y="79.343048"
+     id="text37"><tspan
+       x="10.40602"
+       y="79.343048"
+       id="tspan47">Delay shifted </tspan><tspan
+       x="10.40602"
+       y="92.676384"
+       id="tspan41" /><tspan
+       x="10.40602"
+       y="106.00971"
+       id="tspan38" /></text>
+  <text
+     xml:space="preserve"
+     style="fill:#000000"
+     x="349.16742"
+     y="31.810747"
+     id="text39"><tspan
+       id="tspan39"
+       x="349.16742"
+       y="31.810747">65</tspan></text>
+  <text
+     xml:space="preserve"
+     style="fill:#000000"
+     x="451.9292"
+     y="32.898121"
+     id="text40"><tspan
+       id="tspan40"
+       x="451.9292"
+       y="32.898121">67</tspan></text>
+  <path
+     d="m 38.172431,65.980624 2.522276,-4.500225 -5.051718,0.0042 z m -0.440539,-4.048182 0.875005,-7.37e-4 -0.01843,-23.405179 -0.874717,3.92e-4"
+     fill="#ffffff"
+     id="path31-5"
+     style="stroke-width:0.443611" />
+  <text
+     xml:space="preserve"
+     style="font-size:8px;fill:#ffffff"
+     x="41.844978"
+     y="53.954391"
+     id="text42"><tspan
+       id="tspan42"
+       x="41.844978"
+       y="53.954391">- 60 s</tspan></text>
+  <text
+     xml:space="preserve"
+     style="font-size:13.3333px;fill:#ffffff"
+     x="13.206648"
+     y="147.73251"
+     id="text44"><tspan
+       id="tspan44"
+       x="13.206648"
+       y="147.73251">Mina chain</tspan></text>
+  <text
+     xml:space="preserve"
+     style="font-size:13.3333px;fill:#ffffff"
+     x="11.577916"
+     y="32.942711"
+     id="text45"><tspan
+       id="tspan45"
+       x="11.577916"
+       y="32.942711">Main chain</tspan><tspan
+       x="11.577916"
+       y="49.609337"
+       id="tspan46" /></text>
+</svg>