@cassiomc1/forgeloop 1.3.0 → 1.6.0
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.
- package/.github/copilot-instructions.md +1 -0
- package/AGENTS.md +1 -0
- package/CLAUDE.md +1 -0
- package/DOCS_INDEX.md +20 -8
- package/EXECUTION_STATE.md +60 -0
- package/LOOP_ENGINEERING.md +135 -5
- package/LOOP_SYSTEM_DESIGN.md +54 -1
- package/PROTOCOL_INTEGRATION.md +87 -0
- package/QUALITY_SCORECARD.md +2 -0
- package/README.md +69 -9
- package/TERMINOLOGY.md +15 -0
- package/THIRD_PARTY_NOTICES.md +30 -0
- package/THREAT_MODEL.md +59 -1
- package/docs/ARTIFACT_REFERENCE.md +183 -0
- package/docs/CLI_REFERENCE.md +391 -6
- package/docs/CROSS_HARNESS_CONTINUITY.md +23 -0
- package/docs/DIAGNOSTIC_MODEL.md +181 -0
- package/docs/DOCUMENTATION_GUIDE.md +36 -13
- package/docs/EXECUTION_TRACE.md +76 -0
- package/docs/GETTING_STARTED.md +1 -0
- package/docs/MCP.md +159 -0
- package/docs/RECIPES.md +149 -0
- package/docs/RELEASE_CHECKLIST_1_4.md +38 -0
- package/docs/RELEASE_CHECKLIST_1_5_MCP.md +78 -0
- package/docs/TROUBLESHOOTING.md +217 -3
- package/docs/UNIVERSAL_INTEGRATION.md +48 -0
- package/docs/assets/diagrams/forgeloop-engineering-flow.html +13797 -0
- package/docs/assets/diagrams/forgeloop-engineering-flow.receipt.json +37 -0
- package/docs/assets/diagrams/forgeloop-engineering-flow.svg +5002 -0
- package/docs/diagrams/README.md +55 -0
- package/docs/diagrams/forgeloop-engineering-flow.workflow.json +122 -0
- package/docs/diagrams/manifest.json +42 -0
- package/docs/diagrams/reviews/forgeloop-engineering-flow.review.json +20 -0
- package/package.json +21 -8
- package/schemas/action.schema.json +100 -0
- package/schemas/approval.schema.json +51 -0
- package/schemas/capability-policy.schema.json +41 -0
- package/schemas/diagnostic-case.schema.json +85 -0
- package/schemas/execution-receipt.schema.json +16 -0
- package/schemas/hypothesis-disposition.schema.json +16 -0
- package/schemas/intervention.schema.json +27 -0
- package/schemas/policy-lock.schema.json +1 -0
- package/schemas/policy-snapshot.schema.json +2 -0
- package/schemas/task-recovery.schema.json +61 -0
- package/schemas/trajectory-evaluation.schema.json +64 -0
- package/schemas/trajectory-scenario.schema.json +42 -0
- package/src/cli.js +267 -347
- package/src/commands/action-authorize.js +41 -0
- package/src/commands/action-propose.js +10 -0
- package/src/commands/action-reconcile.js +10 -0
- package/src/commands/action-record.js +47 -0
- package/src/commands/action-show.js +10 -0
- package/src/commands/action-verify.js +10 -0
- package/src/commands/advance.js +7 -2
- package/src/commands/approval-request.js +64 -0
- package/src/commands/approval-resolve.js +10 -0
- package/src/commands/audit.js +5 -0
- package/src/commands/baseline.js +3 -3
- package/src/commands/eval.js +6 -0
- package/src/commands/history.js +18 -0
- package/src/commands/init.js +2 -2
- package/src/commands/inspect.js +55 -0
- package/src/commands/metrics.js +7 -0
- package/src/commands/next.js +8 -2
- package/src/commands/policy-discover.js +2 -2
- package/src/commands/progress.js +6 -2
- package/src/commands/record-diagnosis.js +37 -1
- package/src/commands/record-hypothesis-disposition.js +45 -0
- package/src/commands/record-intervention.js +35 -0
- package/src/commands/reflect.js +38 -0
- package/src/commands/report.js +9 -1
- package/src/commands/run-action.js +18 -0
- package/src/commands/status.js +17 -0
- package/src/commands/task-create.js +39 -1
- package/src/commands/task-list.js +14 -1
- package/src/commands/task-lock-status.js +2 -2
- package/src/commands/task-recover.js +202 -0
- package/src/commands/task-repair-legacy-recovery.js +417 -0
- package/src/commands/task-resume.js +172 -0
- package/src/commands/task-scope.js +23 -4
- package/src/commands/task-show.js +18 -4
- package/src/commands/trace.js +34 -0
- package/src/commands/validate-protocol.js +40 -15
- package/src/core/action-authorization.js +106 -0
- package/src/core/action-constants.js +86 -0
- package/src/core/action-execution.js +105 -0
- package/src/core/action-ledger-projection.js +302 -0
- package/src/core/action-model.js +581 -0
- package/src/core/action-readiness.js +141 -0
- package/src/core/action-reconciliation-policy.js +49 -0
- package/src/core/action-reconciliation.js +66 -0
- package/src/core/action-verification.js +111 -0
- package/src/core/actions.js +462 -0
- package/src/core/approvals.js +405 -0
- package/src/core/artifact-registry.js +60 -0
- package/src/core/audit.js +45 -4
- package/src/core/bundles.js +30 -0
- package/src/core/capability-policy.js +226 -0
- package/src/core/cli-command-definitions.js +260 -5
- package/src/core/command-executors.js +543 -0
- package/src/core/command-input.js +107 -0
- package/src/core/command-runtime.js +117 -0
- package/src/core/completion-artifacts.js +39 -15
- package/src/core/completion-ownership.js +88 -0
- package/src/core/completion-recovery-rebind.js +194 -0
- package/src/core/completion.js +70 -0
- package/src/core/continuity-reconciliation.js +24 -5
- package/src/core/diagnostic-model.js +396 -0
- package/src/core/diagnostic-projection.js +51 -0
- package/src/core/diagnostic-record.js +360 -0
- package/src/core/error-codes.js +461 -1
- package/src/core/events.js +171 -2
- package/src/core/execution-prerequisites.js +4 -1
- package/src/core/execution.js +26 -188
- package/src/core/failure-signature.js +70 -0
- package/src/core/failure-surface.js +57 -0
- package/src/core/filesystem.js +55 -6
- package/src/core/history.js +110 -0
- package/src/core/hypothesis-projection.js +85 -0
- package/src/core/information-gain-projection.js +283 -0
- package/src/core/information-gain.js +138 -0
- package/src/core/inspect.js +132 -7
- package/src/core/integration-invocation-policy.js +217 -0
- package/src/core/integration-limits.js +20 -0
- package/src/core/integration-resources.js +178 -0
- package/src/core/next-action-model.js +94 -0
- package/src/core/next-action.js +490 -3
- package/src/core/phase.js +42 -22
- package/src/core/policy-engine.js +113 -6
- package/src/core/preflight-consistency.js +31 -5
- package/src/core/preflight.js +19 -2
- package/src/core/prepared-execution.js +227 -0
- package/src/core/progress.js +41 -4
- package/src/core/project-root.js +21 -0
- package/src/core/protocol-info.js +61 -0
- package/src/core/protocol.js +14 -0
- package/src/core/receipt.js +1 -0
- package/src/core/reconcile-closure.js +35 -10
- package/src/core/recovery-history.js +116 -0
- package/src/core/reflection.js +305 -0
- package/src/core/resumability.js +57 -3
- package/src/core/schema-validation.js +9 -0
- package/src/core/strategy-analysis.js +97 -0
- package/src/core/task-claim-state.js +272 -0
- package/src/core/task-command.js +5 -1
- package/src/core/task-conflict-inspection.js +321 -0
- package/src/core/task-context.js +32 -29
- package/src/core/task-discovery.js +14 -1
- package/src/core/task-lock.js +216 -22
- package/src/core/task-paths.js +31 -2
- package/src/core/task-recovery-migration.js +192 -0
- package/src/core/task-recovery.js +205 -0
- package/src/core/task-scope.js +33 -1
- package/src/core/task-snapshot.js +53 -0
- package/src/core/templates.js +9 -0
- package/src/core/trace.js +548 -0
- package/src/core/trajectory-evaluation.js +71 -0
- package/src/core/trajectory-metrics.js +80 -0
- package/src/core/transaction.js +36 -2
- package/src/core/work-state.js +10 -5
- package/src/integration.js +47 -0
- package/docs/assets/forgeloop-flow.svg +0 -1
- package/docs/forgeloop-flow.mmd +0 -51
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg data-forgeloop-source-sha256="eef03b8e668ed7c8905f68ad0e45b5632b374188dac740f168e227c3b1596f88" id="my-svg" width="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="flowchart" style="max-width: 3650.7px; background-color: transparent;" viewBox="0 0 3650.69970703125 505.1999816894531" role="graphics-document document" aria-roledescription="flowchart-v2"><style>#my-svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#ccc;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#my-svg .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#my-svg .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#my-svg .error-icon{fill:#a44141;}#my-svg .error-text{fill:#ddd;stroke:#ddd;}#my-svg .edge-thickness-normal{stroke-width:1px;}#my-svg .edge-thickness-thick{stroke-width:3.5px;}#my-svg .edge-pattern-solid{stroke-dasharray:0;}#my-svg .edge-thickness-invisible{stroke-width:0;fill:none;}#my-svg .edge-pattern-dashed{stroke-dasharray:3;}#my-svg .edge-pattern-dotted{stroke-dasharray:2;}#my-svg .marker{fill:lightgrey;stroke:lightgrey;}#my-svg .marker.cross{stroke:lightgrey;}#my-svg svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#my-svg p{margin:0;}#my-svg .label{font-family:"trebuchet ms",verdana,arial,sans-serif;color:#ccc;}#my-svg .cluster-label text{fill:#F9FFFE;}#my-svg .cluster-label span{color:#F9FFFE;}#my-svg .cluster-label span p{background-color:transparent;}#my-svg .label text,#my-svg span{fill:#ccc;color:#ccc;}#my-svg .node rect,#my-svg .node circle,#my-svg .node ellipse,#my-svg .node polygon,#my-svg .node path{fill:#1f2020;stroke:#ccc;stroke-width:1px;}#my-svg .rough-node .label text,#my-svg .node .label text,#my-svg .image-shape .label,#my-svg .icon-shape .label{text-anchor:middle;}#my-svg .node .katex path{fill:#000;stroke:#000;stroke-width:1px;}#my-svg .rough-node .label,#my-svg .node .label,#my-svg .image-shape .label,#my-svg .icon-shape .label{text-align:center;}#my-svg .node.clickable{cursor:pointer;}#my-svg .root .anchor path{fill:lightgrey!important;stroke-width:0;stroke:lightgrey;}#my-svg .arrowheadPath{fill:lightgrey;}#my-svg .edgePath .path{stroke:lightgrey;stroke-width:1px;}#my-svg .flowchart-link{stroke:lightgrey;fill:none;}#my-svg .edgeLabel{background-color:hsl(0, 0%, 34.4117647059%);text-align:center;}#my-svg .edgeLabel p{background-color:hsl(0, 0%, 34.4117647059%);}#my-svg .edgeLabel rect{opacity:0.5;background-color:hsl(0, 0%, 34.4117647059%);fill:hsl(0, 0%, 34.4117647059%);}#my-svg .labelBkg{background-color:rgba(87.75, 87.75, 87.75, 0.5);}#my-svg .cluster rect{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:rgba(255, 255, 255, 0.25);stroke-width:1px;}#my-svg .cluster text{fill:#F9FFFE;}#my-svg .cluster span{color:#F9FFFE;}#my-svg div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:12px;background:hsl(20, 1.5873015873%, 12.3529411765%);border:1px solid rgba(255, 255, 255, 0.25);border-radius:2px;pointer-events:none;z-index:100;}#my-svg .flowchartTitleText{text-anchor:middle;font-size:18px;fill:#ccc;}#my-svg rect.text{fill:none;stroke-width:0;}#my-svg .icon-shape,#my-svg .image-shape{background-color:hsl(0, 0%, 34.4117647059%);text-align:center;}#my-svg .icon-shape p,#my-svg .image-shape p{background-color:hsl(0, 0%, 34.4117647059%);padding:2px;}#my-svg .icon-shape .label rect,#my-svg .image-shape .label rect{opacity:0.5;background-color:hsl(0, 0%, 34.4117647059%);fill:hsl(0, 0%, 34.4117647059%);}#my-svg .label-icon{display:inline-block;height:1em;overflow:visible;vertical-align:-0.125em;}#my-svg .node .label-icon path{fill:currentColor;stroke:revert;stroke-width:revert;}#my-svg .node .neo-node{stroke:#ccc;}#my-svg [data-look="neo"].node rect,#my-svg [data-look="neo"].cluster rect,#my-svg [data-look="neo"].node polygon{stroke:url(#my-svg-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#my-svg [data-look="neo"].swimlane.cluster rect{filter:none;}#my-svg [data-look="neo"].node path{stroke:url(#my-svg-gradient);stroke-width:1px;}#my-svg [data-look="neo"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#my-svg [data-look="neo"].node .neo-line path{stroke:#ccc;filter:none;}#my-svg [data-look="neo"].node circle{stroke:url(#my-svg-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#my-svg [data-look="neo"].node circle .state-start{fill:#000000;}#my-svg [data-look="neo"].icon-shape .icon{fill:url(#my-svg-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#my-svg [data-look="neo"].icon-shape .icon-neo path{stroke:url(#my-svg-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#my-svg :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}#my-svg .entry rect{fill:rgb(31, 41, 55)!important;stroke:rgb(125, 211, 252)!important;color:rgb(248, 250, 252)!important;stroke-width:2px!important;}#my-svg .entry polygon{fill:rgb(31, 41, 55)!important;stroke:rgb(125, 211, 252)!important;color:rgb(248, 250, 252)!important;stroke-width:2px!important;}#my-svg .entry ellipse{fill:rgb(31, 41, 55)!important;stroke:rgb(125, 211, 252)!important;color:rgb(248, 250, 252)!important;stroke-width:2px!important;}#my-svg .entry circle{fill:rgb(31, 41, 55)!important;stroke:rgb(125, 211, 252)!important;color:rgb(248, 250, 252)!important;stroke-width:2px!important;}#my-svg .entry path{fill:rgb(31, 41, 55)!important;stroke:rgb(125, 211, 252)!important;color:rgb(248, 250, 252)!important;stroke-width:2px!important;}#my-svg .entry tspan{fill:rgb(248, 250, 252)!important;}#my-svg .contract rect{fill:rgb(23, 37, 84)!important;stroke:rgb(96, 165, 250)!important;color:rgb(219, 234, 254)!important;stroke-width:2px!important;}#my-svg .contract polygon{fill:rgb(23, 37, 84)!important;stroke:rgb(96, 165, 250)!important;color:rgb(219, 234, 254)!important;stroke-width:2px!important;}#my-svg .contract ellipse{fill:rgb(23, 37, 84)!important;stroke:rgb(96, 165, 250)!important;color:rgb(219, 234, 254)!important;stroke-width:2px!important;}#my-svg .contract circle{fill:rgb(23, 37, 84)!important;stroke:rgb(96, 165, 250)!important;color:rgb(219, 234, 254)!important;stroke-width:2px!important;}#my-svg .contract path{fill:rgb(23, 37, 84)!important;stroke:rgb(96, 165, 250)!important;color:rgb(219, 234, 254)!important;stroke-width:2px!important;}#my-svg .contract tspan{fill:rgb(219, 234, 254)!important;}#my-svg .execution rect{fill:rgb(49, 46, 129)!important;stroke:rgb(167, 139, 250)!important;color:rgb(237, 233, 254)!important;stroke-width:2px!important;}#my-svg .execution polygon{fill:rgb(49, 46, 129)!important;stroke:rgb(167, 139, 250)!important;color:rgb(237, 233, 254)!important;stroke-width:2px!important;}#my-svg .execution ellipse{fill:rgb(49, 46, 129)!important;stroke:rgb(167, 139, 250)!important;color:rgb(237, 233, 254)!important;stroke-width:2px!important;}#my-svg .execution circle{fill:rgb(49, 46, 129)!important;stroke:rgb(167, 139, 250)!important;color:rgb(237, 233, 254)!important;stroke-width:2px!important;}#my-svg .execution path{fill:rgb(49, 46, 129)!important;stroke:rgb(167, 139, 250)!important;color:rgb(237, 233, 254)!important;stroke-width:2px!important;}#my-svg .execution tspan{fill:rgb(237, 233, 254)!important;}#my-svg .evidence rect{fill:rgb(19, 78, 74)!important;stroke:rgb(94, 234, 212)!important;color:rgb(204, 251, 241)!important;stroke-width:2px!important;}#my-svg .evidence polygon{fill:rgb(19, 78, 74)!important;stroke:rgb(94, 234, 212)!important;color:rgb(204, 251, 241)!important;stroke-width:2px!important;}#my-svg .evidence ellipse{fill:rgb(19, 78, 74)!important;stroke:rgb(94, 234, 212)!important;color:rgb(204, 251, 241)!important;stroke-width:2px!important;}#my-svg .evidence circle{fill:rgb(19, 78, 74)!important;stroke:rgb(94, 234, 212)!important;color:rgb(204, 251, 241)!important;stroke-width:2px!important;}#my-svg .evidence path{fill:rgb(19, 78, 74)!important;stroke:rgb(94, 234, 212)!important;color:rgb(204, 251, 241)!important;stroke-width:2px!important;}#my-svg .evidence tspan{fill:rgb(204, 251, 241)!important;}#my-svg .recovery rect{fill:rgb(69, 26, 3)!important;stroke:rgb(251, 146, 60)!important;color:rgb(255, 237, 213)!important;stroke-width:2px!important;}#my-svg .recovery polygon{fill:rgb(69, 26, 3)!important;stroke:rgb(251, 146, 60)!important;color:rgb(255, 237, 213)!important;stroke-width:2px!important;}#my-svg .recovery ellipse{fill:rgb(69, 26, 3)!important;stroke:rgb(251, 146, 60)!important;color:rgb(255, 237, 213)!important;stroke-width:2px!important;}#my-svg .recovery circle{fill:rgb(69, 26, 3)!important;stroke:rgb(251, 146, 60)!important;color:rgb(255, 237, 213)!important;stroke-width:2px!important;}#my-svg .recovery path{fill:rgb(69, 26, 3)!important;stroke:rgb(251, 146, 60)!important;color:rgb(255, 237, 213)!important;stroke-width:2px!important;}#my-svg .recovery tspan{fill:rgb(255, 237, 213)!important;}#my-svg .terminal rect{fill:rgb(20, 83, 45)!important;stroke:rgb(134, 239, 172)!important;color:rgb(220, 252, 231)!important;stroke-width:2px!important;}#my-svg .terminal polygon{fill:rgb(20, 83, 45)!important;stroke:rgb(134, 239, 172)!important;color:rgb(220, 252, 231)!important;stroke-width:2px!important;}#my-svg .terminal ellipse{fill:rgb(20, 83, 45)!important;stroke:rgb(134, 239, 172)!important;color:rgb(220, 252, 231)!important;stroke-width:2px!important;}#my-svg .terminal circle{fill:rgb(20, 83, 45)!important;stroke:rgb(134, 239, 172)!important;color:rgb(220, 252, 231)!important;stroke-width:2px!important;}#my-svg .terminal path{fill:rgb(20, 83, 45)!important;stroke:rgb(134, 239, 172)!important;color:rgb(220, 252, 231)!important;stroke-width:2px!important;}#my-svg .terminal tspan{fill:rgb(220, 252, 231)!important;}#my-svg .boundary rect{fill:rgb(63, 29, 63)!important;stroke:rgb(240, 171, 252)!important;color:rgb(250, 232, 255)!important;stroke-width:2px!important;}#my-svg .boundary polygon{fill:rgb(63, 29, 63)!important;stroke:rgb(240, 171, 252)!important;color:rgb(250, 232, 255)!important;stroke-width:2px!important;}#my-svg .boundary ellipse{fill:rgb(63, 29, 63)!important;stroke:rgb(240, 171, 252)!important;color:rgb(250, 232, 255)!important;stroke-width:2px!important;}#my-svg .boundary circle{fill:rgb(63, 29, 63)!important;stroke:rgb(240, 171, 252)!important;color:rgb(250, 232, 255)!important;stroke-width:2px!important;}#my-svg .boundary path{fill:rgb(63, 29, 63)!important;stroke:rgb(240, 171, 252)!important;color:rgb(250, 232, 255)!important;stroke-width:2px!important;}#my-svg .boundary tspan{fill:rgb(250, 232, 255)!important;}</style><g><marker id="my-svg_flowchart-v2-pointEnd" class="marker flowchart-v2" viewBox="0 0 10 10" refX="5" refY="5" markerUnits="userSpaceOnUse" markerWidth="8" markerHeight="8" orient="auto"><path d="M 0 0 L 10 5 L 0 10 z" class="arrowMarkerPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-pointStart" class="marker flowchart-v2" viewBox="0 0 10 10" refX="4.5" refY="5" markerUnits="userSpaceOnUse" markerWidth="8" markerHeight="8" orient="auto"><path d="M 0 5 L 10 10 L 10 0 z" class="arrowMarkerPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-pointEnd-margin" class="marker flowchart-v2" viewBox="0 0 11.5 14" refX="11.5" refY="7" markerUnits="userSpaceOnUse" markerWidth="10.5" markerHeight="14" orient="auto"><path d="M 0 0 L 11.5 7 L 0 14 z" class="arrowMarkerPath" style="stroke-width: 0; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-pointStart-margin" class="marker flowchart-v2" viewBox="0 0 11.5 14" refX="1" refY="7" markerUnits="userSpaceOnUse" markerWidth="11.5" markerHeight="14" orient="auto"><polygon points="0,7 11.5,14 11.5,0" class="arrowMarkerPath" style="stroke-width: 0; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-circleEnd" class="marker flowchart-v2" viewBox="0 0 10 10" refX="11" refY="5" markerUnits="userSpaceOnUse" markerWidth="11" markerHeight="11" orient="auto"><circle cx="5" cy="5" r="5" class="arrowMarkerPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-circleStart" class="marker flowchart-v2" viewBox="0 0 10 10" refX="-1" refY="5" markerUnits="userSpaceOnUse" markerWidth="11" markerHeight="11" orient="auto"><circle cx="5" cy="5" r="5" class="arrowMarkerPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-circleEnd-margin" class="marker flowchart-v2" viewBox="0 0 10 10" refY="5" refX="12.25" markerUnits="userSpaceOnUse" markerWidth="14" markerHeight="14" orient="auto"><circle cx="5" cy="5" r="5" class="arrowMarkerPath" style="stroke-width: 0; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-circleStart-margin" class="marker flowchart-v2" viewBox="0 0 10 10" refX="-2" refY="5" markerUnits="userSpaceOnUse" markerWidth="14" markerHeight="14" orient="auto"><circle cx="5" cy="5" r="5" class="arrowMarkerPath" style="stroke-width: 0; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-crossEnd" class="marker cross flowchart-v2" viewBox="0 0 11 11" refX="12" refY="5.2" markerUnits="userSpaceOnUse" markerWidth="11" markerHeight="11" orient="auto"><path d="M 1,1 l 9,9 M 10,1 l -9,9" class="arrowMarkerPath" style="stroke-width: 2; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-crossStart" class="marker cross flowchart-v2" viewBox="0 0 11 11" refX="-1" refY="5.2" markerUnits="userSpaceOnUse" markerWidth="11" markerHeight="11" orient="auto"><path d="M 1,1 l 9,9 M 10,1 l -9,9" class="arrowMarkerPath" style="stroke-width: 2; stroke-dasharray: 1, 0;"/></marker><marker id="my-svg_flowchart-v2-crossEnd-margin" class="marker cross flowchart-v2" viewBox="0 0 15 15" refX="17.7" refY="7.5" markerUnits="userSpaceOnUse" markerWidth="12" markerHeight="12" orient="auto"><path d="M 1,1 L 14,14 M 1,14 L 14,1" class="arrowMarkerPath" style="stroke-width: 2.5;"/></marker><marker id="my-svg_flowchart-v2-crossStart-margin" class="marker cross flowchart-v2" viewBox="0 0 15 15" refX="-3.5" refY="7.5" markerUnits="userSpaceOnUse" markerWidth="12" markerHeight="12" orient="auto"><path d="M 1,1 L 14,14 M 1,14 L 14,1" class="arrowMarkerPath" style="stroke-width: 2.5; stroke-dasharray: 1, 0;"/></marker><g class="root"><g class="clusters"><g class="cluster" id="my-svg-CLOSE" data-look="classic"><rect style="" x="2642.7637786865234" y="8" width="999.9359893798828" height="161.69999885559082"/><g class="cluster-label" transform="translate(3069.489585876465, 8)"><g><rect class="background" style="stroke: none"/><text y="-10.1" style=""><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">4</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> ·</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> Review</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> and</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> close</tspan></tspan></text></g></g></g><g class="cluster" id="my-svg-VERIFY" data-look="classic"><rect style="" x="1658.6387786865234" y="49.89999961853027" width="783.90625" height="288.54999923706055"/><g class="cluster-label" transform="translate(1971.6778411865234, 49.89999961853027)"><g><rect class="background" style="stroke: none"/><text y="-10.1" style=""><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">3</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> ·</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> Execute</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> and</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> verify</tspan></tspan></text></g></g></g><g class="cluster" id="my-svg-AUTHORIZE" data-look="classic"><rect style="" x="881.9825286865234" y="139.39999961853027" width="726.65625" height="357.79999923706055"/><g class="cluster-label" transform="translate(1161.7247161865234, 139.39999961853027)"><g><rect class="background" style="stroke: none"/><text y="-10.1" style=""><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">2</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> ·</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> Authorize</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> execution</tspan></tspan></text></g></g></g><g class="cluster" id="my-svg-DISCOVER" data-look="classic"><rect style="" x="8" y="228.64999961853027" width="823.9825286865234" height="119"/><g class="cluster-label" transform="translate(340.7959518432617, 228.64999961853027)"><g><rect class="background" style="stroke: none"/><text y="-10.1" style=""><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">1</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> ·</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> Discover</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> and</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> route</tspan></tspan></text></g></g></g></g><g class="edgePaths"><path d="M113.576,288.65L138.076,288.15L159.076,288.15" id="my-svg-L_REQUEST_PROFILE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_REQUEST_PROFILE_0" data-points="W3sieCI6MTEzLjU3NjI4MTM1MDgyMzI4LCJ5IjoyODguNjQ5OTk5NjE4NTMwM30seyJ4IjoxMzguMDc2Mjc4Njg2NTIzNDQsInkiOjI4OC4xNDk5OTk2MTg1MzAzfSx7IngiOjE2My4wNzYyNzg2ODY1MjM0NCwieSI6Mjg4LjE0OTk5OTYxODUzMDN9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M327.389,288.15L352.389,288.15L373.389,288.15" id="my-svg-L_PROFILE_CONTRACT_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_PROFILE_CONTRACT_0" data-points="W3sieCI6MzI3LjM4ODc3ODY4NjUyMzQ0LCJ5IjoyODguMTQ5OTk5NjE4NTMwM30seyJ4IjozNTIuMzg4Nzc4Njg2NTIzNDQsInkiOjI4OC4xNDk5OTk2MTg1MzAzfSx7IngiOjM3Ny4zODg3Nzg2ODY1MjM0NCwieSI6Mjg4LjE0OTk5OTYxODUzMDN9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M557.264,288.15L582.264,288.15L603.264,288.15" id="my-svg-L_CONTRACT_ROUTE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_CONTRACT_ROUTE_0" data-points="W3sieCI6NTU3LjI2Mzc3ODY4NjUyMzQsInkiOjI4OC4xNDk5OTk2MTg1MzAzfSx7IngiOjU4Mi4yNjM3Nzg2ODY1MjM0LCJ5IjoyODguMTQ5OTk5NjE4NTMwM30seyJ4Ijo2MDcuMjYzNzc4Njg2NTIzNCwieSI6Mjg4LjE0OTk5OTYxODUzMDN9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M806.983,288.15L831.983,288.15L856.983,288.15L881.983,288.15L902.983,288.15" id="my-svg-L_ROUTE_GATES_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_ROUTE_GATES_0" data-points="W3sieCI6ODA2Ljk4MjUyODY4NjUyMzQsInkiOjI4OC4xNDk5OTk2MTg1MzAzfSx7IngiOjgzMS45ODI1Mjg2ODY1MjM0LCJ5IjoyODguMTQ5OTk5NjE4NTMwM30seyJ4Ijo4NTYuOTgyNTI4Njg2NTIzNCwieSI6Mjg4LjE0OTk5OTYxODUzMDN9LHsieCI6ODgxLjk4MjUyODY4NjUyMzQsInkiOjI4OC4xNDk5OTk2MTg1MzAzfSx7IngiOjkwNi45ODI1Mjg2ODY1MjM0LCJ5IjoyODguMTQ5OTk5NjE4NTMwM31d" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M1073.264,288.15L1098.264,288.15L1119.264,288.15" id="my-svg-L_GATES_PREFLIGHT_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_GATES_PREFLIGHT_0" data-points="W3sieCI6MTA3My4yNjM3Nzg2ODY1MjM0LCJ5IjoyODguMTQ5OTk5NjE4NTMwM30seyJ4IjoxMDk4LjI2Mzc3ODY4NjUyMzQsInkiOjI4OC4xNDk5OTk2MTg1MzAzfSx7IngiOjExMjMuMjYzNzc4Njg2NTIzNCwieSI6Mjg4LjE0OTk5OTYxODUzMDN9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M1253.107,263.65L1341.248,198.9L1362.248,198.9" id="my-svg-L_PREFLIGHT_STATE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_PREFLIGHT_STATE_0" data-points="W3sieCI6MTI1My4xMDY3NjI3NTUxNTA4LCJ5IjoyNjMuNjQ5OTk5NjE4NTMwM30seyJ4IjoxMzQxLjI0ODE1MzY4NjUyMzQsInkiOjE5OC44OTk5OTk2MTg1MzAyN30seyJ4IjoxMzY2LjI0ODE1MzY4NjUyMzQsInkiOjE5OC44OTk5OTk2MTg1MzAyN31d" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M1583.639,198.9L1608.639,198.9L1633.639,198.9L1658.639,198.9L1679.639,198.9" id="my-svg-L_STATE_EXECUTE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_STATE_EXECUTE_0" data-points="W3sieCI6MTU4My42Mzg3Nzg2ODY1MjM0LCJ5IjoxOTguODk5OTk5NjE4NTMwMjd9LHsieCI6MTYwOC42Mzg3Nzg2ODY1MjM0LCJ5IjoxOTguODk5OTk5NjE4NTMwMjd9LHsieCI6MTYzMy42Mzg3Nzg2ODY1MjM0LCJ5IjoxOTguODk5OTk5NjE4NTMwMjd9LHsieCI6MTY1OC42Mzg3Nzg2ODY1MjM0LCJ5IjoxOTguODk5OTk5NjE4NTMwMjd9LHsieCI6MTY4My42Mzg3Nzg2ODY1MjM0LCJ5IjoxOTguODk5OTk5NjE4NTMwMjd9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M1857.467,191.134L1882.467,188.9L1909.647,188.9" id="my-svg-L_EXECUTE_CHECKS_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_EXECUTE_CHECKS_0" data-points="W3sieCI6MTg1Ny40NjY5MDM2ODY1MjM0LCJ5IjoxOTEuMTMzODU2NTEyMDczMDR9LHsieCI6MTg4Mi40NjY5MDM2ODY1MjM0LCJ5IjoxODguODk5OTk5NjE4NTMwMjd9LHsieCI6MTkxMy42NDY1OTExODY1MjM0LCJ5IjoxODguODk5OTk5NjE4NTMwMjd9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2072.748,164.4L2187.686,89.65L2266.682,132.735" id="my-svg-L_CHECKS_EVIDENCE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_CHECKS_EVIDENCE_0" data-points="W3sieCI6MjA3Mi43NDgxMTQzMjg4NDEsInkiOjE2NC4zOTk5OTk2MTg1MzAyN30seyJ4IjoyMTg3LjY4NTY1MzY4NjUyMzQsInkiOjg5LjY0OTk5OTYxODUzMDI3fSx7IngiOjIyNzAuMTk0MDg0NDQxOTE5LCJ5IjoxMzQuNjQ5OTk5NjE4NTMwMjd9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2367.586,134.65L2442.545,99.65L2542.654,99.65L2642.764,99.65L2670.225,99.65" id="my-svg-L_EVIDENCE_REVIEW_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_EVIDENCE_REVIEW_0" data-points="W3sieCI6MjM2Ny41ODYzODg5ODA2NDEsInkiOjEzNC42NDk5OTk2MTg1MzAyN30seyJ4IjoyNDQyLjU0NTAyODY4NjUyMzQsInkiOjk5LjY0OTk5OTYxODUzMDI3fSx7IngiOjI1NDIuNjU0NDAzNjg2NTIzNCwieSI6OTkuNjQ5OTk5NjE4NTMwMjd9LHsieCI6MjY0Mi43NjM3Nzg2ODY1MjM0LCJ5Ijo5OS42NDk5OTk2MTg1MzAyN30seyJ4IjoyNjc0LjIyNDcxNjE4NjUyMzQsInkiOjk5LjY0OTk5OTYxODUzMDI3fV0=" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2784.647,93.411L2868.803,83.9L2979.287,83.9" id="my-svg-L_REVIEW_COMPLETE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_REVIEW_COMPLETE_0" data-points="W3sieCI6Mjc4NC42NDY1OTExODY1MjM0LCJ5Ijo5My40MTA1NjYzNTQzMzM4NX0seyJ4IjoyODY4LjgwMjg0MTE4NjUyMzQsInkiOjgzLjg5OTk5OTYxODUzMDI3fSx7IngiOjI5ODMuMjg3MjE2MTg2NTIzNCwieSI6ODMuODk5OTk5NjE4NTMwMjd9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M3165.522,76.277L3315.272,63.75L3487.936,64.239" id="my-svg-L_COMPLETE_VALID_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_COMPLETE_VALID_0" data-points="W3sieCI6MzE2NS41MjE1OTExODY1MjM0LCJ5Ijo3Ni4yNzc0OTQ4MTY1MTU0Nn0seyJ4IjozMzE1LjI3MTU5MTE4NjUyMzQsInkiOjYzLjc1fSx7IngiOjM0OTEuOTM1ODE5NjI1ODM1LCJ5Ijo2NC4yNX1d" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2359.684,183.65L2442.545,229.2L2542.654,229.2L2642.764,229.2L2663.764,229.2" id="my-svg-L_EVIDENCE_DIAGNOSE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_EVIDENCE_DIAGNOSE_0" data-points="W3sieCI6MjM1OS42ODM4OTc2MTQxMiwieSI6MTgzLjY0OTk5OTYxODUzMDI3fSx7IngiOjI0NDIuNTQ1MDI4Njg2NTIzNCwieSI6MjI5LjE5OTk5ODg1NTU5MDgyfSx7IngiOjI1NDIuNjU0NDAzNjg2NTIzNCwieSI6MjI5LjE5OTk5ODg1NTU5MDgyfSx7IngiOjI2NDIuNzYzNzc4Njg2NTIzNCwieSI6MjI5LjE5OTk5ODg1NTU5MDgyfSx7IngiOjI2NjcuNzYzNzc4Njg2NTIzNCwieSI6MjI5LjE5OTk5ODg1NTU5MDgyfV0=" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2791.108,229.2L2868.803,229.2L3013.649,250.159" id="my-svg-L_DIAGNOSE_CORRECT_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_DIAGNOSE_CORRECT_0" data-points="W3sieCI6Mjc5MS4xMDc1Mjg2ODY1MjM0LCJ5IjoyMjkuMTk5OTk4ODU1NTkwODJ9LHsieCI6Mjg2OC44MDI4NDExODY1MjM0LCJ5IjoyMjkuMTk5OTk4ODU1NTkwODJ9LHsieCI6MzAxNy42MDc1Mjg2ODY1MjM0LCJ5IjoyNTAuNzMxNjQxOTAwMDEwNzd9XQ==" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M3017.608,267.168L2868.803,288.7L2729.436,288.7L2642.764,288.7L2542.654,288.7L2442.545,288.7L2315.115,288.7L2187.686,288.7L2075.888,215.589" id="my-svg-L_CORRECT_CHECKS_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_CORRECT_CHECKS_0" data-points="W3sieCI6MzAxNy42MDc1Mjg2ODY1MjM0LCJ5IjoyNjcuMTY4MzU1ODExMTcwODR9LHsieCI6Mjg2OC44MDI4NDExODY1MjM0LCJ5IjoyODguNjk5OTk4ODU1NTkwOH0seyJ4IjoyNzI5LjQzNTY1MzY4NjUyMzQsInkiOjI4OC42OTk5OTg4NTU1OTA4fSx7IngiOjI2NDIuNzYzNzc4Njg2NTIzNCwieSI6Mjg4LjY5OTk5ODg1NTU5MDh9LHsieCI6MjU0Mi42NTQ0MDM2ODY1MjM0LCJ5IjoyODguNjk5OTk4ODU1NTkwOH0seyJ4IjoyNDQyLjU0NTAyODY4NjUyMzQsInkiOjI4OC42OTk5OTg4NTU1OTA4fSx7IngiOjIzMTUuMTE1MzQxMTg2NTIzNCwieSI6Mjg4LjY5OTk5ODg1NTU5MDh9LHsieCI6MjE4Ny42ODU2NTM2ODY1MjM0LCJ5IjoyODguNjk5OTk4ODU1NTkwOH0seyJ4IjoyMDcyLjU0MDUwNDI5ODU3NjcsInkiOjIxMy4zOTk5OTk2MTg1MzAyN31d" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2784.647,109.376L2868.803,124.2L3051.759,420.746" id="my-svg-L_REVIEW_REVALIDATE_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_REVIEW_REVALIDATE_0" data-points="W3sieCI6Mjc4NC42NDY1OTExODY1MjM0LCJ5IjoxMDkuMzc1NTkyMTE4NTc1NX0seyJ4IjoyODY4LjgwMjg0MTE4NjUyMzQsInkiOjEyNC4xOTk5OTg4NTU1OTA4Mn0seyJ4IjozMDUzLjg1OTY3MTg4MDQwNjUsInkiOjQyNC4xNDk5OTk2MTg1MzAzfV0=" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2946.498,457.45L2868.803,457.45L2729.436,457.45L2642.764,457.45L2542.654,457.45L2442.545,457.45L2315.115,457.45L2187.686,457.45L2035.076,457.45L1882.467,457.45L1770.553,457.45L1658.639,457.45L1633.639,457.45L1608.639,457.45L1474.943,457.45L1341.248,457.45L1239.67,315.9" id="my-svg-L_REVALIDATE_PREFLIGHT_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_REVALIDATE_PREFLIGHT_0" data-points="W3sieCI6Mjk0Ni40OTgxNTM2ODY1MjM0LCJ5Ijo0NTcuNDQ5OTk4ODU1NTkwOH0seyJ4IjoyODY4LjgwMjg0MTE4NjUyMzQsInkiOjQ1Ny40NDk5OTg4NTU1OTA4fSx7IngiOjI3MjkuNDM1NjUzNjg2NTIzNCwieSI6NDU3LjQ0OTk5ODg1NTU5MDh9LHsieCI6MjY0Mi43NjM3Nzg2ODY1MjM0LCJ5Ijo0NTcuNDQ5OTk4ODU1NTkwOH0seyJ4IjoyNTQyLjY1NDQwMzY4NjUyMzQsInkiOjQ1Ny40NDk5OTg4NTU1OTA4fSx7IngiOjI0NDIuNTQ1MDI4Njg2NTIzNCwieSI6NDU3LjQ0OTk5ODg1NTU5MDh9LHsieCI6MjMxNS4xMTUzNDExODY1MjM0LCJ5Ijo0NTcuNDQ5OTk4ODU1NTkwOH0seyJ4IjoyMTg3LjY4NTY1MzY4NjUyMzQsInkiOjQ1Ny40NDk5OTg4NTU1OTA4fSx7IngiOjIwMzUuMDc2Mjc4Njg2NTIzNCwieSI6NDU3LjQ0OTk5ODg1NTU5MDh9LHsieCI6MTg4Mi40NjY5MDM2ODY1MjM0LCJ5Ijo0NTcuNDQ5OTk4ODU1NTkwOH0seyJ4IjoxNzcwLjU1Mjg0MTE4NjUyMzQsInkiOjQ1Ny40NDk5OTg4NTU1OTA4fSx7IngiOjE2NTguNjM4Nzc4Njg2NTIzNCwieSI6NDU3LjQ0OTk5ODg1NTU5MDh9LHsieCI6MTYzMy42Mzg3Nzg2ODY1MjM0LCJ5Ijo0NTcuNDQ5OTk4ODU1NTkwOH0seyJ4IjoxNjA4LjYzODc3ODY4NjUyMzQsInkiOjQ1Ny40NDk5OTg4NTU1OTA4fSx7IngiOjE0NzQuOTQzNDY2MTg2NTIzNCwieSI6NDU3LjQ0OTk5ODg1NTU5MDh9LHsieCI6MTM0MS4yNDgxNTM2ODY1MjM0LCJ5Ijo0NTcuNDQ5OTk4ODU1NTkwOH0seyJ4IjoxMjM3LjMzNzUyOTEzNDkyMDcsInkiOjMxMi42NDk5OTk2MTg1MzAzfV0=" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M1798.027,223.4L1882.467,298.7L1994.051,371.269" id="my-svg-L_EXECUTE_DELEGATE_0" class="edge-thickness-normal edge-pattern-dotted edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_EXECUTE_DELEGATE_0" data-points="W3sieCI6MTc5OC4wMjY3MzQ0OTUyNTAxLCJ5IjoyMjMuMzk5OTk5NjE4NTMwMjd9LHsieCI6MTg4Mi40NjY5MDM2ODY1MjM0LCJ5IjoyOTguNjk5OTk4ODU1NTkwOH0seyJ4IjoxOTk3LjQwNDQ0MzA0NDIwNjEsInkiOjM3My40NDk5OTg4NTU1OTA4fV0=" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M2060.17,373.45L2187.686,248.95L2277.079,185.954" id="my-svg-L_DELEGATE_EVIDENCE_0" class="edge-thickness-normal edge-pattern-dotted edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_DELEGATE_EVIDENCE_0" data-points="W3sieCI6MjA2MC4xNjk3NjY1MjIwOTQsInkiOjM3My40NDk5OTg4NTU1OTA4fSx7IngiOjIxODcuNjg1NjUzNjg2NTIzNCwieSI6MjQ4Ljk0OTk5ODg1NTU5MDgyfSx7IngiOjIyODAuMzQ4ODg5NDAxNzI3MywieSI6MTgzLjY0OTk5OTYxODUzMDI3fV0=" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/><path d="M3165.522,91.523L3315.272,104.05L3477.675,203.117" id="my-svg-L_COMPLETE_BLOCKED_0" class="edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link" style=";" data-edge="true" data-et="edge" data-id="L_COMPLETE_BLOCKED_0" data-points="W3sieCI6MzE2NS41MjE1OTExODY1MjM0LCJ5Ijo5MS41MjI1MDQ0MjA1NDUwOX0seyJ4IjozMzE1LjI3MTU5MTE4NjUyMzQsInkiOjEwNC4wNDk5OTkyMzcwNjA1NX0seyJ4IjozNDgxLjA4OTU2MTA2NDk3MjcsInkiOjIwNS4xOTk5OTg4NTU1OTEyOH1d" data-look="classic" marker-end="url(#my-svg_flowchart-v2-pointEnd)"/></g><g class="edgeLabels"><g class="edgeLabel"><g class="label" data-id="L_REQUEST_PROFILE_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_PROFILE_CONTRACT_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_CONTRACT_ROUTE_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_ROUTE_GATES_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_GATES_PREFLIGHT_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_PREFLIGHT_STATE_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_STATE_EXECUTE_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_EXECUTE_CHECKS_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_CHECKS_EVIDENCE_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_EVIDENCE_REVIEW_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_REVIEW_COMPLETE_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_COMPLETE_VALID_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel" transform="translate(2542.6544036865234, 229.19999885559082)"><g class="label" data-id="L_EVIDENCE_DIAGNOSE_0" transform="translate(0, -10.5)"><g><rect class="background" style="" x="-75.109375" y="-1" width="150.21875" height="23"/><text y="-10.1" text-anchor="middle" style=""><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">failed</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> or</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> incomplete</tspan></tspan></text></g></g></g><g class="edgeLabel"><g class="label" data-id="L_DIAGNOSE_CORRECT_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_CORRECT_CHECKS_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel" transform="translate(2868.8028411865234, 124.19999885559082)"><g class="label" data-id="L_REVIEW_REVALIDATE_0" transform="translate(0, -10.5)"><g><rect class="background" style="" x="-52.6953125" y="-1" width="105.390625" height="23"/><text y="-10.1" text-anchor="middle" style=""><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">drift</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> detected</tspan></tspan></text></g></g></g><g class="edgeLabel"><g class="label" data-id="L_REVALIDATE_PREFLIGHT_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_EXECUTE_DELEGATE_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel"><g class="label" data-id="L_DELEGATE_EVIDENCE_0" transform="translate(0, 0)"><text y="-10.1" text-anchor="middle"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"/></text></g></g><g><rect class="background" style="stroke: none"/></g><g class="edgeLabel" transform="translate(3315.2715911865234, 104.04999923706055)"><g class="label" data-id="L_COMPLETE_BLOCKED_0" transform="translate(0, -19.299999237060547)"><g><rect class="background" style="" x="-87.9609375" y="-1" width="175.921875" height="40.599998474121094"/><text y="-10.1" text-anchor="middle" style=""><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em" text-anchor="middle"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">INCOMPLETE</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> ·</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> STALE</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> ·</tspan></tspan><tspan class="text-outer-tspan row" x="0" y="1em" dy="1.1em" text-anchor="middle"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">INCONSISTENT</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> ·</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> INVALID</tspan></tspan></text></g></g></g></g><g class="nodes"><g class="node default entry" id="my-svg-flowchart-REQUEST-0" data-look="classic" transform="translate(73.03813934326172, 288.1499996185303)"><g class="basic label-container outer-path"><path d="M-23.046875 -17 C-10.931879974305048 -17, 1.1831150513899047 -17, 23.046875 -17 C23.046875 -17, 23.046875 -17, 23.046875 -17 C23.384250135940807 -16.989181036051242, 23.721625271881617 -16.978362072102485, 24.13606873967212 -16.965071676755716 C24.559216002657084 -16.9242511692046, 24.982363265642046 -16.883430661653478, 25.2207867486366 -16.860430234995185 C25.616847252950976 -16.79639824415272, 26.012907757265353 -16.732366253310257, 26.296571687923326 -16.686505668848113 C26.59636670727364 -16.618079412026734, 26.89616172662395 -16.549653155205355, 27.35900292646162 -16.4440126716635 C27.745865342611836 -16.32919393723238, 28.132727758762048 -16.214375202801257, 28.40371470640155 -16.133947699181366 C28.741074863673337 -16.00979604278224, 29.07843502094512 -15.885644386383117, 29.42641408294936 -15.757584874882369 C29.810880909172383 -15.587392815716624, 30.19534773539541 -15.417200756550878, 30.422898564998487 -15.316470754341125 C30.701351069291 -15.171202261209062, 30.979803573583514 -15.025933768077, 31.38907338406694 -14.812417970097622 C31.720947577503015 -14.611233883727431, 32.05282177093909 -14.410049797357239, 32.320968320579325 -14.247497783161291 C32.509306530951264 -14.116121200635549, 32.69764474132321 -13.984744618109808, 33.214754018350675 -13.624031571755262 C33.49488310302893 -13.400636081272365, 33.7750121877072 -13.177240590789467, 34.0667577202324 -12.944581292275288 C34.280654703379305 -12.750325711585317, 34.494551686526215 -12.556070130895346, 34.87347836025927 -12.21193895166137 C35.17058585195554 -11.90515107350625, 35.46769334365182 -11.59836319535113, 35.63160095028036 -11.42911513444239 C35.807478513630485 -11.222519340814468, 35.98335607698061 -11.015923547186548, 36.33801020195651 -10.59932663159847 C36.53906039925975 -10.329937683261896, 36.74011059656299 -10.060548734925321, 36.98980332814825 -9.725983222076888 C37.11174754553387 -9.538644157565246, 37.23369176291949 -9.351305093053604, 37.58430197109088 -8.812673661278927 C37.718386686789486 -8.574592671006293, 37.85247140248809 -8.336511680733658, 38.119063208341004 -7.863150934094199 C38.27865673659953 -7.531751557910897, 38.438250264858056 -7.2003521817275935, 38.59188959126881 -6.881316833080699 C38.68785654855088 -6.644276593199085, 38.783823505832956 -6.407236353317471, 39.000838174845924 -5.871205925162238 C39.07872239548986 -5.636631061748058, 39.1566066161338 -5.402056198333877, 39.344228501623235 -4.836968972727556 C39.414495146560846 -4.569011801823882, 39.48476179149846 -4.301054630920207, 39.620649507091 -3.7828558772573464 C39.69269518324068 -3.4129165570877915, 39.76474085939036 -3.042977236918236, 39.82896531804565 -2.713198215567453 C39.872959057439836 -2.371991460372585, 39.916952796834025 -2.030784705177717, 39.968319920136366 -1.632391440430593 C39.9875519452349 -1.3328371257097225, 40.00678397033343 -1.0332828109888519, 40.0381406754117 -0.5448768187181379 C40.0381406754117 -0.13917665395334505, 40.0381406754117 0.26652351081144776, 40.0381406754117 0.5448768187181336 C40.02278382650588 0.7840721362515672, 40.00742697760006 1.0232674537850008, 39.968319920136366 1.6323914404305815 C39.918395106118524 2.0195984391833637, 39.86847029210068 2.4068054379361463, 39.828965318045654 2.7131982155674415 C39.782544285583775 2.9515604061704974, 39.736123253121896 3.1899225967735534, 39.620649507091 3.782855877257343 C39.53124833932856 4.12378127664673, 39.441847171566124 4.4647066760361165, 39.344228501623235 4.836968972727545 C39.247251908976594 5.129047018657477, 39.15027531632996 5.42112506458741, 39.000838174845924 5.871205925162227 C38.89144361964121 6.141412591517728, 38.782049064436485 6.4116192578732285, 38.59188959126881 6.881316833080694 C38.418198083380396 7.241990965613901, 38.24450657549198 7.602665098147108, 38.119063208341004 7.863150934094196 C37.9722792417766 8.123780730217652, 37.8254952752122 8.384410526341108, 37.58430197109089 8.812673661278923 C37.386701794682494 9.116240595319113, 37.1891016182741 9.419807529359304, 36.989803328148255 9.725983222076879 C36.76361871163951 10.02905000235613, 36.53743409513077 10.332116782635378, 36.33801020195651 10.599326631598467 C36.10214143580476 10.876391505633313, 35.866272669653014 11.153456379668157, 35.63160095028037 11.42911513444238 C35.37325011865076 11.695883579097698, 35.11489928702115 11.962652023753018, 34.87347836025927 12.211938951661365 C34.59469930914889 12.465118709790314, 34.315920258038524 12.718298467919263, 34.06675772023242 12.944581292275275 C33.72694891875339 13.215569768762819, 33.38714011727437 13.486558245250365, 33.214754018350675 13.62403157175526 C32.88049467865638 13.857196417272398, 32.54623533896209 14.090361262789536, 32.32096832057934 14.247497783161286 C32.054404207244474 14.409090515169492, 31.787840093909605 14.570683247177698, 31.389073384066943 14.81241797009762 C31.027484069727723 15.00105888377938, 30.665894755388504 15.189699797461142, 30.42289856499849 15.316470754341124 C30.200270548861145 15.415021573059668, 29.977642532723802 15.513572391778213, 29.426414082949368 15.757584874882367 C29.15473490054816 15.857565325380843, 28.883055718146952 15.95754577587932, 28.403714706401562 16.133947699181363 C28.171295542119022 16.202928487147332, 27.938876377836483 16.271909275113302, 27.359002926461642 16.444012671663497 C27.096320010467675 16.503968333072894, 26.83363709447371 16.563923994482295, 26.296571687923333 16.68650566884811 C25.95269055712479 16.74210170323762, 25.608809426326246 16.79769773762713, 25.220786748636613 16.86043023499518 C24.989182964594367 16.882772773497436, 24.757579180552124 16.905115311999687, 24.13606873967212 16.965071676755716 C23.797680602322952 16.975923125687952, 23.459292464973785 16.98677457462019, 23.046875000000004 17 C23.046875000000004 17, 23.046875 17, 23.046875 17 C5.305320469997241 17, -12.436234060005518 17, -23.046874999999996 17 C-23.426738449683008 16.987818518528016, -23.806601899366022 16.975637037056032, -24.136068739672112 16.965071676755716 C-24.417791311995177 16.937894239024676, -24.699513884318247 16.91071680129363, -25.220786748636606 16.86043023499518 C-25.5697197348463 16.804017455800523, -25.918652721055995 16.74760467660586, -26.29657168792333 16.68650566884811 C-26.524916110262183 16.63438754453588, -26.753260532601036 16.582269420223646, -27.35900292646162 16.4440126716635 C-27.598359363899558 16.3729729374395, -27.8377158013375 16.301933203215498, -28.403714706401544 16.13394769918137 C-28.635962753327934 16.048478271035048, -28.868210800254325 15.963008842888723, -29.42641408294936 15.757584874882369 C-29.794053945387002 15.594841613430265, -30.161693807824644 15.432098351978164, -30.422898564998484 15.316470754341127 C-30.61994435458375 15.213672092128345, -30.81699014416902 15.110873429915562, -31.389073384066936 14.812417970097624 C-31.70487818344861 14.620975244837455, -32.02068298283028 14.429532519577284, -32.32096832057932 14.247497783161299 C-32.60584539612734 14.04877986738884, -32.89072247167536 13.850061951616379, -33.21475401835067 13.624031571755264 C-33.50341273140913 13.3938339296221, -33.792071444467595 13.163636287488936, -34.0667577202324 12.94458129227529 C-34.26408698575668 12.765372074372406, -34.461416251280944 12.586162856469524, -34.87347836025926 12.211938951661377 C-35.168340457413485 11.907469627721243, -35.463202554567715 11.603000303781108, -35.631600950280365 11.429115134442386 C-35.83575519451784 11.189303942455465, -36.039909438755316 10.949492750468544, -36.33801020195651 10.599326631598473 C-36.49808173022127 10.384845366539913, -36.65815325848603 10.170364101481354, -36.98980332814825 9.72598322207689 C-37.12535051853599 9.517746338124294, -37.26089770892372 9.309509454171698, -37.58430197109088 8.812673661278936 C-37.700183228152234 8.606914755116806, -37.81606448521359 8.401155848954678, -38.119063208341004 7.863150934094201 C-38.232880371306166 7.626807159899886, -38.34669753427132 7.390463385705569, -38.59188959126881 6.881316833080701 C-38.70537469429259 6.601006434526765, -38.818859797316364 6.320696035972827, -39.000838174845924 5.87120592516224 C-39.118847044142925 5.515782012999616, -39.236855913439925 5.160358100836992, -39.344228501623235 4.8369689727275516 C-39.42332739538328 4.53533060914308, -39.50242628914333 4.233692245558609, -39.620649507091 3.782855877257349 C-39.6883766066244 3.435091535280875, -39.75610370615781 3.087327193304401, -39.82896531804565 2.713198215567455 C-39.87067761539798 2.389685874327539, -39.912389912750314 2.0661735330876225, -39.968319920136366 1.6323914404306026 C-39.99481950154064 1.2196390699820154, -40.021319082944906 0.8068866995334284, -40.0381406754117 0.54487681871814 C-40.0381406754117 0.1222065867714231, -40.0381406754117 -0.3004636451752938, -40.0381406754117 -0.5448768187181317 C-40.0212518829653 -0.8079333934585893, -40.00436309051891 -1.070989968199047, -39.968319920136366 -1.6323914404305793 C-39.91921410701493 -2.0132464299608395, -39.870108293893495 -2.3941014194910997, -39.828965318045654 -2.713198215567447 C-39.7827105645593 -2.950706598774251, -39.73645581107295 -3.1882149819810546, -39.620649507091 -3.782855877257341 C-39.52696326871647 -4.1401221080519806, -39.43327703034195 -4.497388338846621, -39.344228501623235 -4.836968972727544 C-39.22776835556779 -5.187728377242152, -39.11130820951234 -5.53848778175676, -39.00083817484593 -5.871205925162218 C-38.855838781360724 -6.229357230443234, -38.710839387875524 -6.58750853572425, -38.59188959126881 -6.881316833080692 C-38.423558893176875 -7.230859129368563, -38.25522819508493 -7.580401425656434, -38.119063208341004 -7.863150934094194 C-37.96770834223147 -8.131896825213795, -37.81635347612194 -8.400642716333396, -37.58430197109088 -8.812673661278929 C-37.39795309131608 -9.098955582293732, -37.21160421154129 -9.385237503308533, -36.98980332814825 -9.725983222076884 C-36.85922244258415 -9.900949712569377, -36.72864155702005 -10.075916203061869, -36.33801020195651 -10.599326631598467 C-36.08037018373111 -10.901965257138357, -35.82273016550572 -11.204603882678247, -35.63160095028037 -11.42911513444238 C-35.335616329192035 -11.734743556505409, -35.039631708103705 -12.040371978568436, -34.87347836025928 -12.21193895166136 C-34.62355187709603 -12.438915570977846, -34.37362539393278 -12.66589219029433, -34.06675772023242 -12.944581292275274 C-33.844619204364335 -13.1217308473259, -33.62248068849625 -13.298880402376525, -33.214754018350675 -13.624031571755259 C-33.00929044710987 -13.767354064678202, -32.803826875869056 -13.910676557601143, -32.32096832057934 -14.247497783161284 C-31.987458489668274 -14.449673402580887, -31.653948658757212 -14.651849022000487, -31.389073384066947 -14.812417970097618 C-31.174939532479677 -14.924131463311419, -30.960805680892406 -15.03584495652522, -30.42289856499849 -15.316470754341124 C-30.140593708879628 -15.441438739868927, -29.85828885276076 -15.566406725396728, -29.426414082949368 -15.757584874882365 C-29.189507894487864 -15.844768542173, -28.952601706026357 -15.931952209463633, -28.403714706401566 -16.133947699181363 C-28.081114262591882 -16.229693817539793, -27.7585138187822 -16.32543993589822, -27.359002926461642 -16.444012671663494 C-26.943803949201033 -16.538779128796694, -26.528604971940425 -16.63354558592989, -26.296571687923336 -16.68650566884811 C-25.982211786418947 -16.737328939825893, -25.66785188491456 -16.788152210803677, -25.220786748636613 -16.86043023499518 C-24.951114958932223 -16.886445148220186, -24.68144316922783 -16.91246006144519, -24.13606873967212 -16.965071676755716 C-23.816852961606937 -16.975308305442447, -23.49763718354176 -16.98554493412918, -23.046875000000004 -17 C-23.046875000000004 -17, -23.046875 -17, -23.046875 -17" stroke="none" stroke-width="0" fill="#1f2937" style="fill:#1f2937 !important;stroke:#7dd3fc !important;stroke-width:2px !important"/><path d="M-23.046875 -17 C-13.827917781527503 -17, -4.608960563055007 -17, 23.046875 -17 M-23.046875 -17 C-12.843936235076397 -17, -2.6409974701527936 -17, 23.046875 -17 M23.046875 -17 C23.046875 -17, 23.046875 -17, 23.046875 -17 M23.046875 -17 C23.046875 -17, 23.046875 -17, 23.046875 -17 M23.046875 -17 C23.281784111219622 -16.992466922026033, 23.516693222439244 -16.984933844052065, 24.13606873967212 -16.965071676755716 M23.046875 -17 C23.456316632032102 -16.98687000379052, 23.8657582640642 -16.97374000758104, 24.13606873967212 -16.965071676755716 M24.13606873967212 -16.965071676755716 C24.44717597169245 -16.935059536243905, 24.758283203712782 -16.90504739573209, 25.2207867486366 -16.860430234995185 M24.13606873967212 -16.965071676755716 C24.5306525616134 -16.927006650009517, 24.925236383554687 -16.888941623263317, 25.2207867486366 -16.860430234995185 M25.2207867486366 -16.860430234995185 C25.457442744600982 -16.82216952886232, 25.694098740565366 -16.78390882272946, 26.296571687923326 -16.686505668848113 M25.2207867486366 -16.860430234995185 C25.5707996802631 -16.80384285860064, 25.920812611889602 -16.74725548220609, 26.296571687923326 -16.686505668848113 M26.296571687923326 -16.686505668848113 C26.652934475277185 -16.60516818811911, 27.009297262631048 -16.523830707390104, 27.35900292646162 -16.4440126716635 M26.296571687923326 -16.686505668848113 C26.554998053324514 -16.62752153733493, 26.813424418725702 -16.56853740582174, 27.35900292646162 -16.4440126716635 M27.35900292646162 -16.4440126716635 C27.58766227270355 -16.376147777956298, 27.81632161894548 -16.308282884249095, 28.40371470640155 -16.133947699181366 M27.35900292646162 -16.4440126716635 C27.677394223599695 -16.349515805942943, 27.995785520737765 -16.255018940222385, 28.40371470640155 -16.133947699181366 M28.40371470640155 -16.133947699181366 C28.767787149008587 -15.99996567485321, 29.131859591615623 -15.865983650525054, 29.42641408294936 -15.757584874882369 M28.40371470640155 -16.133947699181366 C28.728608786931726 -16.014383674258305, 29.0535028674619 -15.894819649335242, 29.42641408294936 -15.757584874882369 M29.42641408294936 -15.757584874882369 C29.692185018473655 -15.639935965540454, 29.957955953997946 -15.52228705619854, 30.422898564998487 -15.316470754341125 M29.42641408294936 -15.757584874882369 C29.651405022102296 -15.657988060238443, 29.87639596125523 -15.558391245594516, 30.422898564998487 -15.316470754341125 M30.422898564998487 -15.316470754341125 C30.75101850290588 -15.14529079290569, 31.07913844081327 -14.974110831470256, 31.38907338406694 -14.812417970097622 M30.422898564998487 -15.316470754341125 C30.73644160664267 -15.152895550349257, 31.04998464828686 -14.989320346357388, 31.38907338406694 -14.812417970097622 M31.38907338406694 -14.812417970097622 C31.73042496085404 -14.605488638244752, 32.07177653764114 -14.398559306391883, 32.320968320579325 -14.247497783161291 M31.38907338406694 -14.812417970097622 C31.740047160609247 -14.599655604206824, 32.091020937151555 -14.386893238316027, 32.320968320579325 -14.247497783161291 M32.320968320579325 -14.247497783161291 C32.65684853747521 -14.013202283874968, 32.9927287543711 -13.778906784588644, 33.214754018350675 -13.624031571755262 M32.320968320579325 -14.247497783161291 C32.52452010249345 -14.10550887171262, 32.72807188440757 -13.96351996026395, 33.214754018350675 -13.624031571755262 M33.214754018350675 -13.624031571755262 C33.52904765358627 -13.373390761359762, 33.84334128882187 -13.122749950964261, 34.0667577202324 -12.944581292275288 M33.214754018350675 -13.624031571755262 C33.48914389716784 -13.405212945219903, 33.76353377598501 -13.186394318684544, 34.0667577202324 -12.944581292275288 M34.0667577202324 -12.944581292275288 C34.351142033447765 -12.686310983409697, 34.63552634666313 -12.428040674544107, 34.87347836025927 -12.21193895166137 M34.0667577202324 -12.944581292275288 C34.3232126915197 -12.711675672778872, 34.579667662807005 -12.478770053282457, 34.87347836025927 -12.21193895166137 M34.87347836025927 -12.21193895166137 C35.08132452585406 -11.997320721197198, 35.289170691448845 -11.782702490733026, 35.63160095028036 -11.42911513444239 M34.87347836025927 -12.21193895166137 C35.027683344925016 -12.052709644529292, 35.18188832959076 -11.893480337397214, 35.63160095028036 -11.42911513444239 M35.63160095028036 -11.42911513444239 C35.812569128314074 -11.216539615142946, 35.99353730634779 -11.003964095843502, 36.33801020195651 -10.59932663159847 M35.63160095028036 -11.42911513444239 C35.852074913011926 -11.170133872494022, 36.072548875743486 -10.911152610545653, 36.33801020195651 -10.59932663159847 M36.33801020195651 -10.59932663159847 C36.55325359363319 -10.3109200958281, 36.768496985309866 -10.022513560057732, 36.98980332814825 -9.725983222076888 M36.33801020195651 -10.59932663159847 C36.493510573551774 -10.390970300036097, 36.64901094514704 -10.182613968473722, 36.98980332814825 -9.725983222076888 M36.98980332814825 -9.725983222076888 C37.15127993559633 -9.477911790496208, 37.31275654304441 -9.22984035891553, 37.58430197109088 -8.812673661278927 M36.98980332814825 -9.725983222076888 C37.14082916805722 -9.493966975860294, 37.2918550079662 -9.261950729643702, 37.58430197109088 -8.812673661278927 M37.58430197109088 -8.812673661278927 C37.76273370235752 -8.49585005424297, 37.941165433624164 -8.179026447207013, 38.119063208341004 -7.863150934094199 M37.58430197109088 -8.812673661278927 C37.70302900773005 -8.601861785309948, 37.82175604436923 -8.391049909340971, 38.119063208341004 -7.863150934094199 M38.119063208341004 -7.863150934094199 C38.25245160166212 -7.58616708130849, 38.385839994983236 -7.309183228522782, 38.59188959126881 -6.881316833080699 M38.119063208341004 -7.863150934094199 C38.22021917912259 -7.653098396375192, 38.32137514990417 -7.443045858656184, 38.59188959126881 -6.881316833080699 M38.59188959126881 -6.881316833080699 C38.72661958906978 -6.548531133685012, 38.861349586870745 -6.215745434289325, 39.000838174845924 -5.871205925162238 M38.59188959126881 -6.881316833080699 C38.68380528523174 -6.6542832919232, 38.77572097919468 -6.427249750765701, 39.000838174845924 -5.871205925162238 M39.000838174845924 -5.871205925162238 C39.12767477593255 -5.489194291357331, 39.25451137701917 -5.107182657552422, 39.344228501623235 -4.836968972727556 M39.000838174845924 -5.871205925162238 C39.13428195668217 -5.469294515650737, 39.26772573851843 -5.067383106139236, 39.344228501623235 -4.836968972727556 M39.344228501623235 -4.836968972727556 C39.43020390540447 -4.509107496134001, 39.5161793091857 -4.181246019540445, 39.620649507091 -3.7828558772573464 M39.344228501623235 -4.836968972727556 C39.4256021139166 -4.5266561215063, 39.50697572620996 -4.216343270285044, 39.620649507091 -3.7828558772573464 M39.620649507091 -3.7828558772573464 C39.68596499258605 -3.447474663672995, 39.75128047808111 -3.1120934500886435, 39.82896531804565 -2.713198215567453 M39.620649507091 -3.7828558772573464 C39.66260567909425 -3.567419801460768, 39.704561851097495 -3.35198372566419, 39.82896531804565 -2.713198215567453 M39.82896531804565 -2.713198215567453 C39.87359563281152 -2.367054307495849, 39.91822594757739 -2.020910399424245, 39.968319920136366 -1.632391440430593 M39.82896531804565 -2.713198215567453 C39.878440371670095 -2.3294794696106282, 39.92791542529454 -1.945760723653804, 39.968319920136366 -1.632391440430593 M39.968319920136366 -1.632391440430593 C39.98879293969161 -1.3135076353336566, 40.00926595924687 -0.9946238302367201, 40.0381406754117 -0.5448768187181379 M39.968319920136366 -1.632391440430593 C39.9824422350004 -1.4124249870958892, 39.99656454986444 -1.1924585337611853, 40.0381406754117 -0.5448768187181379 M40.0381406754117 -0.5448768187181379 C40.0381406754117 -0.16622728809054615, 40.0381406754117 0.21242224253704556, 40.0381406754117 0.5448768187181336 M40.0381406754117 -0.5448768187181379 C40.0381406754117 -0.2098755081204729, 40.0381406754117 0.12512580247719207, 40.0381406754117 0.5448768187181336 M40.0381406754117 0.5448768187181336 C40.011229132717375 0.9640458187883865, 39.98431759002306 1.3832148188586393, 39.968319920136366 1.6323914404305815 M40.0381406754117 0.5448768187181336 C40.0124695308109 0.9447256172505457, 39.98679838621009 1.3445744157829578, 39.968319920136366 1.6323914404305815 M39.968319920136366 1.6323914404305815 C39.936077040861846 1.8824608450070976, 39.903834161587326 2.132530249583614, 39.828965318045654 2.7131982155674415 M39.968319920136366 1.6323914404305815 C39.92250096023874 1.9877542454195587, 39.87668200034111 2.3431170504085355, 39.828965318045654 2.7131982155674415 M39.828965318045654 2.7131982155674415 C39.773626293105735 2.9973524127268667, 39.71828726816582 3.281506609886292, 39.620649507091 3.782855877257343 M39.828965318045654 2.7131982155674415 C39.78716074888027 2.9278558428328747, 39.74535617971488 3.1425134700983075, 39.620649507091 3.782855877257343 M39.620649507091 3.782855877257343 C39.521365871079574 4.161467411168957, 39.422082235068146 4.5400789450805705, 39.344228501623235 4.836968972727545 M39.620649507091 3.782855877257343 C39.517540438179665 4.176055444769423, 39.41443136926833 4.569255012281504, 39.344228501623235 4.836968972727545 M39.344228501623235 4.836968972727545 C39.238546635763115 5.1552659145795525, 39.132864769903 5.473562856431561, 39.000838174845924 5.871205925162227 M39.344228501623235 4.836968972727545 C39.2649398004905 5.075773907600398, 39.18565109935776 5.314578842473252, 39.000838174845924 5.871205925162227 M39.000838174845924 5.871205925162227 C38.85096214211356 6.241402623667131, 38.7010861093812 6.611599322172036, 38.59188959126881 6.881316833080694 M39.000838174845924 5.871205925162227 C38.890230931511454 6.144407954643948, 38.779623688176976 6.41760998412567, 38.59188959126881 6.881316833080694 M38.59188959126881 6.881316833080694 C38.45755584763802 7.160263726011691, 38.323222104007236 7.439210618942688, 38.119063208341004 7.863150934094196 M38.59188959126881 6.881316833080694 C38.44318033012866 7.1901147957066724, 38.29447106898852 7.49891275833265, 38.119063208341004 7.863150934094196 M38.119063208341004 7.863150934094196 C37.99212285477709 8.088546385951583, 37.86518250121317 8.313941837808969, 37.58430197109089 8.812673661278923 M38.119063208341004 7.863150934094196 C37.99707864848475 8.079746872395095, 37.875094088628494 8.296342810695993, 37.58430197109089 8.812673661278923 M37.58430197109089 8.812673661278923 C37.4264807585819 9.055129424622168, 37.268659546072925 9.297585187965414, 36.989803328148255 9.725983222076879 M37.58430197109089 8.812673661278923 C37.385588900251484 9.117950300019142, 37.18687582941208 9.42322693875936, 36.989803328148255 9.725983222076879 M36.989803328148255 9.725983222076879 C36.85662242786711 9.904433495424003, 36.723441527585955 10.08288376877113, 36.33801020195651 10.599326631598467 M36.989803328148255 9.725983222076879 C36.775060957257814 10.013718435637617, 36.56031858636738 10.301453649198358, 36.33801020195651 10.599326631598467 M36.33801020195651 10.599326631598467 C36.11121157584614 10.865737203035115, 35.88441294973578 11.132147774471765, 35.63160095028037 11.42911513444238 M36.33801020195651 10.599326631598467 C36.12649223700413 10.847787668944697, 35.91497427205175 11.096248706290927, 35.63160095028037 11.42911513444238 M35.63160095028037 11.42911513444238 C35.443373571642056 11.623475356641626, 35.255146193003746 11.81783557884087, 34.87347836025927 12.211938951661365 M35.63160095028037 11.42911513444238 C35.45373675404221 11.612774519980366, 35.27587255780406 11.79643390551835, 34.87347836025927 12.211938951661365 M34.87347836025927 12.211938951661365 C34.69718870594011 12.372040551345377, 34.520899051620944 12.532142151029388, 34.06675772023242 12.944581292275275 M34.87347836025927 12.211938951661365 C34.675108291940624 12.392093399123965, 34.47673822362198 12.572247846586565, 34.06675772023242 12.944581292275275 M34.06675772023242 12.944581292275275 C33.72714864216155 13.215410494659675, 33.38753956409069 13.486239697044077, 33.214754018350675 13.62403157175526 M34.06675772023242 12.944581292275275 C33.8280279802288 13.134961907062973, 33.58929824022519 13.325342521850668, 33.214754018350675 13.62403157175526 M33.214754018350675 13.62403157175526 C32.92520150543502 13.826010870238962, 32.63564899251936 14.027990168722663, 32.32096832057934 14.247497783161286 M33.214754018350675 13.62403157175526 C32.91436186947347 13.83357213104546, 32.613969720596266 14.043112690335658, 32.32096832057934 14.247497783161286 M32.32096832057934 14.247497783161286 C32.10374708391067 14.379178573363513, 31.886525847241998 14.510859363565741, 31.389073384066943 14.81241797009762 M32.32096832057934 14.247497783161286 C31.967377695434198 14.46184649805343, 31.61378707028906 14.676195212945574, 31.389073384066943 14.81241797009762 M31.389073384066943 14.81241797009762 C31.097393270709755 14.964587298406036, 30.805713157352567 15.11675662671445, 30.42289856499849 15.316470754341124 M31.389073384066943 14.81241797009762 C31.04222176623952 14.993370236949122, 30.695370148412096 15.174322503800624, 30.42289856499849 15.316470754341124 M30.42289856499849 15.316470754341124 C30.046214032707447 15.483217822836728, 29.669529500416406 15.649964891332335, 29.426414082949368 15.757584874882367 M30.42289856499849 15.316470754341124 C30.101947411629407 15.458546309259923, 29.780996258260323 15.600621864178722, 29.426414082949368 15.757584874882367 M29.426414082949368 15.757584874882367 C29.20624797604839 15.838608037415108, 28.986081869147416 15.91963119994785, 28.403714706401562 16.133947699181363 M29.426414082949368 15.757584874882367 C29.191025905469893 15.844209900099274, 28.955637727990418 15.93083492531618, 28.403714706401562 16.133947699181363 M28.403714706401562 16.133947699181363 C28.186378502685127 16.198451943623386, 27.969042298968695 16.262956188065413, 27.359002926461642 16.444012671663497 M28.403714706401562 16.133947699181363 C28.116956179756944 16.219056124663265, 27.830197653112325 16.304164550145163, 27.359002926461642 16.444012671663497 M27.359002926461642 16.444012671663497 C27.11939652336043 16.498701269593443, 26.879790120259216 16.553389867523393, 26.296571687923333 16.68650566884811 M27.359002926461642 16.444012671663497 C27.049080339052725 16.51475047980569, 26.73915775164381 16.58548828794789, 26.296571687923333 16.68650566884811 M26.296571687923333 16.68650566884811 C25.924049015921607 16.74673224550088, 25.551526343919882 16.80695882215365, 25.220786748636613 16.86043023499518 M26.296571687923333 16.68650566884811 C25.99585282287923 16.73512356283881, 25.69513395783513 16.783741456829514, 25.220786748636613 16.86043023499518 M25.220786748636613 16.86043023499518 C24.903537280563224 16.891034909631912, 24.58628781248984 16.921639584268647, 24.13606873967212 16.965071676755716 M25.220786748636613 16.86043023499518 C24.990487240873975 16.882646951533363, 24.760187733111337 16.904863668071542, 24.13606873967212 16.965071676755716 M24.13606873967212 16.965071676755716 C23.739267985653083 16.977796304611292, 23.342467231634046 16.990520932466872, 23.046875000000004 17 M24.13606873967212 16.965071676755716 C23.747567248265483 16.977530163412847, 23.359065756858843 16.989988650069982, 23.046875000000004 17 M23.046875000000004 17 C23.046875000000004 17, 23.046875 17, 23.046875 17 M23.046875000000004 17 C23.046875000000004 17, 23.046875 17, 23.046875 17 M23.046875 17 C10.043335269074305 17, -2.96020446185139 17, -23.046874999999996 17 M23.046875 17 C13.737557726344676 17, 4.4282404526893515 17, -23.046874999999996 17 M-23.046874999999996 17 C-23.29521133659918 16.99203633704262, -23.54354767319837 16.98407267408524, -24.136068739672112 16.965071676755716 M-23.046874999999996 17 C-23.415241731566468 16.98818719590101, -23.783608463132943 16.97637439180202, -24.136068739672112 16.965071676755716 M-24.136068739672112 16.965071676755716 C-24.42690764916752 16.937014796941657, -24.71774655866293 16.9089579171276, -25.220786748636606 16.86043023499518 M-24.136068739672112 16.965071676755716 C-24.448413565415976 16.934940147065817, -24.76075839115984 16.90480861737592, -25.220786748636606 16.86043023499518 M-25.220786748636606 16.86043023499518 C-25.552610856109833 16.806783486633297, -25.884434963583058 16.75313673827141, -26.29657168792333 16.68650566884811 M-25.220786748636606 16.86043023499518 C-25.45063223117182 16.823270599857228, -25.680477713707035 16.78611096471927, -26.29657168792333 16.68650566884811 M-26.29657168792333 16.68650566884811 C-26.656966257145637 16.60424796021747, -27.01736082636794 16.52199025158683, -27.35900292646162 16.4440126716635 M-26.29657168792333 16.68650566884811 C-26.68307242687568 16.598289397335265, -27.06957316582803 16.510073125822423, -27.35900292646162 16.4440126716635 M-27.35900292646162 16.4440126716635 C-27.64037021765719 16.360504336563707, -27.921737508852758 16.276996001463914, -28.403714706401544 16.13394769918137 M-27.35900292646162 16.4440126716635 C-27.660395147311018 16.35456104255545, -27.96178736816042 16.2651094134474, -28.403714706401544 16.13394769918137 M-28.403714706401544 16.13394769918137 C-28.670329258720848 16.035831079369963, -28.93694381104015 15.937714459558553, -29.42641408294936 15.757584874882369 M-28.403714706401544 16.13394769918137 C-28.7669662037999 16.00026779027874, -29.130217701198255 15.866587881376114, -29.42641408294936 15.757584874882369 M-29.42641408294936 15.757584874882369 C-29.787796408216252 15.597611639512513, -30.149178733483144 15.437638404142657, -30.422898564998484 15.316470754341127 M-29.42641408294936 15.757584874882369 C-29.789342544616233 15.596927210792748, -30.1522710062831 15.436269546703128, -30.422898564998484 15.316470754341127 M-30.422898564998484 15.316470754341127 C-30.66087636773382 15.192317887086158, -30.89885417046916 15.068165019831191, -31.389073384066936 14.812417970097624 M-30.422898564998484 15.316470754341127 C-30.678375204416238 15.183188755197483, -30.93385184383399 15.04990675605384, -31.389073384066936 14.812417970097624 M-31.389073384066936 14.812417970097624 C-31.61171068693802 14.677453928735154, -31.834347989809103 14.542489887372687, -32.32096832057932 14.247497783161299 M-31.389073384066936 14.812417970097624 C-31.732805165965004 14.60404574391885, -32.07653694786307 14.395673517740077, -32.32096832057932 14.247497783161299 M-32.32096832057932 14.247497783161299 C-32.551776452680684 14.086496021730387, -32.78258458478206 13.925494260299475, -33.21475401835067 13.624031571755264 M-32.32096832057932 14.247497783161299 C-32.56257407161272 14.078964070184789, -32.80417982264613 13.91043035720828, -33.21475401835067 13.624031571755264 M-33.21475401835067 13.624031571755264 C-33.42518134752032 13.456221376448866, -33.635608676689984 13.288411181142468, -34.0667577202324 12.94458129227529 M-33.21475401835067 13.624031571755264 C-33.43375170163051 13.449386747112694, -33.65274938491035 13.274741922470124, -34.0667577202324 12.94458129227529 M-34.0667577202324 12.94458129227529 C-34.31450072431121 12.719587650891608, -34.562243728390015 12.494594009507926, -34.87347836025926 12.211938951661377 M-34.0667577202324 12.94458129227529 C-34.250911254968514 12.77733792446348, -34.435064789704626 12.610094556651669, -34.87347836025926 12.211938951661377 M-34.87347836025926 12.211938951661377 C-35.126850303843256 11.950311617687467, -35.38022224742725 11.688684283713556, -35.631600950280365 11.429115134442386 M-34.87347836025926 12.211938951661377 C-35.108453407425664 11.969307923651915, -35.34342845459207 11.72667689564245, -35.631600950280365 11.429115134442386 M-35.631600950280365 11.429115134442386 C-35.88022442123945 11.137067858377586, -36.12884789219852 10.845020582312786, -36.33801020195651 10.599326631598473 M-35.631600950280365 11.429115134442386 C-35.89314860424232 11.12188637761556, -36.154696258204275 10.814657620788733, -36.33801020195651 10.599326631598473 M-36.33801020195651 10.599326631598473 C-36.56377545324395 10.296821762510813, -36.78954070453138 9.994316893423152, -36.98980332814825 9.72598322207689 M-36.33801020195651 10.599326631598473 C-36.49138137965295 10.393823225886969, -36.64475255734939 10.188319820175465, -36.98980332814825 9.72598322207689 M-36.98980332814825 9.72598322207689 C-37.10887940988022 9.543050384131526, -37.22795549161218 9.360117546186164, -37.58430197109088 8.812673661278936 M-36.98980332814825 9.72598322207689 C-37.11153498054488 9.538970714470032, -37.23326663294151 9.351958206863173, -37.58430197109088 8.812673661278936 M-37.58430197109088 8.812673661278936 C-37.75953837377775 8.501523683698464, -37.93477477646462 8.190373706117994, -38.119063208341004 7.863150934094201 M-37.58430197109088 8.812673661278936 C-37.727313030966165 8.558743043030248, -37.87032409084144 8.30481242478156, -38.119063208341004 7.863150934094201 M-38.119063208341004 7.863150934094201 C-38.21743937433101 7.658870720503212, -38.315815540321005 7.454590506912224, -38.59188959126881 6.881316833080701 M-38.119063208341004 7.863150934094201 C-38.2216189985961 7.650191641287103, -38.3241747888512 7.437232348480005, -38.59188959126881 6.881316833080701 M-38.59188959126881 6.881316833080701 C-38.68218829482822 6.658277289482292, -38.77248699838763 6.4352377458838825, -39.000838174845924 5.87120592516224 M-38.59188959126881 6.881316833080701 C-38.70115134478469 6.611438189464177, -38.81041309830057 6.341559545847653, -39.000838174845924 5.87120592516224 M-39.000838174845924 5.87120592516224 C-39.13119377328564 5.478595632005912, -39.261549371725344 5.085985338849583, -39.344228501623235 4.8369689727275516 M-39.000838174845924 5.87120592516224 C-39.12730977061482 5.490293629218626, -39.25378136638371 5.109381333275011, -39.344228501623235 4.8369689727275516 M-39.344228501623235 4.8369689727275516 C-39.44562323160432 4.450306922555718, -39.547017961585404 4.063644872383886, -39.620649507091 3.782855877257349 M-39.344228501623235 4.8369689727275516 C-39.40558726899329 4.602981399687533, -39.466946036363346 4.368993826647514, -39.620649507091 3.782855877257349 M-39.620649507091 3.782855877257349 C-39.6764292508191 3.496438682266569, -39.7322089945472 3.2100214872757893, -39.82896531804565 2.713198215567455 M-39.620649507091 3.782855877257349 C-39.70338866337186 3.3580077966819903, -39.78612781965273 2.9331597161066316, -39.82896531804565 2.713198215567455 M-39.82896531804565 2.713198215567455 C-39.857565672986844 2.491379510422397, -39.88616602792805 2.269560805277339, -39.968319920136366 1.6323914404306026 M-39.82896531804565 2.713198215567455 C-39.877156175781806 2.3394394393270197, -39.92534703351797 1.9656806630865846, -39.968319920136366 1.6323914404306026 M-39.968319920136366 1.6323914404306026 C-39.987434074118525 1.334673063491066, -40.00654822810069 1.0369546865515296, -40.0381406754117 0.54487681871814 M-39.968319920136366 1.6323914404306026 C-39.99054427458429 1.2862291807282693, -40.0127686290322 0.9400669210259361, -40.0381406754117 0.54487681871814 M-40.0381406754117 0.54487681871814 C-40.0381406754117 0.13726979151284835, -40.0381406754117 -0.2703372356924433, -40.0381406754117 -0.5448768187181317 M-40.0381406754117 0.54487681871814 C-40.0381406754117 0.1315926503482568, -40.0381406754117 -0.2816915180216264, -40.0381406754117 -0.5448768187181317 M-40.0381406754117 -0.5448768187181317 C-40.01389323549698 -0.922550267571012, -39.98964579558226 -1.3002237164238921, -39.968319920136366 -1.6323914404305793 M-40.0381406754117 -0.5448768187181317 C-40.015587928760674 -0.8961540520572717, -39.993035182109644 -1.2474312853964118, -39.968319920136366 -1.6323914404305793 M-39.968319920136366 -1.6323914404305793 C-39.939108584076024 -1.8589487944838654, -39.909897248015675 -2.0855061485371515, -39.828965318045654 -2.713198215567447 M-39.968319920136366 -1.6323914404305793 C-39.92799310757268 -1.9451582352446803, -39.88766629500899 -2.2579250300587814, -39.828965318045654 -2.713198215567447 M-39.828965318045654 -2.713198215567447 C-39.769293637667374 -3.019599682695802, -39.709621957289094 -3.3260011498241573, -39.620649507091 -3.782855877257341 M-39.828965318045654 -2.713198215567447 C-39.77080626293031 -3.0118326716641124, -39.71264720781495 -3.3104671277607776, -39.620649507091 -3.782855877257341 M-39.620649507091 -3.782855877257341 C-39.55242282109736 -4.043033800583853, -39.48419613510372 -4.303211723910364, -39.344228501623235 -4.836968972727544 M-39.620649507091 -3.782855877257341 C-39.51840055084618 -4.172775462396805, -39.41615159460136 -4.562695047536269, -39.344228501623235 -4.836968972727544 M-39.344228501623235 -4.836968972727544 C-39.262563876385094 -5.082929812453793, -39.18089925114695 -5.328890652180044, -39.00083817484593 -5.871205925162218 M-39.344228501623235 -4.836968972727544 C-39.264803323167364 -5.0761849555529865, -39.185378144711486 -5.3154009383784295, -39.00083817484593 -5.871205925162218 M-39.00083817484593 -5.871205925162218 C-38.87041587949129 -6.193351516231713, -38.739993584136656 -6.51549710730121, -38.59188959126881 -6.881316833080692 M-39.00083817484593 -5.871205925162218 C-38.86136806089948 -6.215699803081163, -38.72189794695303 -6.560193681000109, -38.59188959126881 -6.881316833080692 M-38.59188959126881 -6.881316833080692 C-38.404466951034244 -7.270503955729855, -38.21704431079967 -7.6596910783790175, -38.119063208341004 -7.863150934094194 M-38.59188959126881 -6.881316833080692 C-38.44987141087495 -7.176220623370821, -38.307853230481086 -7.47112441366095, -38.119063208341004 -7.863150934094194 M-38.119063208341004 -7.863150934094194 C-37.981292287807705 -8.107777154319548, -37.8435213672744 -8.352403374544902, -37.58430197109088 -8.812673661278929 M-38.119063208341004 -7.863150934094194 C-37.985580229842256 -8.100163479035983, -37.85209725134351 -8.33717602397777, -37.58430197109088 -8.812673661278929 M-37.58430197109088 -8.812673661278929 C-37.402630077401525 -9.09177047571988, -37.22095818371217 -9.370867290160831, -36.98980332814825 -9.725983222076884 M-37.58430197109088 -8.812673661278929 C-37.356038848097995 -9.16334711542694, -37.12777572510512 -9.514020569574955, -36.98980332814825 -9.725983222076884 M-36.98980332814825 -9.725983222076884 C-36.733582064705836 -10.069296372852424, -36.47736080126342 -10.412609523627964, -36.33801020195651 -10.599326631598467 M-36.98980332814825 -9.725983222076884 C-36.749312956364655 -10.048218411143315, -36.50882258458106 -10.370453600209744, -36.33801020195651 -10.599326631598467 M-36.33801020195651 -10.599326631598467 C-36.085616957528345 -10.895802098086246, -35.833223713100175 -11.192277564574027, -35.63160095028037 -11.42911513444238 M-36.33801020195651 -10.599326631598467 C-36.1570003385188 -10.811951116945412, -35.97599047508109 -11.024575602292357, -35.63160095028037 -11.42911513444238 M-35.63160095028037 -11.42911513444238 C-35.439095349394876 -11.627892972360423, -35.24658974850937 -11.826670810278465, -34.87347836025928 -12.21193895166136 M-35.63160095028037 -11.42911513444238 C-35.40489388334956 -11.663208794044795, -35.178186816418744 -11.89730245364721, -34.87347836025928 -12.21193895166136 M-34.87347836025928 -12.21193895166136 C-34.63807609969201 -12.425725056306044, -34.402673839124745 -12.639511160950727, -34.06675772023242 -12.944581292275274 M-34.87347836025928 -12.21193895166136 C-34.65735053259099 -12.40822052632074, -34.4412227049227 -12.60450210098012, -34.06675772023242 -12.944581292275274 M-34.06675772023242 -12.944581292275274 C-33.8391679148648 -13.126078105636871, -33.61157810949719 -13.30757491899847, -33.214754018350675 -13.624031571755259 M-34.06675772023242 -12.944581292275274 C-33.83985892540011 -13.125527043123528, -33.6129601305678 -13.306472793971782, -33.214754018350675 -13.624031571755259 M-33.214754018350675 -13.624031571755259 C-32.948525018940856 -13.809741396875914, -32.68229601953104 -13.99545122199657, -32.32096832057934 -14.247497783161284 M-33.214754018350675 -13.624031571755259 C-32.99466928115576 -13.777553157107711, -32.77458454396085 -13.931074742460165, -32.32096832057934 -14.247497783161284 M-32.32096832057934 -14.247497783161284 C-32.080387763639216 -14.393339130586668, -31.8398072066991 -14.539180478012053, -31.389073384066947 -14.812417970097618 M-32.32096832057934 -14.247497783161284 C-32.112370529433456 -14.37395099001061, -31.903772738287564 -14.500404196859936, -31.389073384066947 -14.812417970097618 M-31.389073384066947 -14.812417970097618 C-31.08698071293649 -14.970019523126785, -30.784888041806035 -15.127621076155954, -30.42289856499849 -15.316470754341124 M-31.389073384066947 -14.812417970097618 C-31.00737496360495 -15.011549791563134, -30.625676543142955 -15.210681613028651, -30.42289856499849 -15.316470754341124 M-30.42289856499849 -15.316470754341124 C-30.073187674559943 -15.471277391733285, -29.7234767841214 -15.626084029125446, -29.426414082949368 -15.757584874882365 M-30.42289856499849 -15.316470754341124 C-30.072889761898693 -15.471409268831156, -29.722880958798893 -15.626347783321188, -29.426414082949368 -15.757584874882365 M-29.426414082949368 -15.757584874882365 C-29.09728108348041 -15.878708861159037, -28.768148084011457 -15.999832847435709, -28.403714706401566 -16.133947699181363 M-29.426414082949368 -15.757584874882365 C-29.022680481239195 -15.906162572384213, -28.618946879529023 -16.05474026988606, -28.403714706401566 -16.133947699181363 M-28.403714706401566 -16.133947699181363 C-28.123932975474773 -16.21698544831616, -27.84415124454798 -16.300023197450958, -27.359002926461642 -16.444012671663494 M-28.403714706401566 -16.133947699181363 C-28.033164066369483 -16.243925184082883, -27.6626134263374 -16.353902668984404, -27.359002926461642 -16.444012671663494 M-27.359002926461642 -16.444012671663494 C-27.083406978111228 -16.506915648442842, -26.807811029760817 -16.569818625222187, -26.296571687923336 -16.68650566884811 M-27.359002926461642 -16.444012671663494 C-27.03779805919346 -16.51732558655981, -26.716593191925273 -16.59063850145613, -26.296571687923336 -16.68650566884811 M-26.296571687923336 -16.68650566884811 C-26.0496490096235 -16.72642621256166, -25.80272633132366 -16.766346756275205, -25.220786748636613 -16.86043023499518 M-26.296571687923336 -16.68650566884811 C-25.90183793515642 -16.750323160789492, -25.507104182389504 -16.814140652730874, -25.220786748636613 -16.86043023499518 M-25.220786748636613 -16.86043023499518 C-24.88681903784527 -16.892647698400285, -24.552851327053933 -16.92486516180539, -24.13606873967212 -16.965071676755716 M-25.220786748636613 -16.86043023499518 C-24.948246462216435 -16.886721868648486, -24.67570617579626 -16.91301350230179, -24.13606873967212 -16.965071676755716 M-24.13606873967212 -16.965071676755716 C-23.857976301461004 -16.973989559975053, -23.57988386324989 -16.98290744319439, -23.046875000000004 -17 M-24.13606873967212 -16.965071676755716 C-23.86676673692808 -16.97370766781917, -23.597464734184044 -16.98234365888262, -23.046875000000004 -17 M-23.046875000000004 -17 C-23.046875000000004 -17, -23.046875 -17, -23.046875 -17 M-23.046875000000004 -17 C-23.046875000000004 -17, -23.046875 -17, -23.046875 -17" stroke="#7dd3fc" stroke-width="2" fill="none" stroke-dasharray="0 0" style="fill:#1f2937 !important;stroke:#7dd3fc !important;stroke-width:2px !important"/></g><g class="label" style="color:#f8fafc !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#f8fafc !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Request</tspan></tspan></text></g></g></g><g class="node default contract" id="my-svg-flowchart-PROFILE-1" data-look="classic" transform="translate(245.23252868652344, 288.1499996185303)"><rect class="basic label-container" style="fill:#172554 !important;stroke:#60a5fa !important;stroke-width:2px !important" x="-82.15625" y="-24.5" width="164.3125" height="49"/><g class="label" style="color:#dbeafe !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#dbeafe !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Project</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> profile</tspan></tspan></text></g></g></g><g class="node default contract" id="my-svg-flowchart-CONTRACT-3" data-look="classic" transform="translate(467.32627868652344, 288.1499996185303)"><rect class="basic label-container" style="fill:#172554 !important;stroke:#60a5fa !important;stroke-width:2px !important" x="-89.9375" y="-24.5" width="179.875" height="49"/><g class="label" style="color:#dbeafe !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#dbeafe !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Current</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> contract</tspan></tspan></text></g></g></g><g class="node default contract" id="my-svg-flowchart-ROUTE-5" data-look="classic" transform="translate(707.1231536865234, 288.1499996185303)"><rect class="basic label-container" style="fill:#172554 !important;stroke:#60a5fa !important;stroke-width:2px !important" x="-99.859375" y="-24.5" width="199.71875" height="49"/><g class="label" style="color:#dbeafe !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#dbeafe !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Deterministic</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> route</tspan></tspan></text></g></g></g><g class="node default contract" id="my-svg-flowchart-GATES-7" data-look="classic" transform="translate(990.1231536865234, 288.1499996185303)"><rect class="basic label-container" style="fill:#172554 !important;stroke:#60a5fa !important;stroke-width:2px !important" x="-83.140625" y="-24.5" width="166.28125" height="49"/><g class="label" style="color:#dbeafe !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#dbeafe !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Required</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> gates</tspan></tspan></text></g></g></g><g class="node default contract" id="my-svg-flowchart-PREFLIGHT-9" data-look="classic" transform="translate(1219.7559661865234, 288.1499996185303)"><rect class="basic label-container" style="fill:#172554 !important;stroke:#60a5fa !important;stroke-width:2px !important" x="-96.4921875" y="-24.5" width="192.984375" height="49"/><g class="label" style="color:#dbeafe !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#dbeafe !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">PREFLIGHT_READY</tspan></tspan></text></g></g></g><g class="node default contract" id="my-svg-flowchart-STATE-11" data-look="classic" transform="translate(1474.9434661865234, 198.89999961853027)"><rect class="basic label-container" style="fill:#172554 !important;stroke:#60a5fa !important;stroke-width:2px !important" x="-108.6953125" y="-24.5" width="217.390625" height="49"/><g class="label" style="color:#dbeafe !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#dbeafe !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Resumable</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> work</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> state</tspan></tspan></text></g></g></g><g class="node default execution" id="my-svg-flowchart-EXECUTE-13" data-look="classic" transform="translate(1770.5528411865234, 198.89999961853027)"><rect class="basic label-container" style="fill:#312e81 !important;stroke:#a78bfa !important;stroke-width:2px !important" x="-86.9140625" y="-24.5" width="173.828125" height="49"/><g class="label" style="color:#ede9fe !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#ede9fe !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Implementation</tspan></tspan></text></g></g></g><g class="node default execution" id="my-svg-flowchart-CHECKS-15" data-look="classic" transform="translate(2035.0762786865234, 188.89999961853027)"><rect class="basic label-container" style="fill:#312e81 !important;stroke:#a78bfa !important;stroke-width:2px !important" x="-121.4296875" y="-24.5" width="242.859375" height="49"/><g class="label" style="color:#ede9fe !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#ede9fe !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">run-check</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> /</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> record-check</tspan></tspan></text></g></g></g><g class="node default evidence" id="my-svg-flowchart-EVIDENCE-17" data-look="classic" transform="translate(2315.1153411865234, 159.14999961853027)"><rect class="basic label-container" style="fill:#134e4a !important;stroke:#5eead4 !important;stroke-width:2px !important" x="-102.4296875" y="-24.5" width="204.859375" height="49"/><g class="label" style="color:#ccfbf1 !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#ccfbf1 !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Structured</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> evidence</tspan></tspan></text></g></g></g><g class="node default evidence" id="my-svg-flowchart-REVIEW-19" data-look="classic" transform="translate(2729.4356536865234, 99.64999961853027)"><rect class="basic label-container" style="fill:#134e4a !important;stroke:#5eead4 !important;stroke-width:2px !important" x="-55.2109375" y="-24.5" width="110.421875" height="49"/><g class="label" style="color:#ccfbf1 !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#ccfbf1 !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Review</tspan></tspan></text></g></g></g><g class="node default terminal" id="my-svg-flowchart-COMPLETE-21" data-look="classic" transform="translate(3074.4044036865234, 83.89999961853027)"><rect class="basic label-container" style="fill:#14532d !important;stroke:#86efac !important;stroke-width:2px !important" x="-91.1171875" y="-24.5" width="182.234375" height="49"/><g class="label" style="color:#dcfce7 !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#dcfce7 !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">complete</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> /</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> audit</tspan></tspan></text></g></g></g><g class="node default terminal" id="my-svg-flowchart-VALID-23" data-look="classic" transform="translate(3522.966148376465, 63.75)"><g class="basic label-container outer-path"><path d="M-14.5390625 -17 C-6.89634868887515 -17, 0.7463651222496992 -17, 14.5390625 -17 C14.5390625 -17, 14.539062499999998 -17, 14.539062499999998 -17 C14.876437635940807 -16.989181036051242, 15.213812771881615 -16.978362072102485, 15.628256239672119 -16.965071676755716 C16.051403502657084 -16.9242511692046, 16.474550765642046 -16.883430661653478, 16.7129742486366 -16.860430234995185 C17.109034752950976 -16.79639824415272, 17.505095257265353 -16.732366253310257, 17.788759187923326 -16.686505668848113 C18.08855420727364 -16.618079412026734, 18.38834922662395 -16.549653155205355, 18.85119042646162 -16.4440126716635 C19.238052842611836 -16.32919393723238, 19.624915258762048 -16.214375202801257, 19.89590220640155 -16.133947699181366 C20.233262363673337 -16.00979604278224, 20.57062252094512 -15.885644386383117, 20.91860158294936 -15.757584874882369 C21.303068409172383 -15.587392815716624, 21.68753523539541 -15.417200756550878, 21.915086064998487 -15.316470754341125 C22.193538569291 -15.171202261209062, 22.471991073583514 -15.025933768077, 22.88126088406694 -14.812417970097622 C23.213135077503015 -14.611233883727431, 23.54500927093909 -14.410049797357239, 23.813155820579325 -14.247497783161291 C24.001494030951264 -14.116121200635549, 24.189832241323206 -13.984744618109808, 24.70694151835067 -13.624031571755262 C24.987070603028933 -13.400636081272365, 25.26719968770719 -13.177240590789467, 25.5589452202324 -12.944581292275288 C25.772842203379305 -12.750325711585317, 25.98673918652621 -12.556070130895346, 26.36566586025927 -12.21193895166137 C26.662773351955543 -11.90515107350625, 26.95988084365182 -11.59836319535113, 27.12378845028036 -11.42911513444239 C27.29966601363049 -11.222519340814468, 27.475543576980616 -11.015923547186548, 27.830197701956507 -10.59932663159847 C28.03124789925975 -10.329937683261896, 28.232298096562992 -10.060548734925321, 28.48199082814825 -9.725983222076888 C28.60393504553387 -9.538644157565246, 28.725879262919495 -9.351305093053604, 29.076489471090884 -8.812673661278927 C29.21057418678949 -8.574592671006293, 29.344658902488092 -8.336511680733658, 29.611250708341004 -7.863150934094199 C29.77084423659953 -7.531751557910897, 29.930437764858056 -7.2003521817275935, 30.08407709126881 -6.881316833080699 C30.180044048550883 -6.644276593199085, 30.276011005832952 -6.407236353317471, 30.493025674845924 -5.871205925162238 C30.570909895489862 -5.636631061748058, 30.6487941161338 -5.402056198333877, 30.83641600162323 -4.836968972727556 C30.906682646560842 -4.569011801823882, 30.976949291498457 -4.301054630920207, 31.112837007091002 -3.7828558772573464 C31.18488268324068 -3.4129165570877915, 31.256928359390358 -3.042977236918236, 31.32115281804565 -2.713198215567453 C31.36514655743984 -2.371991460372585, 31.409140296834032 -2.030784705177717, 31.46050742013637 -1.632391440430593 C31.4797394452349 -1.3328371257097225, 31.49897147033343 -1.0332828109888519, 31.530328175411693 -0.5448768187181379 C31.530328175411693 -0.13917665395334505, 31.530328175411693 0.26652351081144776, 31.530328175411693 0.5448768187181336 C31.514971326505876 0.7840721362515672, 31.49961447760006 1.0232674537850008, 31.46050742013637 1.6323914404305815 C31.410582606118524 2.0195984391833637, 31.36065779210068 2.4068054379361463, 31.321152818045654 2.7131982155674415 C31.274731785583775 2.9515604061704974, 31.2283107531219 3.1899225967735534, 31.112837007091002 3.782855877257343 C31.023435839328563 4.12378127664673, 30.934034671566124 4.4647066760361165, 30.83641600162323 4.836968972727545 C30.739439408976597 5.129047018657477, 30.64246281632996 5.42112506458741, 30.493025674845928 5.871205925162227 C30.38363111964121 6.141412591517728, 30.27423656443649 6.4116192578732285, 30.08407709126881 6.881316833080694 C29.910385583380396 7.241990965613901, 29.736694075491982 7.602665098147108, 29.611250708341004 7.863150934094196 C29.4644667417766 8.123780730217652, 29.317682775212194 8.384410526341108, 29.076489471090888 8.812673661278923 C28.878889294682494 9.116240595319113, 28.6812891182741 9.419807529359304, 28.481990828148255 9.725983222076879 C28.255806211639513 10.02905000235613, 28.029621595130767 10.332116782635378, 27.830197701956507 10.599326631598467 C27.59432893580476 10.876391505633313, 27.358460169653014 11.153456379668157, 27.12378845028037 11.42911513444238 C26.86543761865076 11.695883579097698, 26.60708678702115 11.962652023753018, 26.36566586025927 12.211938951661365 C26.086886809148897 12.465118709790314, 25.80810775803852 12.718298467919263, 25.558945220232417 12.944581292275275 C25.219136418753394 13.215569768762819, 24.87932761727437 13.486558245250365, 24.706941518350675 13.62403157175526 C24.37268217865638 13.857196417272398, 24.038422838962088 14.090361262789536, 23.813155820579336 14.247497783161286 C23.54659170724447 14.409090515169492, 23.2800275939096 14.570683247177698, 22.881260884066943 14.81241797009762 C22.519671569727723 15.00105888377938, 22.158082255388504 15.189699797461142, 21.91508606499849 15.316470754341124 C21.692458048861145 15.415021573059668, 21.469830032723802 15.513572391778213, 20.918601582949368 15.757584874882367 C20.64692240054816 15.857565325380843, 20.375243218146952 15.95754577587932, 19.895902206401562 16.133947699181363 C19.663483042119022 16.202928487147332, 19.431063877836483 16.271909275113302, 18.851190426461642 16.444012671663497 C18.588507510467675 16.503968333072894, 18.32582459447371 16.563923994482295, 17.788759187923333 16.68650566884811 C17.44487805712479 16.74210170323762, 17.100996926326246 16.79769773762713, 16.712974248636613 16.86043023499518 C16.481370464594367 16.882772773497436, 16.249766680552124 16.905115311999687, 15.628256239672119 16.965071676755716 C15.289868102322952 16.975923125687952, 14.951479964973785 16.98677457462019, 14.539062500000004 17 C14.539062500000002 17, 14.539062500000002 17, 14.5390625 17 C3.346847930394871 17, -7.845366639210258 17, -14.539062499999996 17 C-14.91892594968301 16.987818518528016, -15.298789399366022 16.975637037056032, -15.628256239672112 16.965071676755716 C-15.90997881199518 16.937894239024676, -16.191701384318247 16.91071680129363, -16.712974248636606 16.86043023499518 C-17.0619072348463 16.804017455800523, -17.410840221055995 16.74760467660586, -17.78875918792333 16.68650566884811 C-18.017103610262183 16.63438754453588, -18.245448032601036 16.582269420223646, -18.85119042646162 16.4440126716635 C-19.090546863899558 16.3729729374395, -19.3299033013375 16.301933203215498, -19.895902206401544 16.13394769918137 C-20.128150253327934 16.048478271035048, -20.360398300254325 15.963008842888723, -20.91860158294936 15.757584874882369 C-21.286241445387002 15.594841613430265, -21.653881307824644 15.432098351978164, -21.915086064998484 15.316470754341127 C-22.11213185458375 15.213672092128345, -22.30917764416902 15.110873429915562, -22.881260884066936 14.812417970097624 C-23.19706568344861 14.620975244837455, -23.51287048283028 14.429532519577284, -23.81315582057932 14.247497783161299 C-24.09803289612734 14.04877986738884, -24.382909971675364 13.850061951616379, -24.706941518350668 13.624031571755264 C-24.99560023140913 13.3938339296221, -25.28425894446759 13.163636287488936, -25.5589452202324 12.94458129227529 C-25.756274485756673 12.765372074372406, -25.953603751280944 12.586162856469524, -26.365665860259263 12.211938951661377 C-26.66052795741349 11.907469627721243, -26.955390054567715 11.603000303781108, -27.123788450280365 11.429115134442386 C-27.32794269451784 11.189303942455465, -27.532096938755313 10.949492750468544, -27.830197701956507 10.599326631598473 C-27.99026923022127 10.384845366539913, -28.15034075848603 10.170364101481354, -28.48199082814825 9.72598322207689 C-28.617538018535985 9.517746338124294, -28.75308520892372 9.309509454171698, -29.076489471090877 8.812673661278936 C-29.19237072815223 8.606914755116806, -29.308251985213584 8.401155848954678, -29.611250708341 7.863150934094201 C-29.72506787130616 7.626807159899886, -29.83888503427132 7.390463385705569, -30.08407709126881 6.881316833080701 C-30.197562194292587 6.601006434526765, -30.311047297316367 6.320696035972827, -30.493025674845924 5.87120592516224 C-30.611034544142925 5.515782012999616, -30.729043413439925 5.160358100836992, -30.83641600162323 4.8369689727275516 C-30.91551489538328 4.53533060914308, -30.994613789143326 4.233692245558609, -31.112837007091 3.782855877257349 C-31.180564106624402 3.435091535280875, -31.24829120615781 3.087327193304401, -31.32115281804565 2.713198215567455 C-31.362865115397984 2.389685874327539, -31.404577412750317 2.0661735330876225, -31.460507420136366 1.6323914404306026 C-31.487007001540636 1.2196390699820154, -31.513506582944903 0.8068866995334284, -31.530328175411693 0.54487681871814 C-31.530328175411693 0.1222065867714231, -31.530328175411693 -0.3004636451752938, -31.530328175411693 -0.5448768187181317 C-31.513439382965302 -0.8079333934585893, -31.496550590518908 -1.070989968199047, -31.46050742013637 -1.6323914404305793 C-31.411401607014934 -2.0132464299608395, -31.362295793893498 -2.3941014194910997, -31.321152818045654 -2.713198215567447 C-31.274898064559302 -2.950706598774251, -31.22864331107295 -3.1882149819810546, -31.112837007091002 -3.782855877257341 C-31.019150768716475 -4.1401221080519806, -30.925464530341944 -4.497388338846621, -30.836416001623235 -4.836968972727544 C-30.719955855567786 -5.187728377242152, -30.603495709512337 -5.53848778175676, -30.49302567484593 -5.871205925162218 C-30.348026281360728 -6.229357230443234, -30.20302688787552 -6.58750853572425, -30.08407709126881 -6.881316833080692 C-29.91574639317687 -7.230859129368563, -29.747415695084932 -7.580401425656434, -29.611250708341004 -7.863150934094194 C-29.45989584223147 -8.131896825213795, -29.30854097612194 -8.400642716333396, -29.076489471090884 -8.812673661278929 C-28.890140591316086 -9.098955582293732, -28.70379171154129 -9.385237503308533, -28.48199082814825 -9.725983222076884 C-28.351409942584148 -9.900949712569377, -28.22082905702005 -10.075916203061869, -27.83019770195651 -10.599326631598467 C-27.572557683731116 -10.901965257138357, -27.31491766550572 -11.204603882678247, -27.123788450280372 -11.42911513444238 C-26.82780382919204 -11.734743556505409, -26.531819208103702 -12.040371978568436, -26.365665860259277 -12.21193895166136 C-26.115739377096027 -12.438915570977846, -25.865812893932773 -12.66589219029433, -25.558945220232417 -12.944581292275274 C-25.336806704364335 -13.1217308473259, -25.114668188496253 -13.298880402376525, -24.706941518350675 -13.624031571755259 C-24.501477947109866 -13.767354064678202, -24.296014375869056 -13.910676557601143, -23.81315582057934 -14.247497783161284 C-23.479645989668274 -14.449673402580887, -23.146136158757212 -14.651849022000487, -22.881260884066947 -14.812417970097618 C-22.667127032479677 -14.924131463311419, -22.452993180892406 -15.03584495652522, -21.91508606499849 -15.316470754341124 C-21.632781208879628 -15.441438739868927, -21.35047635276076 -15.566406725396728, -20.918601582949368 -15.757584874882365 C-20.681695394487864 -15.844768542173, -20.444789206026357 -15.931952209463633, -19.895902206401566 -16.133947699181363 C-19.573301762591882 -16.229693817539793, -19.2507013187822 -16.32543993589822, -18.851190426461642 -16.444012671663494 C-18.435991449201033 -16.538779128796694, -18.020792471940425 -16.63354558592989, -17.788759187923336 -16.68650566884811 C-17.474399286418947 -16.737328939825893, -17.16003938491456 -16.788152210803677, -16.712974248636613 -16.86043023499518 C-16.443302458932223 -16.886445148220186, -16.173630669227833 -16.91246006144519, -15.62825623967212 -16.965071676755716 C-15.30904046160694 -16.975308305442447, -14.989824683541759 -16.98554493412918, -14.539062500000005 -17 C-14.539062500000004 -17, -14.539062500000002 -17, -14.5390625 -17" stroke="none" stroke-width="0" fill="#14532d" style="fill:#14532d !important;stroke:#86efac !important;stroke-width:2px !important"/><path d="M-14.5390625 -17 C-8.723306776753452 -17, -2.9075510535069036 -17, 14.5390625 -17 M-14.5390625 -17 C-8.10256451982277 -17, -1.6660665396455432 -17, 14.5390625 -17 M14.5390625 -17 C14.5390625 -17, 14.5390625 -17, 14.539062499999998 -17 M14.5390625 -17 C14.5390625 -17, 14.539062499999998 -17, 14.539062499999998 -17 M14.539062499999998 -17 C14.77397161121962 -16.992466922026033, 15.008880722439242 -16.984933844052065, 15.628256239672119 -16.965071676755716 M14.539062499999998 -17 C14.9485041320321 -16.98687000379052, 15.357945764064201 -16.97374000758104, 15.628256239672119 -16.965071676755716 M15.628256239672119 -16.965071676755716 C15.93936347169245 -16.935059536243905, 16.250470703712782 -16.90504739573209, 16.7129742486366 -16.860430234995185 M15.628256239672119 -16.965071676755716 C16.0228400616134 -16.927006650009517, 16.417423883554687 -16.888941623263317, 16.7129742486366 -16.860430234995185 M16.7129742486366 -16.860430234995185 C16.949630244600982 -16.82216952886232, 17.186286240565366 -16.78390882272946, 17.788759187923326 -16.686505668848113 M16.7129742486366 -16.860430234995185 C17.0629871802631 -16.80384285860064, 17.413000111889602 -16.74725548220609, 17.788759187923326 -16.686505668848113 M17.788759187923326 -16.686505668848113 C18.145121975277185 -16.60516818811911, 18.501484762631048 -16.523830707390104, 18.85119042646162 -16.4440126716635 M17.788759187923326 -16.686505668848113 C18.047185553324514 -16.62752153733493, 18.305611918725702 -16.56853740582174, 18.85119042646162 -16.4440126716635 M18.85119042646162 -16.4440126716635 C19.07984977270355 -16.376147777956298, 19.30850911894548 -16.308282884249095, 19.89590220640155 -16.133947699181366 M18.85119042646162 -16.4440126716635 C19.169581723599695 -16.349515805942943, 19.487973020737765 -16.255018940222385, 19.89590220640155 -16.133947699181366 M19.89590220640155 -16.133947699181366 C20.259974649008587 -15.99996567485321, 20.624047091615623 -15.865983650525054, 20.91860158294936 -15.757584874882369 M19.89590220640155 -16.133947699181366 C20.220796286931726 -16.014383674258305, 20.5456903674619 -15.894819649335242, 20.91860158294936 -15.757584874882369 M20.91860158294936 -15.757584874882369 C21.184372518473655 -15.639935965540454, 21.450143453997946 -15.52228705619854, 21.915086064998487 -15.316470754341125 M20.91860158294936 -15.757584874882369 C21.143592522102296 -15.657988060238443, 21.36858346125523 -15.558391245594516, 21.915086064998487 -15.316470754341125 M21.915086064998487 -15.316470754341125 C22.24320600290588 -15.14529079290569, 22.57132594081327 -14.974110831470256, 22.88126088406694 -14.812417970097622 M21.915086064998487 -15.316470754341125 C22.22862910664267 -15.152895550349257, 22.54217214828686 -14.989320346357388, 22.88126088406694 -14.812417970097622 M22.88126088406694 -14.812417970097622 C23.22261246085404 -14.605488638244752, 23.563964037641142 -14.398559306391883, 23.813155820579325 -14.247497783161291 M22.88126088406694 -14.812417970097622 C23.232234660609247 -14.599655604206824, 23.583208437151555 -14.386893238316027, 23.813155820579325 -14.247497783161291 M23.813155820579325 -14.247497783161291 C24.14903603747521 -14.013202283874968, 24.484916254371097 -13.778906784588644, 24.70694151835067 -13.624031571755262 M23.813155820579325 -14.247497783161291 C24.016707602493447 -14.10550887171262, 24.22025938440757 -13.96351996026395, 24.70694151835067 -13.624031571755262 M24.70694151835067 -13.624031571755262 C25.021235153586268 -13.373390761359762, 25.33552878882186 -13.122749950964261, 25.5589452202324 -12.944581292275288 M24.70694151835067 -13.624031571755262 C24.98133139716784 -13.405212945219903, 25.255721275985007 -13.186394318684544, 25.5589452202324 -12.944581292275288 M25.5589452202324 -12.944581292275288 C25.843329533447765 -12.686310983409697, 26.127713846663127 -12.428040674544107, 26.36566586025927 -12.21193895166137 M25.5589452202324 -12.944581292275288 C25.8154001915197 -12.711675672778872, 26.071855162807 -12.478770053282457, 26.36566586025927 -12.21193895166137 M26.36566586025927 -12.21193895166137 C26.57351202585406 -11.997320721197198, 26.78135819144885 -11.782702490733026, 27.12378845028036 -11.42911513444239 M26.36566586025927 -12.21193895166137 C26.519870844925016 -12.052709644529292, 26.674075829590766 -11.893480337397214, 27.12378845028036 -11.42911513444239 M27.12378845028036 -11.42911513444239 C27.304756628314077 -11.216539615142946, 27.485724806347793 -11.003964095843502, 27.830197701956507 -10.59932663159847 M27.12378845028036 -11.42911513444239 C27.344262413011926 -11.170133872494022, 27.56473637574349 -10.911152610545653, 27.830197701956507 -10.59932663159847 M27.830197701956507 -10.59932663159847 C28.045441093633187 -10.3109200958281, 28.260684485309863 -10.022513560057732, 28.48199082814825 -9.725983222076888 M27.830197701956507 -10.59932663159847 C27.985698073551774 -10.390970300036097, 28.14119844514704 -10.182613968473722, 28.48199082814825 -9.725983222076888 M28.48199082814825 -9.725983222076888 C28.643467435596328 -9.477911790496208, 28.804944043044408 -9.22984035891553, 29.076489471090884 -8.812673661278927 M28.48199082814825 -9.725983222076888 C28.633016668057223 -9.493966975860294, 28.7840425079662 -9.261950729643702, 29.076489471090884 -8.812673661278927 M29.076489471090884 -8.812673661278927 C29.254921202357526 -8.49585005424297, 29.433352933624167 -8.179026447207013, 29.611250708341004 -7.863150934094199 M29.076489471090884 -8.812673661278927 C29.19521650773006 -8.601861785309948, 29.31394354436923 -8.391049909340971, 29.611250708341004 -7.863150934094199 M29.611250708341004 -7.863150934094199 C29.74463910166212 -7.58616708130849, 29.87802749498324 -7.309183228522782, 30.08407709126881 -6.881316833080699 M29.611250708341004 -7.863150934094199 C29.712406679122587 -7.653098396375192, 29.813562649904174 -7.443045858656184, 30.08407709126881 -6.881316833080699 M30.08407709126881 -6.881316833080699 C30.218807089069777 -6.548531133685012, 30.35353708687074 -6.215745434289325, 30.493025674845924 -5.871205925162238 M30.08407709126881 -6.881316833080699 C30.175992785231745 -6.6542832919232, 30.26790847919468 -6.427249750765701, 30.493025674845924 -5.871205925162238 M30.493025674845924 -5.871205925162238 C30.619862275932544 -5.489194291357331, 30.746698877019167 -5.107182657552422, 30.83641600162323 -4.836968972727556 M30.493025674845924 -5.871205925162238 C30.626469456682173 -5.469294515650737, 30.759913238518426 -5.067383106139236, 30.83641600162323 -4.836968972727556 M30.83641600162323 -4.836968972727556 C30.922391405404465 -4.509107496134001, 31.008366809185702 -4.181246019540445, 31.112837007091002 -3.7828558772573464 M30.83641600162323 -4.836968972727556 C30.917789613916597 -4.5266561215063, 30.99916322620996 -4.216343270285044, 31.112837007091002 -3.7828558772573464 M31.112837007091002 -3.7828558772573464 C31.178152492586054 -3.447474663672995, 31.243467978081107 -3.1120934500886435, 31.32115281804565 -2.713198215567453 M31.112837007091002 -3.7828558772573464 C31.15479317909425 -3.567419801460768, 31.196749351097495 -3.35198372566419, 31.32115281804565 -2.713198215567453 M31.32115281804565 -2.713198215567453 C31.365783132811522 -2.367054307495849, 31.410413447577394 -2.020910399424245, 31.46050742013637 -1.632391440430593 M31.32115281804565 -2.713198215567453 C31.3706278716701 -2.3294794696106282, 31.420102925294547 -1.945760723653804, 31.46050742013637 -1.632391440430593 M31.46050742013637 -1.632391440430593 C31.480980439691617 -1.3135076353336566, 31.501453459246864 -0.9946238302367201, 31.530328175411693 -0.5448768187181379 M31.46050742013637 -1.632391440430593 C31.474629735000402 -1.4124249870958892, 31.488752049864438 -1.1924585337611853, 31.530328175411693 -0.5448768187181379 M31.530328175411693 -0.5448768187181379 C31.530328175411693 -0.16622728809054615, 31.530328175411693 0.21242224253704556, 31.530328175411693 0.5448768187181336 M31.530328175411693 -0.5448768187181379 C31.530328175411693 -0.2098755081204729, 31.530328175411693 0.12512580247719207, 31.530328175411693 0.5448768187181336 M31.530328175411693 0.5448768187181336 C31.50341663271738 0.9640458187883865, 31.47650509002306 1.3832148188586393, 31.46050742013637 1.6323914404305815 M31.530328175411693 0.5448768187181336 C31.504657030810893 0.9447256172505457, 31.478985886210094 1.3445744157829578, 31.46050742013637 1.6323914404305815 M31.46050742013637 1.6323914404305815 C31.42826454086185 1.8824608450070976, 31.396021661587326 2.132530249583614, 31.321152818045654 2.7131982155674415 M31.46050742013637 1.6323914404305815 C31.414688460238743 1.9877542454195587, 31.368869500341116 2.3431170504085355, 31.321152818045654 2.7131982155674415 M31.321152818045654 2.7131982155674415 C31.265813793105735 2.9973524127268667, 31.210474768165813 3.281506609886292, 31.112837007091002 3.782855877257343 M31.321152818045654 2.7131982155674415 C31.279348248880268 2.9278558428328747, 31.237543679714882 3.1425134700983075, 31.112837007091002 3.782855877257343 M31.112837007091002 3.782855877257343 C31.013553371079574 4.161467411168957, 30.914269735068146 4.5400789450805705, 30.83641600162323 4.836968972727545 M31.112837007091002 3.782855877257343 C31.009727938179662 4.176055444769423, 30.906618869268325 4.569255012281504, 30.83641600162323 4.836968972727545 M30.83641600162323 4.836968972727545 C30.730734135763115 5.1552659145795525, 30.625052269902998 5.473562856431561, 30.493025674845928 5.871205925162227 M30.83641600162323 4.836968972727545 C30.7571273004905 5.075773907600398, 30.677838599357766 5.314578842473252, 30.493025674845928 5.871205925162227 M30.493025674845928 5.871205925162227 C30.343149642113563 6.241402623667131, 30.1932736093812 6.611599322172036, 30.08407709126881 6.881316833080694 M30.493025674845928 5.871205925162227 C30.382418431511454 6.144407954643948, 30.27181118817698 6.41760998412567, 30.08407709126881 6.881316833080694 M30.08407709126881 6.881316833080694 C29.949743347638023 7.160263726011691, 29.815409604007233 7.439210618942688, 29.611250708341004 7.863150934094196 M30.08407709126881 6.881316833080694 C29.935367830128666 7.1901147957066724, 29.786658568988518 7.49891275833265, 29.611250708341004 7.863150934094196 M29.611250708341004 7.863150934094196 C29.484310354777087 8.088546385951583, 29.357370001213166 8.313941837808969, 29.076489471090888 8.812673661278923 M29.611250708341004 7.863150934094196 C29.48926614848475 8.079746872395095, 29.367281588628497 8.296342810695993, 29.076489471090888 8.812673661278923 M29.076489471090888 8.812673661278923 C28.918668258581906 9.055129424622168, 28.760847046072925 9.297585187965414, 28.481990828148255 9.725983222076879 M29.076489471090888 8.812673661278923 C28.877776400251484 9.117950300019142, 28.67906332941208 9.42322693875936, 28.481990828148255 9.725983222076879 M28.481990828148255 9.725983222076879 C28.348809927867105 9.904433495424003, 28.215629027585955 10.08288376877113, 27.830197701956507 10.599326631598467 M28.481990828148255 9.725983222076879 C28.267248457257818 10.013718435637617, 28.05250608636738 10.301453649198358, 27.830197701956507 10.599326631598467 M27.830197701956507 10.599326631598467 C27.60339907584614 10.865737203035115, 27.37660044973578 11.132147774471765, 27.12378845028037 11.42911513444238 M27.830197701956507 10.599326631598467 C27.618679737004125 10.847787668944697, 27.407161772051747 11.096248706290927, 27.12378845028037 11.42911513444238 M27.12378845028037 11.42911513444238 C26.935561071642056 11.623475356641626, 26.747333693003743 11.81783557884087, 26.36566586025927 12.211938951661365 M27.12378845028037 11.42911513444238 C26.94592425404221 11.612774519980366, 26.768060057804053 11.79643390551835, 26.36566586025927 12.211938951661365 M26.36566586025927 12.211938951661365 C26.189376205940107 12.372040551345377, 26.013086551620944 12.532142151029388, 25.558945220232417 12.944581292275275 M26.36566586025927 12.211938951661365 C26.167295791940624 12.392093399123965, 25.96892572362198 12.572247846586565, 25.558945220232417 12.944581292275275 M25.558945220232417 12.944581292275275 C25.219336142161552 13.215410494659675, 24.879727064090687 13.486239697044077, 24.706941518350675 13.62403157175526 M25.558945220232417 12.944581292275275 C25.320215480228804 13.134961907062973, 25.08148574022519 13.325342521850668, 24.706941518350675 13.62403157175526 M24.706941518350675 13.62403157175526 C24.417389005435016 13.826010870238962, 24.127836492519357 14.027990168722663, 23.813155820579336 14.247497783161286 M24.706941518350675 13.62403157175526 C24.406549369473467 13.83357213104546, 24.106157220596263 14.043112690335658, 23.813155820579336 14.247497783161286 M23.813155820579336 14.247497783161286 C23.595934583910665 14.379178573363513, 23.378713347241998 14.510859363565741, 22.881260884066943 14.81241797009762 M23.813155820579336 14.247497783161286 C23.459565195434198 14.46184649805343, 23.105974570289057 14.676195212945574, 22.881260884066943 14.81241797009762 M22.881260884066943 14.81241797009762 C22.589580770709755 14.964587298406036, 22.297900657352567 15.11675662671445, 21.91508606499849 15.316470754341124 M22.881260884066943 14.81241797009762 C22.53440926623952 14.993370236949122, 22.187557648412096 15.174322503800624, 21.91508606499849 15.316470754341124 M21.91508606499849 15.316470754341124 C21.538401532707447 15.483217822836728, 21.161717000416406 15.649964891332335, 20.918601582949368 15.757584874882367 M21.91508606499849 15.316470754341124 C21.594134911629407 15.458546309259923, 21.273183758260323 15.600621864178722, 20.918601582949368 15.757584874882367 M20.918601582949368 15.757584874882367 C20.69843547604839 15.838608037415108, 20.478269369147416 15.91963119994785, 19.895902206401562 16.133947699181363 M20.918601582949368 15.757584874882367 C20.683213405469893 15.844209900099274, 20.447825227990418 15.93083492531618, 19.895902206401562 16.133947699181363 M19.895902206401562 16.133947699181363 C19.678566002685127 16.198451943623386, 19.461229798968695 16.262956188065413, 18.851190426461642 16.444012671663497 M19.895902206401562 16.133947699181363 C19.609143679756944 16.219056124663265, 19.322385153112325 16.304164550145163, 18.851190426461642 16.444012671663497 M18.851190426461642 16.444012671663497 C18.61158402336043 16.498701269593443, 18.371977620259216 16.553389867523393, 17.788759187923333 16.68650566884811 M18.851190426461642 16.444012671663497 C18.541267839052725 16.51475047980569, 18.23134525164381 16.58548828794789, 17.788759187923333 16.68650566884811 M17.788759187923333 16.68650566884811 C17.416236515921607 16.74673224550088, 17.043713843919882 16.80695882215365, 16.712974248636613 16.86043023499518 M17.788759187923333 16.68650566884811 C17.48804032287923 16.73512356283881, 17.18732145783513 16.783741456829514, 16.712974248636613 16.86043023499518 M16.712974248636613 16.86043023499518 C16.395724780563224 16.891034909631912, 16.07847531248984 16.921639584268647, 15.628256239672119 16.965071676755716 M16.712974248636613 16.86043023499518 C16.482674740873975 16.882646951533363, 16.252375233111337 16.904863668071542, 15.628256239672119 16.965071676755716 M15.628256239672119 16.965071676755716 C15.231455485653083 16.977796304611292, 14.834654731634044 16.990520932466872, 14.539062500000004 17 M15.628256239672119 16.965071676755716 C15.239754748265481 16.977530163412847, 14.851253256858845 16.989988650069982, 14.539062500000004 17 M14.539062500000004 17 C14.539062500000002 17, 14.539062500000002 17, 14.5390625 17 M14.539062500000004 17 C14.539062500000002 17, 14.539062500000002 17, 14.5390625 17 M14.5390625 17 C6.335812520592301 17, -1.8674374588153988 17, -14.539062499999996 17 M14.5390625 17 C8.66630336567032 17, 2.793544231340638 17, -14.539062499999996 17 M-14.539062499999996 17 C-14.787398836599182 16.99203633704262, -15.035735173198367 16.98407267408524, -15.628256239672112 16.965071676755716 M-14.539062499999996 17 C-14.90742923156647 16.98818719590101, -15.275795963132941 16.97637439180202, -15.628256239672112 16.965071676755716 M-15.628256239672112 16.965071676755716 C-15.919095149167521 16.937014796941657, -16.20993405866293 16.9089579171276, -16.712974248636606 16.86043023499518 M-15.628256239672112 16.965071676755716 C-15.940601065415976 16.934940147065817, -16.25294589115984 16.90480861737592, -16.712974248636606 16.86043023499518 M-16.712974248636606 16.86043023499518 C-17.044798356109833 16.806783486633297, -17.376622463583058 16.75313673827141, -17.78875918792333 16.68650566884811 M-16.712974248636606 16.86043023499518 C-16.94281973117182 16.823270599857228, -17.172665213707035 16.78611096471927, -17.78875918792333 16.68650566884811 M-17.78875918792333 16.68650566884811 C-18.149153757145637 16.60424796021747, -18.50954832636794 16.52199025158683, -18.85119042646162 16.4440126716635 M-17.78875918792333 16.68650566884811 C-18.17525992687568 16.598289397335265, -18.56176066582803 16.510073125822423, -18.85119042646162 16.4440126716635 M-18.85119042646162 16.4440126716635 C-19.13255771765719 16.360504336563707, -19.413925008852758 16.276996001463914, -19.895902206401544 16.13394769918137 M-18.85119042646162 16.4440126716635 C-19.152582647311018 16.35456104255545, -19.45397486816042 16.2651094134474, -19.895902206401544 16.13394769918137 M-19.895902206401544 16.13394769918137 C-20.162516758720848 16.035831079369963, -20.42913131104015 15.937714459558553, -20.91860158294936 15.757584874882369 M-19.895902206401544 16.13394769918137 C-20.2591537037999 16.00026779027874, -20.622405201198255 15.866587881376114, -20.91860158294936 15.757584874882369 M-20.91860158294936 15.757584874882369 C-21.279983908216252 15.597611639512513, -21.641366233483144 15.437638404142657, -21.915086064998484 15.316470754341127 M-20.91860158294936 15.757584874882369 C-21.281530044616233 15.596927210792748, -21.6444585062831 15.436269546703128, -21.915086064998484 15.316470754341127 M-21.915086064998484 15.316470754341127 C-22.15306386773382 15.192317887086158, -22.39104167046916 15.068165019831191, -22.881260884066936 14.812417970097624 M-21.915086064998484 15.316470754341127 C-22.170562704416238 15.183188755197483, -22.42603934383399 15.04990675605384, -22.881260884066936 14.812417970097624 M-22.881260884066936 14.812417970097624 C-23.10389818693802 14.677453928735154, -23.326535489809103 14.542489887372687, -23.81315582057932 14.247497783161299 M-22.881260884066936 14.812417970097624 C-23.224992665965004 14.60404574391885, -23.56872444786307 14.395673517740077, -23.81315582057932 14.247497783161299 M-23.81315582057932 14.247497783161299 C-24.043963952680688 14.086496021730387, -24.274772084782057 13.925494260299475, -24.706941518350668 13.624031571755264 M-23.81315582057932 14.247497783161299 C-24.054761571612723 14.078964070184789, -24.296367322646123 13.91043035720828, -24.706941518350668 13.624031571755264 M-24.706941518350668 13.624031571755264 C-24.917368847520322 13.456221376448866, -25.12779617668998 13.288411181142468, -25.5589452202324 12.94458129227529 M-24.706941518350668 13.624031571755264 C-24.92593920163051 13.449386747112694, -25.14493688491035 13.274741922470124, -25.5589452202324 12.94458129227529 M-25.5589452202324 12.94458129227529 C-25.806688224311205 12.719587650891608, -26.054431228390012 12.494594009507926, -26.365665860259263 12.211938951661377 M-25.5589452202324 12.94458129227529 C-25.743098754968514 12.77733792446348, -25.927252289704626 12.610094556651669, -26.365665860259263 12.211938951661377 M-26.365665860259263 12.211938951661377 C-26.619037803843256 11.950311617687467, -26.872409747427252 11.688684283713556, -27.123788450280365 11.429115134442386 M-26.365665860259263 12.211938951661377 C-26.600640907425667 11.969307923651915, -26.835615954592072 11.72667689564245, -27.123788450280365 11.429115134442386 M-27.123788450280365 11.429115134442386 C-27.372411921239443 11.137067858377586, -27.62103539219852 10.845020582312786, -27.830197701956507 10.599326631598473 M-27.123788450280365 11.429115134442386 C-27.38533610424232 11.12188637761556, -27.64688375820428 10.814657620788733, -27.830197701956507 10.599326631598473 M-27.830197701956507 10.599326631598473 C-28.055962953243945 10.296821762510813, -28.281728204531387 9.994316893423152, -28.48199082814825 9.72598322207689 M-27.830197701956507 10.599326631598473 C-27.98356887965295 10.393823225886969, -28.13694005734939 10.188319820175465, -28.48199082814825 9.72598322207689 M-28.48199082814825 9.72598322207689 C-28.601066909880213 9.543050384131526, -28.720142991612178 9.360117546186164, -29.076489471090877 8.812673661278936 M-28.48199082814825 9.72598322207689 C-28.603722480544878 9.538970714470032, -28.725454132941508 9.351958206863173, -29.076489471090877 8.812673661278936 M-29.076489471090877 8.812673661278936 C-29.251725873777747 8.501523683698464, -29.42696227646462 8.190373706117994, -29.611250708341 7.863150934094201 M-29.076489471090877 8.812673661278936 C-29.219500530966158 8.558743043030248, -29.362511590841443 8.30481242478156, -29.611250708341 7.863150934094201 M-29.611250708341 7.863150934094201 C-29.709626874331 7.658870720503212, -29.808003040321 7.454590506912224, -30.08407709126881 6.881316833080701 M-29.611250708341 7.863150934094201 C-29.7138064985961 7.650191641287103, -29.8163622888512 7.437232348480005, -30.08407709126881 6.881316833080701 M-30.08407709126881 6.881316833080701 C-30.17437579482822 6.658277289482292, -30.26467449838763 6.4352377458838825, -30.493025674845924 5.87120592516224 M-30.08407709126881 6.881316833080701 C-30.19333884478469 6.611438189464177, -30.30260059830057 6.341559545847653, -30.493025674845924 5.87120592516224 M-30.493025674845924 5.87120592516224 C-30.623381273285634 5.478595632005912, -30.753736871725344 5.085985338849583, -30.83641600162323 4.8369689727275516 M-30.493025674845924 5.87120592516224 C-30.61949727061482 5.490293629218626, -30.74596886638371 5.109381333275011, -30.83641600162323 4.8369689727275516 M-30.83641600162323 4.8369689727275516 C-30.937810731604316 4.450306922555718, -31.0392054615854 4.063644872383886, -31.112837007091 3.782855877257349 M-30.83641600162323 4.8369689727275516 C-30.897774768993287 4.602981399687533, -30.959133536363343 4.368993826647514, -31.112837007091 3.782855877257349 M-31.112837007091 3.782855877257349 C-31.168616750819098 3.496438682266569, -31.2243964945472 3.2100214872757893, -31.32115281804565 2.713198215567455 M-31.112837007091 3.782855877257349 C-31.19557616337186 3.3580077966819903, -31.278315319652727 2.9331597161066316, -31.32115281804565 2.713198215567455 M-31.32115281804565 2.713198215567455 C-31.34975317298685 2.491379510422397, -31.37835352792805 2.269560805277339, -31.460507420136366 1.6323914404306026 M-31.32115281804565 2.713198215567455 C-31.36934367578181 2.3394394393270197, -31.417534533517973 1.9656806630865846, -31.460507420136366 1.6323914404306026 M-31.460507420136366 1.6323914404306026 C-31.479621574118525 1.334673063491066, -31.498735728100687 1.0369546865515296, -31.530328175411693 0.54487681871814 M-31.460507420136366 1.6323914404306026 C-31.482731774584284 1.2862291807282693, -31.5049561290322 0.9400669210259361, -31.530328175411693 0.54487681871814 M-31.530328175411693 0.54487681871814 C-31.530328175411693 0.13726979151284835, -31.530328175411693 -0.2703372356924433, -31.530328175411693 -0.5448768187181317 M-31.530328175411693 0.54487681871814 C-31.530328175411693 0.1315926503482568, -31.530328175411693 -0.2816915180216264, -31.530328175411693 -0.5448768187181317 M-31.530328175411693 -0.5448768187181317 C-31.50608073549698 -0.922550267571012, -31.481833295582266 -1.3002237164238921, -31.46050742013637 -1.6323914404305793 M-31.530328175411693 -0.5448768187181317 C-31.50777542876067 -0.8961540520572717, -31.485222682109647 -1.2474312853964118, -31.46050742013637 -1.6323914404305793 M-31.46050742013637 -1.6323914404305793 C-31.431296084076024 -1.8589487944838654, -31.402084748015678 -2.0855061485371515, -31.321152818045654 -2.713198215567447 M-31.46050742013637 -1.6323914404305793 C-31.420180607572682 -1.9451582352446803, -31.379853795008994 -2.2579250300587814, -31.321152818045654 -2.713198215567447 M-31.321152818045654 -2.713198215567447 C-31.261481137667374 -3.019599682695802, -31.201809457289094 -3.3260011498241573, -31.112837007091002 -3.782855877257341 M-31.321152818045654 -2.713198215567447 C-31.262993762930304 -3.0118326716641124, -31.204834707814957 -3.3104671277607776, -31.112837007091002 -3.782855877257341 M-31.112837007091002 -3.782855877257341 C-31.044610321097363 -4.043033800583853, -30.976383635103723 -4.303211723910364, -30.836416001623235 -4.836968972727544 M-31.112837007091002 -3.782855877257341 C-31.01058805084618 -4.172775462396805, -30.90833909460136 -4.562695047536269, -30.836416001623235 -4.836968972727544 M-30.836416001623235 -4.836968972727544 C-30.75475137638509 -5.082929812453793, -30.673086751146947 -5.328890652180044, -30.49302567484593 -5.871205925162218 M-30.836416001623235 -4.836968972727544 C-30.75699082316736 -5.0761849555529865, -30.67756564471149 -5.3154009383784295, -30.49302567484593 -5.871205925162218 M-30.49302567484593 -5.871205925162218 C-30.362603379491294 -6.193351516231713, -30.232181084136656 -6.51549710730121, -30.08407709126881 -6.881316833080692 M-30.49302567484593 -5.871205925162218 C-30.35355556089948 -6.215699803081163, -30.21408544695303 -6.560193681000109, -30.08407709126881 -6.881316833080692 M-30.08407709126881 -6.881316833080692 C-29.89665445103424 -7.270503955729855, -29.709231810799675 -7.6596910783790175, -29.611250708341004 -7.863150934094194 M-30.08407709126881 -6.881316833080692 C-29.942058910874948 -7.176220623370821, -29.800040730481083 -7.47112441366095, -29.611250708341004 -7.863150934094194 M-29.611250708341004 -7.863150934094194 C-29.473479787807705 -8.107777154319548, -29.335708867274402 -8.352403374544902, -29.076489471090884 -8.812673661278929 M-29.611250708341004 -7.863150934094194 C-29.47776772984226 -8.100163479035983, -29.344284751343512 -8.33717602397777, -29.076489471090884 -8.812673661278929 M-29.076489471090884 -8.812673661278929 C-28.89481757740153 -9.09177047571988, -28.713145683712174 -9.370867290160831, -28.48199082814825 -9.725983222076884 M-29.076489471090884 -8.812673661278929 C-28.848226348098002 -9.16334711542694, -28.619963225105117 -9.514020569574955, -28.48199082814825 -9.725983222076884 M-28.48199082814825 -9.725983222076884 C-28.225769564705836 -10.069296372852424, -27.969548301263423 -10.412609523627964, -27.83019770195651 -10.599326631598467 M-28.48199082814825 -9.725983222076884 C-28.24150045636466 -10.048218411143315, -28.00101008458107 -10.370453600209744, -27.83019770195651 -10.599326631598467 M-27.83019770195651 -10.599326631598467 C-27.577804457528345 -10.895802098086246, -27.325411213100175 -11.192277564574027, -27.123788450280372 -11.42911513444238 M-27.83019770195651 -10.599326631598467 C-27.6491878385188 -10.811951116945412, -27.46817797508109 -11.024575602292357, -27.123788450280372 -11.42911513444238 M-27.123788450280372 -11.42911513444238 C-26.931282849394872 -11.627892972360423, -26.738777248509376 -11.826670810278465, -26.365665860259277 -12.21193895166136 M-27.123788450280372 -11.42911513444238 C-26.89708138334956 -11.663208794044795, -26.67037431641874 -11.89730245364721, -26.365665860259277 -12.21193895166136 M-26.365665860259277 -12.21193895166136 C-26.13026359969201 -12.425725056306044, -25.894861339124745 -12.639511160950727, -25.558945220232417 -12.944581292275274 M-26.365665860259277 -12.21193895166136 C-26.14953803259099 -12.40822052632074, -25.9334102049227 -12.60450210098012, -25.558945220232417 -12.944581292275274 M-25.558945220232417 -12.944581292275274 C-25.331355414864802 -13.126078105636871, -25.103765609497188 -13.30757491899847, -24.706941518350675 -13.624031571755259 M-25.558945220232417 -12.944581292275274 C-25.332046425400108 -13.125527043123528, -25.1051476305678 -13.306472793971782, -24.706941518350675 -13.624031571755259 M-24.706941518350675 -13.624031571755259 C-24.440712518940856 -13.809741396875914, -24.174483519531034 -13.99545122199657, -23.81315582057934 -14.247497783161284 M-24.706941518350675 -13.624031571755259 C-24.486856781155762 -13.777553157107711, -24.266772043960845 -13.931074742460165, -23.81315582057934 -14.247497783161284 M-23.81315582057934 -14.247497783161284 C-23.57257526363922 -14.393339130586668, -23.3319947066991 -14.539180478012053, -22.881260884066947 -14.812417970097618 M-23.81315582057934 -14.247497783161284 C-23.604558029433452 -14.37395099001061, -23.395960238287564 -14.500404196859936, -22.881260884066947 -14.812417970097618 M-22.881260884066947 -14.812417970097618 C-22.57916821293649 -14.970019523126785, -22.277075541806035 -15.127621076155954, -21.91508606499849 -15.316470754341124 M-22.881260884066947 -14.812417970097618 C-22.49956246360495 -15.011549791563134, -22.117864043142955 -15.210681613028651, -21.91508606499849 -15.316470754341124 M-21.91508606499849 -15.316470754341124 C-21.565375174559943 -15.471277391733285, -21.2156642841214 -15.626084029125446, -20.918601582949368 -15.757584874882365 M-21.91508606499849 -15.316470754341124 C-21.565077261898693 -15.471409268831156, -21.215068458798893 -15.626347783321188, -20.918601582949368 -15.757584874882365 M-20.918601582949368 -15.757584874882365 C-20.58946858348041 -15.878708861159037, -20.260335584011457 -15.999832847435709, -19.895902206401566 -16.133947699181363 M-20.918601582949368 -15.757584874882365 C-20.514867981239195 -15.906162572384213, -20.111134379529023 -16.05474026988606, -19.895902206401566 -16.133947699181363 M-19.895902206401566 -16.133947699181363 C-19.616120475474773 -16.21698544831616, -19.33633874454798 -16.300023197450958, -18.851190426461642 -16.444012671663494 M-19.895902206401566 -16.133947699181363 C-19.525351566369483 -16.243925184082883, -19.1548009263374 -16.353902668984404, -18.851190426461642 -16.444012671663494 M-18.851190426461642 -16.444012671663494 C-18.575594478111228 -16.506915648442842, -18.299998529760817 -16.569818625222187, -17.788759187923336 -16.68650566884811 M-18.851190426461642 -16.444012671663494 C-18.52998555919346 -16.51732558655981, -18.208780691925273 -16.59063850145613, -17.788759187923336 -16.68650566884811 M-17.788759187923336 -16.68650566884811 C-17.5418365096235 -16.72642621256166, -17.29491383132366 -16.766346756275205, -16.712974248636613 -16.86043023499518 M-17.788759187923336 -16.68650566884811 C-17.39402543515642 -16.750323160789492, -16.999291682389504 -16.814140652730874, -16.712974248636613 -16.86043023499518 M-16.712974248636613 -16.86043023499518 C-16.37900653784527 -16.892647698400285, -16.045038827053933 -16.92486516180539, -15.62825623967212 -16.965071676755716 M-16.712974248636613 -16.86043023499518 C-16.44043396221644 -16.886721868648486, -16.16789367579626 -16.91301350230179, -15.62825623967212 -16.965071676755716 M-15.62825623967212 -16.965071676755716 C-15.350163801461006 -16.973989559975053, -15.072071363249892 -16.98290744319439, -14.539062500000005 -17 M-15.62825623967212 -16.965071676755716 C-15.358954236928083 -16.97370766781917, -15.089652234184044 -16.98234365888262, -14.539062500000005 -17 M-14.539062500000005 -17 C-14.539062500000004 -17, -14.539062500000002 -17, -14.5390625 -17 M-14.539062500000005 -17 C-14.539062500000004 -17, -14.539062500000002 -17, -14.5390625 -17" stroke="#86efac" stroke-width="2" fill="none" stroke-dasharray="0 0" style="fill:#14532d !important;stroke:#86efac !important;stroke-width:2px !important"/></g><g class="label" style="color:#dcfce7 !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#dcfce7 !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">VALID</tspan></tspan></text></g></g></g><g class="node default recovery" id="my-svg-flowchart-DIAGNOSE-25" data-look="classic" transform="translate(2729.4356536865234, 229.19999885559082)"><rect class="basic label-container" style="fill:#451a03 !important;stroke:#fb923c !important;stroke-width:2px !important" x="-61.671875" y="-24.5" width="123.34375" height="49"/><g class="label" style="color:#ffedd5 !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#ffedd5 !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Diagnose</tspan></tspan></text></g></g></g><g class="node default recovery" id="my-svg-flowchart-CORRECT-27" data-look="classic" transform="translate(3074.4044036865234, 258.9499988555908)"><rect class="basic label-container" style="fill:#451a03 !important;stroke:#fb923c !important;stroke-width:2px !important" x="-56.796875" y="-24.5" width="113.59375" height="49"/><g class="label" style="color:#ffedd5 !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#ffedd5 !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Correct</tspan></tspan></text></g></g></g><g class="node default recovery" id="my-svg-flowchart-REVALIDATE-31" data-look="classic" transform="translate(3074.4044036865234, 457.4499988555908)"><rect class="basic label-container" style="fill:#451a03 !important;stroke:#fb923c !important;stroke-width:2px !important" x="-127.90625" y="-33.29999923706055" width="255.8125" height="66.5999984741211"/><g class="label" style="color:#ffedd5 !important" transform="translate(0, -18.299999237060547)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#ffedd5 !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Revalidate</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> contract,</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> route,</tspan></tspan><tspan class="text-outer-tspan row" x="0" y="1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">and</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> artifacts</tspan></tspan></text></g></g></g><g class="node default boundary" id="my-svg-flowchart-DELEGATE-35" data-look="classic" transform="translate(2035.0762786865234, 397.9499988555908)"><rect class="basic label-container" style="fill:#3f1d3f !important;stroke:#f0abfc !important;stroke-width:2px !important" x="-127.609375" y="-24.5" width="255.21875" height="49"/><g class="label" style="color:#fae8ff !important" transform="translate(0, -9.5)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#fae8ff !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Optional</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> delegation</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> bundle</tspan></tspan></text></g></g></g><g class="node default boundary" id="my-svg-flowchart-BLOCKED-39" data-look="classic" transform="translate(3522.966148376465, 230.49999809265137)"><g class="basic label-container outer-path"><path d="M-68.94687557220459 -25.799999237060547 C-32.70373828810566 -25.799999237060547, 3.539398995993267 -25.799999237060547, 68.94687557220459 -25.799999237060547 C68.94687557220459 -25.799999237060547, 68.94687557220459 -25.799999237060547, 68.94687557220459 -25.799999237060547 C69.45889193984436 -25.783579868729742, 69.97090830748412 -25.767160500398933, 70.59988719882529 -25.746990371586765 C71.2420753789533 -25.685039250194098, 71.88426355908133 -25.623088128801434, 72.24610624610231 -25.58818159996402 C72.84718628781647 -25.491003640265017, 73.44826632953064 -25.393825680566014, 73.87876804685753 -25.32422550149928 C74.33375106277003 -25.220378597158902, 74.78873407868254 -25.116531692818523, 75.49116364354678 -24.956206728419545 C76.0782842342246 -24.78195241896524, 76.66540482490242 -24.607698109510935, 77.07666735680552 -24.48563754880318 C77.58866099211296 -24.297219158192753, 78.10065462742041 -24.10880076758233, 78.62876401178644 -23.914451632345997 C79.21224894256463 -23.656160161956, 79.7957338733428 -23.397868691565996, 80.14107571041056 -23.24499610449772 C80.56366832207553 -23.02452980967559, 80.9862609337405 -22.804063514853464, 81.6073880395184 -22.480021901620034 C82.11105591819198 -22.174695473687112, 82.61472379686555 -21.869369045754194, 83.02167560722664 -21.62267246679901 C83.30750652980932 -21.423289188626555, 83.59333745239198 -21.223905910454096, 84.37812680255584 -20.67647083276321 C84.80326387143687 -20.33743533370312, 85.22840094031791 -19.99839983464303, 85.6711676765865 -19.64530514498651 C85.9957877943512 -19.350493743010272, 86.32040791211588 -19.055682341034036, 86.89548484701088 -18.533412684464313 C87.34638914460434 -18.067816977267753, 87.7972934421978 -17.602221270071194, 88.04604733196044 -17.345362455817106 C88.31296739079863 -17.03182296652415, 88.57988744963683 -16.71828347723119, 89.11812722338968 -16.086036412270357 C89.42325045497994 -15.67719907923764, 89.72837368657021 -15.268361746204926, 90.10731911506427 -14.76060939466161 C90.2923873924474 -14.476294822810317, 90.4774556698305 -14.191980250959023, 91.00955820532036 -13.374527866909407 C91.21305147371598 -13.013204962945137, 91.4165447421116 -12.651882058980867, 91.8211370002064 -11.93348753532484 C92.06334364181286 -11.430540261637102, 92.30555028341932 -10.927592987949364, 92.53872054837109 -10.443409943732584 C92.68436451452759 -10.08366653149151, 92.83000848068409 -9.723923119250433, 93.15936014509381 -8.910418140577123 C93.2775608999875 -8.554416299570098, 93.39576165488118 -8.198414458563073, 93.6805054491449 -7.340811518003323 C93.78714541301439 -6.9341471177162814, 93.89378537688387 -6.52748271742924, 94.10001496268467 -5.741039926302914 C94.20935486796085 -5.1796026217068425, 94.31869477323706 -4.618165317110771, 94.41616483113748 -4.117677170096137 C94.48293179836134 -3.599845756936872, 94.54969876558519 -3.0820143437776073, 94.62765592687991 -2.4773939951584394 C94.6568433523428 -2.0227762839080476, 94.6860307778057 -1.5681585726576563, 94.73361918763487 -0.8269306768952902 C94.73361918763487 -0.21122103328311415, 94.73361918763487 0.4044886103290619, 94.73361918763487 0.826930676895284 C94.71031291174936 1.1899447362994628, 94.68700663586384 1.5529587957036415, 94.62765592687991 2.4773939951584216 C94.55188768196398 3.0650375405940857, 94.47611943704806 3.65268108602975, 94.41616483113748 4.117677170096119 C94.34571408983747 4.4794268369021735, 94.27526334853748 4.841176503708228, 94.10001496268467 5.741039926302909 C93.96433554738682 6.258444340664129, 93.828656132089 6.775848755025349, 93.6805054491449 7.340811518003306 C93.5333292128922 7.784082892247682, 93.38615297663951 8.227354266492057, 93.15936014509383 8.910418140577105 C92.99333782504557 9.320496480919495, 92.82731550499732 9.730574821261882, 92.53872054837109 10.443409943732577 C92.27511815007668 10.990785963978707, 92.01151575178227 11.538161984224837, 91.8211370002064 11.933487535324835 C91.59837075165497 12.329031567156624, 91.37560450310355 12.724575598988414, 91.00955820532037 13.374527866909402 C90.70967088763922 13.835235317887854, 90.40978356995807 14.295942768866308, 90.10731911506429 14.760609394661596 C89.76405070721955 15.220557788778246, 89.42078229937482 15.680506182894895, 89.11812722338968 16.086036412270353 C88.76016169475665 16.50652309101831, 88.40219616612363 16.92700976976627, 88.04604733196045 17.345362455817092 C87.65396196378764 17.750222789262917, 87.26187659561482 18.155083122708746, 86.89548484701088 18.533412684464306 C86.47239665254287 18.917650188379955, 86.04930845807486 19.301887692295608, 85.67116767658653 19.64530514498649 C85.15545786370976 20.056569997141246, 84.63974805083296 20.467834849296, 84.37812680255584 20.676470832763208 C83.87083911378565 21.030332764319176, 83.36355142501547 21.38419469587515, 83.02167560722665 21.622672466799003 C82.61712537659918 21.867913194006427, 82.21257514597168 22.113153921213854, 81.60738803951841 22.48002190162003 C81.05862309633717 22.766312220976964, 80.50985815315593 23.052602540333893, 80.14107571041058 23.244996104497716 C79.8032049664993 23.394561460247726, 79.46533422258801 23.544126815997735, 78.62876401178644 23.914451632345994 C78.2164509118643 24.066186664497856, 77.80413781194217 24.217921696649718, 77.07666735680553 24.485637548803172 C76.7239371061486 24.590326035679283, 76.37120685549166 24.69501452255539, 75.49116364354681 24.95620672841954 C75.09250370047428 25.047198258926596, 74.69384375740174 25.138189789433653, 73.87876804685754 25.324225501499278 C73.3568778755492 25.408600657077688, 72.83498770424085 25.492975812656095, 72.24610624610233 25.588181599964017 C71.89461345483231 25.622089686805907, 71.5431206635623 25.655997773647794, 70.59988719882529 25.746990371586765 C70.086333452623 25.763459040655746, 69.57277970642072 25.779927709724728, 68.94687557220459 25.799999237060547 C68.94687557220459 25.799999237060547, 68.94687557220459 25.799999237060547, 68.94687557220459 25.799999237060547 C15.871360881489124 25.799999237060547, -37.20415380922634 25.799999237060547, -68.94687557220459 25.799999237060547 C-69.52337420232276 25.78151204807917, -70.09987283244092 25.76302485909779, -70.59988719882527 25.746990371586765 C-71.02744261947221 25.705744614367582, -71.45499804011914 25.664498857148395, -72.24610624610231 25.588181599964017 C-72.77566335069028 25.502566914070915, -73.30522045527825 25.416952228177816, -73.87876804685753 25.324225501499278 C-74.22531427757103 25.24512858576442, -74.57186050828453 25.16603167002956, -75.49116364354678 24.956206728419545 C-75.85442222609292 24.848393487903063, -76.21768080863906 24.74058024738658, -77.0766673568055 24.485637548803183 C-77.42913791171783 24.355925126393352, -77.78160846663017 24.22621270398352, -78.62876401178644 23.914451632345997 C-79.18671155122199 23.667464807563587, -79.74465909065752 23.420477982781176, -80.14107571041056 23.244996104497723 C-80.44012166458502 23.08898402175298, -80.7391676187595 22.932971939008237, -81.6073880395184 22.480021901620038 C-82.0866682502894 22.189479421287498, -82.56594846106042 21.898936940954957, -83.02167560722663 21.622672466799017 C-83.4540184502734 21.321088815309622, -83.88636129332016 21.019505163820227, -84.37812680255584 20.67647083276321 C-84.81620883647814 20.327112068562695, -85.25429087040045 19.97775330436218, -85.6711676765865 19.645305144986512 C-85.97064384717332 19.37332881056483, -86.27012001776015 19.10135247614315, -86.89548484701086 18.533412684464324 C-87.34298142828246 18.071335724148806, -87.79047800955405 17.60925876383329, -88.04604733196044 17.3453624558171 C-88.35588141111158 16.98141371638762, -88.66571549026274 16.617464976958143, -89.11812722338968 16.08603641227036 C-89.36105930027826 15.760529560807148, -89.60399137716685 15.435022709343936, -90.10731911506427 14.760609394661614 C-90.31303190380483 14.444579309537799, -90.51874469254537 14.128549224413984, -91.00955820532036 13.374527866909418 C-91.18542504907168 13.062258477379928, -91.361291892823 12.749989087850436, -91.82113700020639 11.933487535324842 C-91.99387127771614 11.57480111215441, -92.16660555522587 11.216114688983975, -92.53872054837109 10.443409943732586 C-92.71095087610233 10.017997704389545, -92.88318120383357 9.592585465046504, -93.15936014509381 8.910418140577127 C-93.3384559532014 8.371010101598964, -93.517551761309 7.831602062620801, -93.6805054491449 7.340811518003316 C-93.80054964906617 6.883030956218166, -93.92059384898744 6.425250394433014, -94.10001496268467 5.741039926302918 C-94.20280079305468 5.213256411145865, -94.30558662342469 4.685472895988813, -94.41616483113748 4.117677170096139 C-94.47946937465902 3.6266996314391093, -94.54277391818056 3.1357220927820793, -94.62765592687991 2.477393995158454 C-94.66787293746889 1.8509815926485433, -94.70808994805786 1.2245691901386326, -94.73361918763487 0.8269306768952934 C-94.73361918763487 0.1854664614980288, -94.73361918763487 -0.4559977538992358, -94.73361918763487 -0.8269306768952809 C-94.70798796220947 -1.2261577020486671, -94.68235673678407 -1.6253847272020536, -94.62765592687991 -2.4773939951584185 C-94.55313063622883 -3.055397432764973, -94.47860534557776 -3.633400870371527, -94.41616483113748 -4.117677170096128 C-94.34596644262817 -4.478131058656777, -94.27576805411886 -4.838584947217425, -94.10001496268467 -5.741039926302906 C-93.95783232276784 -6.283243954651683, -93.81564968285103 -6.825447983000458, -93.6805054491449 -7.340811518003303 C-93.50376005624028 -7.873140480877932, -93.32701466333567 -8.405469443752562, -93.15936014509383 -8.910418140577093 C-92.93930224854721 -9.453965399577237, -92.7192443520006 -9.997512658577381, -92.53872054837109 -10.443409943732574 C-92.28325396705662 -10.973891765941248, -92.02778738574216 -11.504373588149921, -91.8211370002064 -11.933487535324831 C-91.59143373960927 -12.34134893449241, -91.36173047901212 -12.749210333659992, -91.00955820532036 -13.374527866909409 C-90.7267463843782 -13.809002769483886, -90.44393456343603 -14.243477672058363, -90.10731911506429 -14.760609394661605 C-89.90914342400967 -15.026146766497925, -89.71096773295505 -15.291684138334247, -89.11812722338968 -16.086036412270353 C-88.72712061905725 -16.545335018625305, -88.3361140147248 -17.00463362498026, -88.04604733196045 -17.345362455817092 C-87.59684715559217 -17.809198517937688, -87.14764697922391 -18.273034580058287, -86.89548484701089 -18.5334126844643 C-86.51618466613247 -18.877883073005233, -86.13688448525406 -19.22235346154617, -85.67116767658653 -19.645305144986487 C-85.33403982129722 -19.91415563823071, -84.99691196600791 -20.183006131474933, -84.37812680255585 -20.676470832763204 C-84.06630562718782 -20.893983786178822, -83.75448445181978 -21.111496739594443, -83.02167560722665 -21.622672466799 C-82.51552540822327 -21.929503691903584, -82.00937520921988 -22.236334917008172, -81.60738803951841 -22.480021901620027 C-81.28240843907251 -22.649563551013287, -80.9574288386266 -22.81910520040655, -80.14107571041058 -23.244996104497716 C-79.71263658849968 -23.434653394572674, -79.2841974665888 -23.624310684647632, -78.62876401178646 -23.91445163234599 C-78.26922404228283 -24.04676566467437, -77.90968407277919 -24.179079697002756, -77.07666735680553 -24.485637548803172 C-76.58707375656051 -24.63094635942664, -76.0974801563155 -24.776255170050113, -75.49116364354681 -24.956206728419538 C-74.86103815551434 -25.100028759109858, -74.23091266748187 -25.24385078980018, -73.87876804685754 -25.324225501499278 C-73.40168068103544 -25.401357286937614, -72.92459331521336 -25.47848907237595, -72.24610624610233 -25.588181599964017 C-71.83683965971233 -25.627663055337976, -71.42757307332232 -25.667144510711935, -70.59988719882529 -25.746990371586765 C-70.11543032644062 -25.762525960546043, -69.63097345405595 -25.778061549505324, -68.9468755722046 -25.799999237060547 C-68.9468755722046 -25.799999237060547, -68.94687557220459 -25.799999237060547, -68.94687557220459 -25.799999237060547" stroke="none" stroke-width="0" fill="#3f1d3f" style="fill:#3f1d3f !important;stroke:#f0abfc !important;stroke-width:2px !important"/><path d="M-68.94687557220459 -25.799999237060547 C-41.36750542994016 -25.799999237060547, -13.788135287675729 -25.799999237060547, 68.94687557220459 -25.799999237060547 M-68.94687557220459 -25.799999237060547 C-38.4238328822082 -25.799999237060547, -7.900790192211822 -25.799999237060547, 68.94687557220459 -25.799999237060547 M68.94687557220459 -25.799999237060547 C68.94687557220459 -25.799999237060547, 68.94687557220459 -25.799999237060547, 68.94687557220459 -25.799999237060547 M68.94687557220459 -25.799999237060547 C68.94687557220459 -25.799999237060547, 68.94687557220459 -25.799999237060547, 68.94687557220459 -25.799999237060547 M68.94687557220459 -25.799999237060547 C69.30338468339546 -25.788566683767545, 69.65989379458634 -25.77713413047454, 70.59988719882529 -25.746990371586765 M68.94687557220459 -25.799999237060547 C69.56826344244277 -25.780072537520123, 70.18965131268095 -25.760145837979703, 70.59988719882529 -25.746990371586765 M70.59988719882529 -25.746990371586765 C71.07203816051755 -25.70144253615692, 71.54418912220983 -25.655894700727078, 72.24610624610231 -25.58818159996402 M70.59988719882529 -25.746990371586765 C71.19872615794537 -25.689221097409668, 71.79756511706547 -25.631451823232574, 72.24610624610231 -25.58818159996402 M72.24610624610231 -25.58818159996402 C72.60526651170977 -25.530115353550066, 72.96442677731724 -25.472049107136108, 73.87876804685753 -25.32422550149928 M72.24610624610231 -25.58818159996402 C72.77730232662732 -25.502301937151866, 73.30849840715231 -25.416422274339713, 73.87876804685753 -25.32422550149928 M73.87876804685753 -25.32422550149928 C74.41960096696614 -25.20078391674912, 74.96043388707476 -25.07734233199896, 75.49116364354678 -24.956206728419545 M73.87876804685753 -25.32422550149928 C74.27096804863324 -25.23470841043817, 74.66316805040894 -25.14519131937706, 75.49116364354678 -24.956206728419545 M75.49116364354678 -24.956206728419545 C75.8381878175814 -24.853211775133133, 76.18521199161603 -24.750216821846717, 77.07666735680552 -24.48563754880318 M75.49116364354678 -24.956206728419545 C75.97436924491437 -24.812793842331605, 76.45757484628196 -24.669380956243668, 77.07666735680552 -24.48563754880318 M77.07666735680552 -24.48563754880318 C77.62920081218765 -24.28230012965928, 78.1817342675698 -24.078962710515384, 78.62876401178644 -23.914451632345997 M77.07666735680552 -24.48563754880318 C77.56974188797045 -24.30418156340348, 78.0628164191354 -24.12272557800378, 78.62876401178644 -23.914451632345997 M78.62876401178644 -23.914451632345997 C79.03211047847819 -23.735902116389386, 79.43545694516993 -23.557352600432775, 80.14107571041056 -23.24499610449772 M78.62876401178644 -23.914451632345997 C78.97022083875652 -23.763298824003236, 79.31167766572659 -23.61214601566047, 80.14107571041056 -23.24499610449772 M80.14107571041056 -23.24499610449772 C80.63904595439145 -22.985205347178056, 81.13701619837234 -22.725414589858392, 81.6073880395184 -22.480021901620034 M80.14107571041056 -23.24499610449772 C80.616923371305 -22.99674668460406, 81.09277103219947 -22.748497264710398, 81.6073880395184 -22.480021901620034 M81.6073880395184 -22.480021901620034 C82.12543924073466 -22.165976219035947, 82.64349044195095 -21.85193053645186, 83.02167560722664 -21.62267246679901 M81.6073880395184 -22.480021901620034 C82.14004234346073 -22.157123732346047, 82.67269664740307 -21.83422556307206, 83.02167560722664 -21.62267246679901 M83.02167560722664 -21.62267246679901 C83.53142321544179 -21.267094601926427, 84.04117082365694 -20.911516737053848, 84.37812680255584 -20.67647083276321 M83.02167560722664 -21.62267246679901 C83.33059536123174 -21.40718341932567, 83.63951511523683 -21.191694371852332, 84.37812680255584 -20.67647083276321 M84.37812680255584 -20.67647083276321 C84.85511359957297 -20.29608655529379, 85.33210039659012 -19.91570227782437, 85.6711676765865 -19.64530514498651 M84.37812680255584 -20.67647083276321 C84.79455378279937 -20.344381397606334, 85.21098076304291 -20.012291962449456, 85.6711676765865 -19.64530514498651 M85.6711676765865 -19.64530514498651 C86.10276268035054 -19.25334198194606, 86.53435768411455 -18.861378818905614, 86.89548484701088 -18.533412684464313 M85.6711676765865 -19.64530514498651 C86.06037579797196 -19.291836627026825, 86.44958391935742 -18.93836810906714, 86.89548484701088 -18.533412684464313 M86.89548484701088 -18.533412684464313 C87.21092195958568 -18.20769796786226, 87.52635907216047 -17.881983251260205, 88.04604733196044 -17.345362455817106 M86.89548484701088 -18.533412684464313 C87.12951358152424 -18.291758801962825, 87.36354231603761 -18.050104919461337, 88.04604733196044 -17.345362455817106 M88.04604733196044 -17.345362455817106 C88.32069314697233 -17.022747853714552, 88.59533896198421 -16.700133251612, 89.11812722338968 -16.086036412270357 M88.04604733196044 -17.345362455817106 C88.38064898315255 -16.952320316953525, 88.71525063434468 -16.559278178089944, 89.11812722338968 -16.086036412270357 M89.11812722338968 -16.086036412270357 C89.44479071403913 -15.64833709445631, 89.77145420468857 -15.210637776642262, 90.10731911506427 -14.76060939466161 M89.11812722338968 -16.086036412270357 C89.35412189800853 -15.76982504783824, 89.59011657262738 -15.453613683406124, 90.10731911506427 -14.76060939466161 M90.10731911506427 -14.76060939466161 C90.35238360617977 -14.384124527278196, 90.59744809729528 -14.007639659894783, 91.00955820532036 -13.374527866909407 M90.10731911506427 -14.76060939466161 C90.33652303003062 -14.408490631404332, 90.56572694499697 -14.056371868147053, 91.00955820532036 -13.374527866909407 M91.00955820532036 -13.374527866909407 C91.28035458947016 -12.893701465744085, 91.55115097361998 -12.412875064578765, 91.8211370002064 -11.93348753532484 M91.00955820532036 -13.374527866909407 C91.18974393795031 -13.054589852841, 91.36992967058026 -12.73465183877259, 91.8211370002064 -11.93348753532484 M91.8211370002064 -11.93348753532484 C92.02357349702508 -11.5131238182337, 92.22600999384377 -11.09276010114256, 92.53872054837109 -10.443409943732584 M91.8211370002064 -11.93348753532484 C91.97465605720576 -11.614701928684074, 92.12817511420512 -11.295916322043308, 92.53872054837109 -10.443409943732584 M92.53872054837109 -10.443409943732584 C92.7431931272225 -9.938358720761208, 92.94766570607392 -9.433307497789833, 93.15936014509381 -8.910418140577123 M92.53872054837109 -10.443409943732584 C92.6782161268486 -10.098853167929606, 92.81771170532609 -9.754296392126628, 93.15936014509381 -8.910418140577123 M93.15936014509381 -8.910418140577123 C93.35185333399183 -8.330659325240955, 93.54434652288984 -7.7509005099047865, 93.6805054491449 -7.340811518003323 M93.15936014509381 -8.910418140577123 C93.3618807021271 -8.300458490061674, 93.56440125916038 -7.6904988395462235, 93.6805054491449 -7.340811518003323 M93.6805054491449 -7.340811518003323 C93.81098576396619 -6.8432335270636, 93.94146607878747 -6.3456555361238784, 94.10001496268467 -5.741039926302914 M93.6805054491449 -7.340811518003323 C93.80400186885582 -6.8698661459587065, 93.92749828856674 -6.398920773914089, 94.10001496268467 -5.741039926302914 M94.10001496268467 -5.741039926302914 C94.1991408142106 -5.232049628973461, 94.2982666657365 -4.7230593316440075, 94.41616483113748 -4.117677170096137 M94.10001496268467 -5.741039926302914 C94.16368962184195 -5.414084009174265, 94.22736428099923 -5.0871280920456154, 94.41616483113748 -4.117677170096137 M94.41616483113748 -4.117677170096137 C94.48389789507331 -3.5923529016161053, 94.55163095900916 -3.067028633136074, 94.62765592687991 -2.4773939951584394 M94.41616483113748 -4.117677170096137 C94.49125049853538 -3.5353275611001425, 94.56633616593328 -2.952977952104148, 94.62765592687991 -2.4773939951584394 M94.62765592687991 -2.4773939951584394 C94.65872674387437 -1.9934409405577378, 94.68979756086883 -1.5094878859570362, 94.73361918763487 -0.8269306768952902 M94.62765592687991 -2.4773939951584394 C94.64908861586329 -2.1435625640870115, 94.67052130484669 -1.8097311330155836, 94.73361918763487 -0.8269306768952902 M94.73361918763487 -0.8269306768952902 C94.73361918763487 -0.25227434740674903, 94.73361918763487 0.32238198208179214, 94.73361918763487 0.826930676895284 M94.73361918763487 -0.8269306768952902 C94.73361918763487 -0.31851693819917026, 94.73361918763487 0.18989680049694968, 94.73361918763487 0.826930676895284 M94.73361918763487 0.826930676895284 C94.6927769652242 1.4630812581901047, 94.65193474281352 2.0992318394849256, 94.62765592687991 2.4773939951584216 M94.73361918763487 0.826930676895284 C94.69465945168693 1.4337600120173901, 94.65569971573898 2.0405893471394965, 94.62765592687991 2.4773939951584216 M94.62765592687991 2.4773939951584216 C94.57872261742796 2.85691108029291, 94.52978930797599 3.2364281654273985, 94.41616483113748 4.117677170096119 M94.62765592687991 2.4773939951584216 C94.55811891920922 3.0167092950169687, 94.48858191153853 3.5560245948755163, 94.41616483113748 4.117677170096119 M94.41616483113748 4.117677170096119 C94.3321797251828 4.548922938914985, 94.24819461922812 4.980168707733851, 94.10001496268467 5.741039926302909 M94.41616483113748 4.117677170096119 C94.35272025157438 4.4434516771359664, 94.28927567201129 4.769226184175813, 94.10001496268467 5.741039926302909 M94.10001496268467 5.741039926302909 C93.94933744895835 6.3156385901889065, 93.79865993523202 6.890237254074903, 93.6805054491449 7.340811518003306 M94.10001496268467 5.741039926302909 C93.94353179214075 6.33777807582198, 93.78704862159684 6.934516225341051, 93.6805054491449 7.340811518003306 M93.6805054491449 7.340811518003306 C93.52011768099419 7.823873921352747, 93.35972991284348 8.306936324702187, 93.15936014509383 8.910418140577105 M93.6805054491449 7.340811518003306 C93.56017318863125 7.703233114328359, 93.4398409281176 8.065654710653412, 93.15936014509383 8.910418140577105 M93.15936014509383 8.910418140577105 C92.93190123155567 9.472246054635274, 92.70444231801751 10.034073968693445, 92.53872054837109 10.443409943732577 M93.15936014509383 8.910418140577105 C92.99149739252661 9.325042384823684, 92.82363463995938 9.73966662907026, 92.53872054837109 10.443409943732577 M92.53872054837109 10.443409943732577 C92.3348493434778 10.866752862838467, 92.13097813858451 11.290095781944357, 91.8211370002064 11.933487535324835 M92.53872054837109 10.443409943732577 C92.31303238225581 10.912056249624111, 92.08734421614055 11.380702555515645, 91.8211370002064 11.933487535324835 M91.8211370002064 11.933487535324835 C91.62848635167104 12.275558269792922, 91.43583570313567 12.61762900426101, 91.00955820532037 13.374527866909402 M91.8211370002064 11.933487535324835 C91.6360074971932 12.262203714319753, 91.45087799417999 12.59091989331467, 91.00955820532037 13.374527866909402 M91.00955820532037 13.374527866909402 C90.77004131341897 13.742490132160968, 90.53052442151758 14.110452397412535, 90.10731911506429 14.760609394661596 M91.00955820532037 13.374527866909402 C90.70798190672916 13.83783004612058, 90.40640560813796 14.301132225331758, 90.10731911506429 14.760609394661596 M90.10731911506429 14.760609394661596 C89.90519751943813 15.031433919144483, 89.70307592381197 15.30225844362737, 89.11812722338968 16.086036412270353 M90.10731911506429 14.760609394661596 C89.781415997115 15.197289882328803, 89.45551287916571 15.633970369996012, 89.11812722338968 16.086036412270353 M89.11812722338968 16.086036412270353 C88.77392696570652 16.490353620494496, 88.42972670802335 16.894670828718635, 88.04604733196045 17.345362455817092 M89.11812722338968 16.086036412270353 C88.79711761548403 16.463112563680472, 88.47610800757839 16.840188715090587, 88.04604733196045 17.345362455817092 M88.04604733196045 17.345362455817092 C87.76038461282737 17.640332666667412, 87.47472189369428 17.93530287751773, 86.89548484701088 18.533412684464306 M88.04604733196045 17.345362455817092 C87.77611226565193 17.62409257386174, 87.50617719934341 17.90282269190639, 86.89548484701088 18.533412684464306 M86.89548484701088 18.533412684464306 C86.62793937954405 18.776390399152522, 86.36039391207721 19.019368113840738, 85.67116767658653 19.64530514498649 M86.89548484701088 18.533412684464306 C86.59442910517107 18.806823543704787, 86.29337336333127 19.080234402945266, 85.67116767658653 19.64530514498649 M85.67116767658653 19.64530514498649 C85.15576097334376 20.05632827527421, 84.64035427010099 20.46735140556193, 84.37812680255584 20.676470832763208 M85.67116767658653 19.64530514498649 C85.30886019953024 19.934235716532, 84.94655272247395 20.223166288077515, 84.37812680255584 20.676470832763208 M84.37812680255584 20.676470832763208 C83.93868829594919 20.98300411198565, 83.49924978934256 21.289537391208093, 83.02167560722665 21.622672466799003 M84.37812680255584 20.676470832763208 C83.9222375547999 20.99447943687029, 83.46634830704397 21.31248804097737, 83.02167560722665 21.622672466799003 M83.02167560722665 21.622672466799003 C82.69201044603106 21.822517424843298, 82.36234528483548 22.02236238288759, 81.60738803951841 22.48002190162003 M83.02167560722665 21.622672466799003 C82.48504985081628 21.947978153897957, 81.94842409440592 22.273283840996907, 81.60738803951841 22.48002190162003 M81.60738803951841 22.48002190162003 C81.16472058645482 22.710961228341272, 80.72205313339121 22.941900555062517, 80.14107571041058 23.244996104497716 M81.60738803951841 22.48002190162003 C81.08098971744072 22.754643569073746, 80.55459139536303 23.029265236527458, 80.14107571041058 23.244996104497716 M80.14107571041058 23.244996104497716 C79.5694015547799 23.49805929508411, 78.99772739914923 23.751122485670507, 78.62876401178644 23.914451632345994 M80.14107571041058 23.244996104497716 C79.65398515087786 23.460616646174774, 79.16689459134514 23.676237187851832, 78.62876401178644 23.914451632345994 M78.62876401178644 23.914451632345994 C78.29462957707634 24.037416193024168, 77.96049514236624 24.16038075370234, 77.07666735680553 24.485637548803172 M78.62876401178644 23.914451632345994 C78.27152784711683 24.04591784319932, 77.91429168244721 24.177384054052645, 77.07666735680553 24.485637548803172 M77.07666735680553 24.485637548803172 C76.7468277162132 24.583532222767374, 76.41698807562086 24.681426896731573, 75.49116364354681 24.95620672841954 M77.07666735680553 24.485637548803172 C76.64146913512013 24.614802096597316, 76.20627091343474 24.743966644391463, 75.49116364354681 24.95620672841954 M75.49116364354681 24.95620672841954 C75.12752570135822 25.03920471576475, 74.76388775916962 25.12220270310996, 73.87876804685754 25.324225501499278 M75.49116364354681 24.95620672841954 C75.02081055421165 25.06356175171954, 74.55045746487647 25.17091677501954, 73.87876804685754 25.324225501499278 M73.87876804685754 25.324225501499278 C73.31341012606741 25.41562818571647, 72.74805220527728 25.50703086993366, 72.24610624610233 25.588181599964017 M73.87876804685754 25.324225501499278 C73.42238295928651 25.39801030313855, 72.96599787171547 25.47179510477782, 72.24610624610233 25.588181599964017 M72.24610624610233 25.588181599964017 C71.7646335382052 25.634628693039204, 71.28316083030806 25.68107578611439, 70.59988719882529 25.746990371586765 M72.24610624610233 25.588181599964017 C71.89659288583341 25.621898733477842, 71.54707952556451 25.65561586699167, 70.59988719882529 25.746990371586765 M70.59988719882529 25.746990371586765 C69.99768371935727 25.76630186505534, 69.39548023988925 25.785613358523914, 68.94687557220459 25.799999237060547 M70.59988719882529 25.746990371586765 C70.01027907047893 25.765897956660233, 69.42067094213256 25.7848055417337, 68.94687557220459 25.799999237060547 M68.94687557220459 25.799999237060547 C68.94687557220459 25.799999237060547, 68.94687557220459 25.799999237060547, 68.94687557220459 25.799999237060547 M68.94687557220459 25.799999237060547 C68.94687557220459 25.799999237060547, 68.94687557220459 25.799999237060547, 68.94687557220459 25.799999237060547 M68.94687557220459 25.799999237060547 C30.045573949908608 25.799999237060547, -8.855727672387374 25.799999237060547, -68.94687557220459 25.799999237060547 M68.94687557220459 25.799999237060547 C41.097184899222306 25.799999237060547, 13.247494226240022 25.799999237060547, -68.94687557220459 25.799999237060547 M-68.94687557220459 25.799999237060547 C-69.32376247189832 25.787913207753217, -69.70064937159205 25.775827178445887, -70.59988719882527 25.746990371586765 M-68.94687557220459 25.799999237060547 C-69.50592624240302 25.7820715701934, -70.06497691260147 25.764143903326254, -70.59988719882527 25.746990371586765 M-70.59988719882527 25.746990371586765 C-71.04127800135993 25.704409931716352, -71.48266880389457 25.661829491845943, -72.24610624610231 25.588181599964017 M-70.59988719882527 25.746990371586765 C-71.07391639093653 25.701261345527303, -71.5479455830478 25.65553231946784, -72.24610624610231 25.588181599964017 M-72.24610624610231 25.588181599964017 C-72.74969811196394 25.506764772504756, -73.25328997782556 25.425347945045498, -73.87876804685753 25.324225501499278 M-72.24610624610231 25.588181599964017 C-72.59493055634057 25.531786390657622, -72.94375486657883 25.47539118135123, -73.87876804685753 25.324225501499278 M-73.87876804685753 25.324225501499278 C-74.42571978867967 25.19938733562205, -74.9726715305018 25.07454916974482, -75.49116364354678 24.956206728419545 M-73.87876804685753 25.324225501499278 C-74.465339739216 25.19034434045647, -75.05191143157447 25.056463179413665, -75.49116364354678 24.956206728419545 M-75.49116364354678 24.956206728419545 C-75.91817987285145 24.829470553015845, -76.34519610215612 24.70273437761215, -77.0766673568055 24.485637548803183 M-75.49116364354678 24.956206728419545 C-75.94857064754505 24.82045073061122, -76.40597765154331 24.684694732802896, -77.0766673568055 24.485637548803183 M-77.0766673568055 24.485637548803183 C-77.48129413600711 24.33673115372805, -77.88592091520871 24.187824758652912, -78.62876401178644 23.914451632345997 M-77.0766673568055 24.485637548803183 C-77.62795490714308 24.282758634232707, -78.17924245748064 24.079879719662227, -78.62876401178644 23.914451632345997 M-78.62876401178644 23.914451632345997 C-79.17721481862014 23.671668729375856, -79.72566562545384 23.428885826405715, -80.14107571041056 23.244996104497723 M-78.62876401178644 23.914451632345997 C-79.17956130791073 23.67063000817305, -79.730358604035 23.4268083840001, -80.14107571041056 23.244996104497723 M-80.14107571041056 23.244996104497723 C-80.50224201211698 23.05657587623554, -80.8634083138234 22.868155647973364, -81.6073880395184 22.480021901620038 M-80.14107571041056 23.244996104497723 C-80.52879906935556 23.042721076484785, -80.91652242830054 22.84044604847185, -81.6073880395184 22.480021901620038 M-81.6073880395184 22.480021901620038 C-81.9452728774134 22.275194127256373, -82.28315771530842 22.07036635289271, -83.02167560722663 21.622672466799017 M-81.6073880395184 22.480021901620038 C-82.1290515519139 22.163786414770804, -82.6507150643094 21.847550927921567, -83.02167560722663 21.622672466799017 M-83.02167560722663 21.622672466799017 C-83.37196087970443 21.37832862432355, -83.72224615218224 21.133984781848085, -84.37812680255584 20.67647083276321 M-83.02167560722663 21.622672466799017 C-83.38834785383435 21.3668977805512, -83.75502010044207 21.11112309430338, -84.37812680255584 20.67647083276321 M-84.37812680255584 20.67647083276321 C-84.69748121032254 20.421794190946976, -85.01683561808923 20.167117549130737, -85.6711676765865 19.645305144986512 M-84.37812680255584 20.67647083276321 C-84.71048798264631 20.411421636143512, -85.04284916273677 20.146372439523816, -85.6711676765865 19.645305144986512 M-85.6711676765865 19.645305144986512 C-86.0471541069524 19.303844216984015, -86.4231405373183 18.962383288981517, -86.89548484701086 18.533412684464324 M-85.6711676765865 19.645305144986512 C-85.95064773868614 19.391488747224855, -86.23012780078577 19.1376723494632, -86.89548484701086 18.533412684464324 M-86.89548484701086 18.533412684464324 C-87.28001402060849 18.136354742292497, -87.6645431942061 17.739296800120666, -88.04604733196044 17.3453624558171 M-86.89548484701086 18.533412684464324 C-87.25209402569448 18.16518442931542, -87.60870320437809 17.796956174166517, -88.04604733196044 17.3453624558171 M-88.04604733196044 17.3453624558171 C-88.42337000025806 16.90213777936666, -88.80069266855568 16.458913102916224, -89.11812722338968 16.08603641227036 M-88.04604733196044 17.3453624558171 C-88.44298434800005 16.879097650420913, -88.83992136403967 16.412832845024727, -89.11812722338968 16.08603641227036 M-89.11812722338968 16.08603641227036 C-89.46075918285854 15.62694080099573, -89.8033911423274 15.167845189721099, -90.10731911506427 14.760609394661614 M-89.11812722338968 16.08603641227036 C-89.35089053324587 15.774154782236824, -89.58365384310206 15.462273152203286, -90.10731911506427 14.760609394661614 M-90.10731911506427 14.760609394661614 C-90.28803457493703 14.482981919401396, -90.46875003480979 14.205354444141179, -91.00955820532036 13.374527866909418 M-90.10731911506427 14.760609394661614 C-90.29206479382658 14.476790420921748, -90.47681047258888 14.192971447181883, -91.00955820532036 13.374527866909418 M-91.00955820532036 13.374527866909418 C-91.2755052085925 12.902312032545444, -91.54145221186465 12.43009619818147, -91.82113700020639 11.933487535324842 M-91.00955820532036 13.374527866909418 C-91.22659851330116 12.989150822375155, -91.44363882128194 12.603773777840892, -91.82113700020639 11.933487535324842 M-91.82113700020639 11.933487535324842 C-91.97043729476445 11.623462279160485, -92.11973758932251 11.313437022996126, -92.53872054837109 10.443409943732586 M-91.82113700020639 11.933487535324842 C-91.97678048904979 11.610290500504366, -92.13242397789318 11.28709346568389, -92.53872054837109 10.443409943732586 M-92.53872054837109 10.443409943732586 C-92.6757621061911 10.104914646398864, -92.81280366401113 9.76641934906514, -93.15936014509381 8.910418140577127 M-92.53872054837109 10.443409943732586 C-92.70454132233283 10.033829426120512, -92.87036209629457 9.624248908508438, -93.15936014509381 8.910418140577127 M-93.15936014509381 8.910418140577127 C-93.35719392981682 8.314574301524457, -93.55502771453983 7.718730462471787, -93.6805054491449 7.340811518003316 M-93.15936014509381 8.910418140577127 C-93.3512993847613 8.332327732063467, -93.54323862442878 7.754237323549805, -93.6805054491449 7.340811518003316 M-93.6805054491449 7.340811518003316 C-93.83438685833043 6.7539950121542836, -93.98826826751596 6.16717850630525, -94.10001496268467 5.741039926302918 M-93.6805054491449 7.340811518003316 C-93.7736263992234 6.985700976478955, -93.86674734930189 6.630590434954593, -94.10001496268467 5.741039926302918 M-94.10001496268467 5.741039926302918 C-94.18466892419222 5.306359725582733, -94.26932288569978 4.8716795248625475, -94.41616483113748 4.117677170096139 M-94.10001496268467 5.741039926302918 C-94.22558379615063 5.096270505437571, -94.35115262961659 4.451501084572224, -94.41616483113748 4.117677170096139 M-94.41616483113748 4.117677170096139 C-94.45957007441174 3.781034674595654, -94.50297531768602 3.444392179095168, -94.62765592687991 2.477393995158454 M-94.41616483113748 4.117677170096139 C-94.4893015424802 3.550443279399204, -94.56243825382292 2.9832093887022677, -94.62765592687991 2.477393995158454 M-94.62765592687991 2.477393995158454 C-94.65666446559501 2.0255625893996925, -94.68567300431012 1.5737311836409305, -94.73361918763487 0.8269306768952934 M-94.62765592687991 2.477393995158454 C-94.66138465204465 1.952041875380845, -94.69511337720937 1.426689755603236, -94.73361918763487 0.8269306768952934 M-94.73361918763487 0.8269306768952934 C-94.73361918763487 0.2083270891942911, -94.73361918763487 -0.4102764985067112, -94.73361918763487 -0.8269306768952809 M-94.73361918763487 0.8269306768952934 C-94.73361918763487 0.1997111928581059, -94.73361918763487 -0.4275082911790816, -94.73361918763487 -0.8269306768952809 M-94.73361918763487 -0.8269306768952809 C-94.69682013285251 -1.4001056587930654, -94.66002107807013 -1.97328064069085, -94.62765592687991 -2.4773939951584185 M-94.73361918763487 -0.8269306768952809 C-94.6993920790237 -1.3600455211391957, -94.66516497041252 -1.8931603653831108, -94.62765592687991 -2.4773939951584185 M-94.62765592687991 -2.4773939951584185 C-94.5833234299346 -2.821228087024609, -94.53899093298928 -3.1650621788907998, -94.41616483113748 -4.117677170096128 M-94.62765592687991 -2.4773939951584185 C-94.56645406021072 -2.9520635873691057, -94.50525219354154 -3.4267331795797924, -94.41616483113748 -4.117677170096128 M-94.41616483113748 -4.117677170096128 C-94.32560428359432 -4.582686441751763, -94.23504373605115 -5.047695713407398, -94.10001496268467 -5.741039926302906 M-94.41616483113748 -4.117677170096128 C-94.32789991480782 -4.570898860652243, -94.23963499847817 -5.024120551208358, -94.10001496268467 -5.741039926302906 M-94.10001496268467 -5.741039926302906 C-93.99647093641508 -6.135898174733729, -93.89292691014548 -6.530756423164552, -93.6805054491449 -7.340811518003303 M-94.10001496268467 -5.741039926302906 C-93.94483713956075 -6.332800220368384, -93.78965931643683 -6.924560514433862, -93.6805054491449 -7.340811518003303 M-93.6805054491449 -7.340811518003303 C-93.55656737450732 -7.714093251961186, -93.43262929986975 -8.08737498591907, -93.15936014509383 -8.910418140577093 M-93.6805054491449 -7.340811518003303 C-93.55996606422931 -7.703856940026193, -93.43942667931374 -8.066902362049083, -93.15936014509383 -8.910418140577093 M-93.15936014509383 -8.910418140577093 C-92.96142513799704 -9.399321434919177, -92.76349013090027 -9.888224729261259, -92.53872054837109 -10.443409943732574 M-93.15936014509383 -8.910418140577093 C-92.94769374312847 -9.433238245723023, -92.73602734116311 -9.956058350868954, -92.53872054837109 -10.443409943732574 M-92.53872054837109 -10.443409943732574 C-92.25427913807346 -11.03405861828682, -91.96983772777583 -11.624707292841066, -91.8211370002064 -11.933487535324831 M-92.53872054837109 -10.443409943732574 C-92.32318708097047 -10.890969800467373, -92.10765361356987 -11.338529657202171, -91.8211370002064 -11.933487535324831 M-91.8211370002064 -11.933487535324831 C-91.61204937405063 -12.304743787982428, -91.40296174789484 -12.676000040640025, -91.00955820532036 -13.374527866909409 M-91.8211370002064 -11.933487535324831 C-91.61855695647533 -12.29318891642318, -91.41597691274426 -12.652890297521527, -91.00955820532036 -13.374527866909409 M-91.00955820532036 -13.374527866909409 C-90.73384439834503 -13.798098313947207, -90.4581305913697 -14.221668760985006, -90.10731911506429 -14.760609394661605 M-91.00955820532036 -13.374527866909409 C-90.66313535831651 -13.906726387466827, -90.31671251131267 -14.438924908024244, -90.10731911506429 -14.760609394661605 M-90.10731911506429 -14.760609394661605 C-89.71846567969176 -15.281637572784062, -89.32961224431922 -15.80266575090652, -89.11812722338968 -16.086036412270353 M-90.10731911506429 -14.760609394661605 C-89.74233962044445 -15.249648667136192, -89.37736012582462 -15.738687939610777, -89.11812722338968 -16.086036412270353 M-89.11812722338968 -16.086036412270353 C-88.73508336964345 -16.535981518693404, -88.35203951589722 -16.98592662511646, -88.04604733196045 -17.345362455817092 M-89.11812722338968 -16.086036412270353 C-88.8434181446489 -16.40872532754868, -88.56870906590811 -16.731414242827007, -88.04604733196045 -17.345362455817092 M-88.04604733196045 -17.345362455817092 C-87.75389178160894 -17.6470370479718, -87.46173623125742 -17.948711640126508, -86.89548484701089 -18.5334126844643 M-88.04604733196045 -17.345362455817092 C-87.70198602879273 -17.700633999296095, -87.35792472562501 -18.055905542775097, -86.89548484701089 -18.5334126844643 M-86.89548484701089 -18.5334126844643 C-86.53822730918513 -18.85786452780118, -86.18096977135939 -19.18231637113806, -85.67116767658653 -19.645305144986487 M-86.89548484701089 -18.5334126844643 C-86.56747909471974 -18.83129883013848, -86.23947334242861 -19.129184975812656, -85.67116767658653 -19.645305144986487 M-85.67116767658653 -19.645305144986487 C-85.32576668806611 -19.920753241825203, -84.98036569954569 -20.196201338663915, -84.37812680255585 -20.676470832763204 M-85.67116767658653 -19.645305144986487 C-85.32681539814162 -19.919916923447328, -84.98246311969672 -20.194528701908173, -84.37812680255585 -20.676470832763204 M-84.37812680255585 -20.676470832763204 C-83.97408515657604 -20.958312794317767, -83.57004351059622 -21.24015475587233, -83.02167560722665 -21.622672466799 M-84.37812680255585 -20.676470832763204 C-84.04411585833718 -20.909462408349416, -83.7101049141185 -21.14245398393563, -83.02167560722665 -21.622672466799 M-83.02167560722665 -21.622672466799 C-82.65655924337332 -21.84400815222881, -82.29144287951999 -22.06534383765862, -81.60738803951841 -22.480021901620027 M-83.02167560722665 -21.622672466799 C-82.70509779237864 -21.814583798577615, -82.3885199775306 -22.006495130356228, -81.60738803951841 -22.480021901620027 M-81.60738803951841 -22.480021901620027 C-81.14891799924268 -22.719205427967797, -80.69044795896696 -22.958388954315566, -80.14107571041058 -23.244996104497716 M-81.60738803951841 -22.480021901620027 C-81.02810457147685 -22.782233715848545, -80.44882110343526 -23.084445530077062, -80.14107571041058 -23.244996104497716 M-80.14107571041058 -23.244996104497716 C-79.61033802179256 -23.479937935474755, -79.07960033317455 -23.714879766451794, -78.62876401178646 -23.91445163234599 M-80.14107571041058 -23.244996104497716 C-79.60988589553179 -23.480138078358546, -79.07869608065302 -23.715280052219377, -78.62876401178646 -23.91445163234599 M-78.62876401178646 -23.91445163234599 C-78.12925629795171 -24.098275088435866, -77.62974858411698 -24.282098544525738, -77.07666735680553 -24.485637548803172 M-78.62876401178646 -23.91445163234599 C-78.01603891672185 -24.139940131298452, -77.40331382165725 -24.365428630250918, -77.07666735680553 -24.485637548803172 M-77.07666735680553 -24.485637548803172 C-76.6520574483082 -24.61165954082229, -76.22744753981085 -24.737681532841407, -75.49116364354681 -24.956206728419538 M-77.07666735680553 -24.485637548803172 C-76.51430228444553 -24.652544550365118, -75.95193721208553 -24.819451551927063, -75.49116364354681 -24.956206728419538 M-75.49116364354681 -24.956206728419538 C-75.07290627547754 -25.051671243296948, -74.65464890740827 -25.14713575817436, -73.87876804685754 -25.324225501499278 M-75.49116364354681 -24.956206728419538 C-75.00368803587274 -25.06746985479552, -74.51621242819866 -25.1787329811715, -73.87876804685754 -25.324225501499278 M-73.87876804685754 -25.324225501499278 C-73.50402658146056 -25.384810795461195, -73.12928511606357 -25.44539608942311, -72.24610624610233 -25.588181599964017 M-73.87876804685754 -25.324225501499278 C-73.27970154566763 -25.42107792758156, -72.68063504447773 -25.517930353663843, -72.24610624610233 -25.588181599964017 M-72.24610624610233 -25.588181599964017 C-71.73926114706589 -25.637076337097646, -71.23241604802945 -25.68597107423128, -70.59988719882529 -25.746990371586765 M-72.24610624610233 -25.588181599964017 C-71.8324862942371 -25.628083019269685, -71.41886634237189 -25.66798443857535, -70.59988719882529 -25.746990371586765 M-70.59988719882529 -25.746990371586765 C-70.17784104037358 -25.7605245704253, -69.75579488192187 -25.774058769263835, -68.9468755722046 -25.799999237060547 M-70.59988719882529 -25.746990371586765 C-70.19118181851147 -25.760096757636667, -69.78247643819763 -25.77320314368657, -68.9468755722046 -25.799999237060547 M-68.9468755722046 -25.799999237060547 C-68.9468755722046 -25.799999237060547, -68.94687557220459 -25.799999237060547, -68.94687557220459 -25.799999237060547 M-68.9468755722046 -25.799999237060547 C-68.9468755722046 -25.799999237060547, -68.94687557220459 -25.799999237060547, -68.94687557220459 -25.799999237060547" stroke="#f0abfc" stroke-width="2" fill="none" stroke-dasharray="0 0" style="fill:#3f1d3f !important;stroke:#f0abfc !important;stroke-width:2px !important"/></g><g class="label" style="color:#fae8ff !important" transform="translate(0, -18.299999237060547)"><rect/><g><rect class="background" style="stroke: none"/><text y="-10.1" style="fill:#fae8ff !important"><tspan class="text-outer-tspan row" x="0" y="-0.1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">Resolve</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> blocker</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> /</tspan><tspan font-style="normal" class="text-inner-tspan" font-weight="normal"> next</tspan></tspan><tspan class="text-outer-tspan row" x="0" y="1em" dy="1.1em"><tspan font-style="normal" class="text-inner-tspan" font-weight="normal">cycle</tspan></tspan></text></g></g></g></g></g></g><defs><filter id="my-svg-drop-shadow" height="130%" width="130%"><feDropShadow dx="4" dy="4" stdDeviation="0" flood-opacity="0.06" flood-color="#FFFFFF"/></filter></defs><defs><filter id="my-svg-drop-shadow-small" height="150%" width="150%"><feDropShadow dx="2" dy="2" stdDeviation="0" flood-opacity="0.06" flood-color="#FFFFFF"/></filter></defs><linearGradient id="my-svg-gradient" gradientUnits="objectBoundingBox" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" stop-color="#cccccc" stop-opacity="1"/><stop offset="100%" stop-color="hsl(180, 0%, 18.3529411765%)" stop-opacity="1"/></linearGradient></svg>
|
package/docs/forgeloop-flow.mmd
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
%% ForgeLoop canonical architecture flow. Render with npm run docs:flow.
|
|
2
|
-
%%{init: {"look": "classic", "handDrawnSeed": 1, "flowchart": {"curve": "linear", "htmlLabels": false}}}%%
|
|
3
|
-
flowchart LR
|
|
4
|
-
classDef entry fill:#1f2937,stroke:#7dd3fc,color:#f8fafc,stroke-width:2px
|
|
5
|
-
classDef contract fill:#172554,stroke:#60a5fa,color:#dbeafe,stroke-width:2px
|
|
6
|
-
classDef execution fill:#312e81,stroke:#a78bfa,color:#ede9fe,stroke-width:2px
|
|
7
|
-
classDef evidence fill:#134e4a,stroke:#5eead4,color:#ccfbf1,stroke-width:2px
|
|
8
|
-
classDef recovery fill:#451a03,stroke:#fb923c,color:#ffedd5,stroke-width:2px
|
|
9
|
-
classDef terminal fill:#14532d,stroke:#86efac,color:#dcfce7,stroke-width:2px
|
|
10
|
-
classDef boundary fill:#3f1d3f,stroke:#f0abfc,color:#fae8ff,stroke-width:2px
|
|
11
|
-
|
|
12
|
-
subgraph DISCOVER["1 · Discover and route"]
|
|
13
|
-
REQUEST(["Request"]) --> PROFILE["Project profile"]
|
|
14
|
-
PROFILE --> CONTRACT["Current contract"]
|
|
15
|
-
CONTRACT --> ROUTE["Deterministic route"]
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
subgraph AUTHORIZE["2 · Authorize execution"]
|
|
19
|
-
ROUTE --> GATES["Required gates"]
|
|
20
|
-
GATES --> PREFLIGHT["PREFLIGHT_READY"]
|
|
21
|
-
PREFLIGHT --> STATE["Resumable work state"]
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
subgraph VERIFY["3 · Execute and verify"]
|
|
25
|
-
STATE --> EXECUTE["Implementation"]
|
|
26
|
-
EXECUTE --> CHECKS["run-check / record-check"]
|
|
27
|
-
CHECKS --> EVIDENCE["Structured evidence"]
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
subgraph CLOSE["4 · Review and close"]
|
|
31
|
-
EVIDENCE --> REVIEW["Review"]
|
|
32
|
-
REVIEW --> COMPLETE["complete / audit"]
|
|
33
|
-
COMPLETE --> VALID(["VALID"])
|
|
34
|
-
end
|
|
35
|
-
|
|
36
|
-
EVIDENCE -->|"failed or incomplete"| DIAGNOSE["Diagnose"]
|
|
37
|
-
DIAGNOSE --> CORRECT["Correct"]
|
|
38
|
-
CORRECT --> CHECKS
|
|
39
|
-
REVIEW -->|"drift detected"| REVALIDATE["Revalidate contract, route, and artifacts"]
|
|
40
|
-
REVALIDATE --> PREFLIGHT
|
|
41
|
-
EXECUTE -.-> DELEGATE["Optional delegation bundle"]
|
|
42
|
-
DELEGATE -.-> EVIDENCE
|
|
43
|
-
COMPLETE -->|"INCOMPLETE · STALE · INCONSISTENT · INVALID"| BLOCKED(["Resolve blocker / next cycle"])
|
|
44
|
-
|
|
45
|
-
class REQUEST entry
|
|
46
|
-
class PROFILE,CONTRACT,ROUTE,GATES,PREFLIGHT,STATE contract
|
|
47
|
-
class EXECUTE,CHECKS execution
|
|
48
|
-
class EVIDENCE,REVIEW evidence
|
|
49
|
-
class DIAGNOSE,CORRECT,REVALIDATE recovery
|
|
50
|
-
class COMPLETE,VALID terminal
|
|
51
|
-
class DELEGATE,BLOCKED boundary
|