Image-Text-to-Text
Transformers
GGUF
Safetensors
qwen3_5
vision-language
vlm
document-understanding
structured-extraction
information-extraction
ocr
document-to-markdown
markdown
rag
reasoning
multilingual
conversational
Instructions to use numind/NuExtract3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use numind/NuExtract3-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="numind/NuExtract3-GGUF") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("numind/NuExtract3-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use numind/NuExtract3-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf numind/NuExtract3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf numind/NuExtract3-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf numind/NuExtract3-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf numind/NuExtract3-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf numind/NuExtract3-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf numind/NuExtract3-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf numind/NuExtract3-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf numind/NuExtract3-GGUF:Q4_K_M
Use Docker
docker model run hf.co/numind/NuExtract3-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use numind/NuExtract3-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "numind/NuExtract3-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "numind/NuExtract3-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/numind/NuExtract3-GGUF:Q4_K_M
- SGLang
How to use numind/NuExtract3-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "numind/NuExtract3-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "numind/NuExtract3-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "numind/NuExtract3-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "numind/NuExtract3-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Ollama
How to use numind/NuExtract3-GGUF with Ollama:
ollama run hf.co/numind/NuExtract3-GGUF:Q4_K_M
- Unsloth Studio
How to use numind/NuExtract3-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for numind/NuExtract3-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for numind/NuExtract3-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for numind/NuExtract3-GGUF to start chatting
- Docker Model Runner
How to use numind/NuExtract3-GGUF with Docker Model Runner:
docker model run hf.co/numind/NuExtract3-GGUF:Q4_K_M
- Lemonade
How to use numind/NuExtract3-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull numind/NuExtract3-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.NuExtract3-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
File size: 110,409 Bytes
4595e30 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="NuExtract3_Hero"
viewBox="0 0 2048 690"
version="1.1"
sodipodi:docname="header.svg"
inkscape:version="1.4.3 (0d15f75, 2025-12-25)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview122"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="0.85829814"
inkscape:cx="951.30114"
inkscape:cy="255.73864"
inkscape:window-width="1728"
inkscape:window-height="976"
inkscape:window-x="0"
inkscape:window-y="33"
inkscape:window-maximized="0"
inkscape:current-layer="NuExtract3_Hero" />
<defs
id="defs3">
<style
id="style1">
.bg { fill: url(#bg); }
.blue { stroke:#8fb7ff; }
.violet { stroke:#9a8cff; }
.mint { stroke:#55d5bd; }
.gold { stroke:#ffc83d; }
.navy { fill:#020b2b; }
.thin { fill:none; stroke-width:2.25; stroke-linecap:round; stroke-linejoin:round; }
.dot { fill:#fff; stroke-width:2.25; }
#NuExtract3_Hero .thin,
#NuExtract3_Hero .dot,
#NuExtract3_Hero [style*="stroke-width:1.5"],
#NuExtract3_Hero [style*="stroke-width: 1.5"],
#NuExtract3_Hero [style*="stroke-width:1.8"],
#NuExtract3_Hero [style*="stroke-width: 1.8"] {
stroke-width:2.25 !important;
}
.soft { opacity:.72; }
.dash { stroke-dasharray:6 8; }
.tiny { fill:#9a8cff; opacity:.65; }
.mutedFill { fill:#eef6ff; opacity:.55; }
.mintFill { fill:#dff7f1; opacity:.7; }
.goldFill { fill:#fff8df; opacity:.65; }
.cls-1 { fill:#e4843a; }
.cls-2 { fill:#f0cf35; }
.cls-3 { fill:#a37fb8; }
.cls-4 { fill:#787878; }
.cls-5 { fill:#99b535; }
.cls-6 { fill:#87b7e0; }
</style>
<radialGradient
id="bg"
cx="50%"
cy="48%"
r="78%">
<stop
offset="0%"
stop-color="#ffffff"
id="stop1" />
<stop
offset="58%"
stop-color="#ffffff"
id="stop2" />
<stop
offset="100%"
stop-color="#f9f5ff"
id="stop3" />
</radialGradient>
<filter
id="softShadow"
x="-0.0047770701"
y="-0.0036231884"
width="1.0095541"
height="1.0072464">
<feDropShadow
dx="0"
dy="8"
stdDeviation="12"
flood-color="#c7bdf7"
flood-opacity=".2" />
</filter>
</defs>
<path
id="rect3"
class="bg"
style="fill:none"
d="M 0,0 H 2048 V 690 H 0 Z" />
<!-- Decorative connector lines -->
<g
class="soft"
id="g14">
<path
class="thin violet dash"
d="M236 129 H280 Q291 129 291 140 V174 Q291 183 300 183 H338"
id="path3" />
<path
class="thin violet dash"
d="m 110.05887,187.11488 -0.63397,30.65071 c -0.12733,6.15623 7.831,5.82267 24.70928,5.96748 l 10.9959,0.0943 c 4.33161,0.0372 3.17554,15.93392 2.86071,30.93603 -0.25617,12.20721 -0.0427,28.62618 -0.419,30.9109"
id="path3-8"
style="fill:none;stroke:#9a8cff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:6, 8"
sodipodi:nodetypes="cssssc" />
<path
id="circle3"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 238,129 a 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 6,6 0 0 1 6,6 z" />
<path
id="circle3-5"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
class="dot violet"
d="m 116.09179,187.64365 a 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 6,6 0 0 1 6,6 z" />
<path
id="circle3-5-9"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
class="dot violet"
d="m 153.8172,291.7153 a 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 6,6 0 0 1 6,6 z" />
<path
id="circle4"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 346,183 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
class="thin violet dash"
d="M603 157 V190 Q603 199 612 199 H659"
id="path4" />
<path
id="circle5"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 609,157 a 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 6,6 0 0 1 6,6 z" />
<path
id="circle5-5"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
class="dot violet"
d="m 474.89999,198.89999 a 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 6,6 0 0 1 6,6 z" />
<path
id="circle6"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 665,199 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
class="thin violet dash"
d="M1344 160 V218 Q1344 229 1355 229 H1398"
id="path6" />
<path
id="circle7"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 1350,160 a 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 6,6 0 0 1 6,6 z" />
<path
id="circle8"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 1403,229 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
class="thin blue dash"
d="m 710,552 h 84 c 6.66667,0 39.71932,41.04251 45.71932,44.37584 l 115.40744,0.43672"
id="path8"
sodipodi:nodetypes="cscc" />
<path
id="circle9"
class="dot blue"
style="fill:#ffffff;stroke:#8fb7ff;stroke-width:1.8"
d="m 779.62982,550.49036 a 10,10 0 0 1 -10,10 10,10 0 0 1 -10,-10 10,10 0 0 1 10,-10 10,10 0 0 1 10,10 z" />
<path
id="circle10"
class="dot blue"
style="fill:#ffffff;stroke:#8fb7ff;stroke-width:1.8"
d="m 873.60168,596.14832 a 10,10 0 0 1 -10,10 10,10 0 0 1 -10,-10 10,10 0 0 1 10,-10 10,10 0 0 1 10,10 z" />
<path
id="circle11"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 825.09247,571.68793 a 10,10 0 0 1 -10,10 10,10 0 0 1 -10,-10 10,10 0 0 1 10,-10 10,10 0 0 1 10,10 z" />
<path
class="thin violet dash"
d="M371 542 H432 Q445 542 445 529 V509"
id="path11" />
<path
id="circle12"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 374,542 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle13"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 449.92285,503.06097 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
class="thin violet dash"
d="m 1760.6683,517.85153 h 65.3798 q 6.3427,0 6.3427,13.05515 v 57.24179 h 43.4238"
id="path13" />
<path
id="circle14"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 1760.2178,517.44342 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
</g>
<!-- Small background dots / plus marks -->
<g
class="tiny"
id="g44">
<path
id="circle15"
d="m 107,441 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle16"
d="m 1262,194 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle17"
d="m 1745,410 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle18"
d="m 1876.351,324.44342 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
d="M577 188 h12 M583 182 v12"
stroke="#9a8cff"
stroke-width="1.4"
id="path18" />
<path
d="M840 496 h12 M846 490 v12"
stroke="#9a8cff"
stroke-width="1.4"
id="path19" />
<path
d="m 934.20971,189 h 27.58058 M 948,174.39385 v 29.2123"
stroke="#9a8cff"
stroke-width="4.96732"
id="path20" />
<path
d="M 769.76214,220.20971 H 795.711 m -12.97443,-12.15858 v 24.31716"
stroke="#9a8cff"
stroke-width="4.39595"
id="path20-8" />
<g
fill="#8fb7ff"
id="g31">
<path
id="circle20"
d="m 240.8,219 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle21"
d="m 255.8,219 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle22"
d="m 270.8,219 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle23"
d="m 285.8,219 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle24"
d="m 240.8,235 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle25"
d="m 255.8,235 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle26"
d="m 270.8,235 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle27"
d="m 285.8,235 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle28"
d="m 240.8,251 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle29"
d="m 255.8,251 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle30"
d="m 270.8,251 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle31"
d="m 285.8,251 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
</g>
<g
fill="#9a8cff"
id="g43"
transform="translate(-13.594149,11.488013)">
<path
id="circle32"
d="m 1928.8,347 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle33"
d="m 1943.8,347 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle34"
d="m 1958.8,347 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle35"
d="m 1973.8,347 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle36"
d="m 1928.8,363 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle37"
d="m 1943.8,363 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle38"
d="m 1958.8,363 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle39"
d="m 1973.8,363 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle40"
d="m 1928.8,379 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle41"
d="m 1943.8,379 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle42"
d="m 1958.8,379 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle43"
d="m 1973.8,379 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
</g>
<g
fill="#9a8cff"
id="g43-5"
transform="translate(-1564.6164,-278.93771)">
<path
id="circle32-3"
d="m 1928.8,347 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle33-7"
d="m 1943.8,347 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle34-6"
d="m 1958.8,347 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle35-8"
d="m 1973.8,347 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle36-6"
d="m 1928.8,363 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle37-7"
d="m 1943.8,363 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle38-1"
d="m 1958.8,363 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle39-8"
d="m 1973.8,363 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle40-4"
d="m 1928.8,379 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle41-9"
d="m 1943.8,379 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle42-7"
d="m 1958.8,379 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
<path
id="circle43-3"
d="m 1973.8,379 a 1.8,1.8 0 0 1 -1.8,1.8 1.8,1.8 0 0 1 -1.8,-1.8 1.8,1.8 0 0 1 1.8,-1.8 1.8,1.8 0 0 1 1.8,1.8 z" />
</g>
</g>
<!-- Left document icon -->
<g
transform="translate(70 44)"
class="soft"
id="g46">
<path
class="thin blue"
d="M0 0 H84 L112 28 V153 H0 Z"
id="path44" />
<path
class="thin blue"
d="M84 0 V28 H112"
id="path45" />
<path
id="rect45"
class="thin blue mutedFill"
style="opacity:0.55;fill:#eef6ff;stroke:#8fb7ff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 21,23 h 28 c 1.662,0 3,1.338 3,3 v 30 c 0,1.662 -1.338,3 -3,3 H 21 c -1.662,0 -3,-1.338 -3,-3 V 26 c 0,-1.662 1.338,-3 3,-3 z" />
<path
class="thin blue"
d="M18 75 H94 M18 90 H94 M18 105 H94 M18 119 H65 M18 135 H49"
id="path46" />
</g>
<!-- Markdown panel -->
<g
transform="translate(350,31)"
filter="url(#softShadow)"
class="soft"
id="g55">
<path
id="rect46"
class="thin blue"
style="fill:none;stroke:#8fb7ff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 5,0 h 147 c 2.77,0 5,2.23 5,5 v 197 c 0,2.77 -2.23,5 -5,5 H 5 c -2.77,0 -5,-2.23 -5,-5 V 5 C 0,2.23 2.23,0 5,0 Z" />
<path
id="rect47"
class="mutedFill"
style="opacity:0.55;fill:#eef6ff"
d="m 16,164 h 127 c 2.216,0 4,1.784 4,4 v 22 c 0,2.216 -1.784,4 -4,4 H 16 c -2.216,0 -4,-1.784 -4,-4 v -22 c 0,-2.216 1.784,-4 4,-4 z" />
<path
id="rect48"
class="thin blue mutedFill"
style="opacity:0.55;fill:#eef6ff;stroke:#8fb7ff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 15,17 h 23 c 1.662,0 3,1.338 3,3 v 23 c 0,1.662 -1.338,3 -3,3 H 15 c -1.662,0 -3,-1.338 -3,-3 V 20 c 0,-1.662 1.338,-3 3,-3 z" />
<path
d="M 24.677734,38 V 26.105469 h -4.248047 v -2.421875 h 11.376954 v 2.421875 H 27.568359 V 38 Z"
id="text48"
style="font-weight:700;font-size:20px;font-family:Arial, Helvetica, sans-serif;opacity:0.5184;fill:#3384ff;filter:url(#softShadow)"
aria-label="T" />
<path
class="thin blue"
stroke-width="5"
d="m 50,28 h 53"
id="path48" />
<path
d="M 22.160645,67.867676 H 20.452637 L 20.001465,70 h -0.757324 l 0.451171,-2.132324 H 18.255859 L 17.804687,70 h -0.757324 l 0.451172,-2.132324 h -1.025879 v -0.703614 h 1.17627 l 0.408203,-1.928222 h -1.584473 v -0.703613 h 1.729492 l 0.451172,-2.11084 h 0.757325 l -0.451172,2.11084 h 1.439453 l 0.451172,-2.11084 h 0.757324 l -0.445801,2.11084 h 0.999024 v 0.703613 h -1.144043 l -0.408204,1.928222 h 1.552247 z M 20.259277,65.23584 h -1.444824 l -0.402832,1.928222 h 1.439453 z M 34.680664,70 H 33.799805 V 66.240234 H 31.205566 V 70 h -0.880859 v -7.578613 h 0.880859 v 3.04541 h 2.594239 v -3.04541 h 0.880859 z M 41.4375,67.228516 h -3.840332 q 0,0.950683 0.547852,1.568359 0.553222,0.617676 1.353515,0.617676 0.762695,0 1.573731,-0.273926 l 0.145019,0.671387 q -0.741211,0.333008 -1.729492,0.333008 -1.246094,0 -2.008789,-0.800293 -0.762695,-0.800293 -0.762695,-2.15918 0,-1.332031 0.682128,-2.121582 0.6875,-0.794922 1.772461,-0.794922 0.966797,0 1.6167,0.73584 0.649902,0.73584 0.649902,1.960449 z m -0.913086,-0.682129 q 0,-0.655274 -0.408203,-1.101075 -0.408203,-0.451171 -0.913086,-0.451171 -0.649902,0 -1.07959,0.429687 -0.424316,0.429688 -0.472656,1.122559 z M 48.011719,70 h -0.83252 q -0.102051,-0.338379 -0.102051,-0.902344 -0.714355,1.047364 -1.944336,1.047364 -0.623046,0 -1.101074,-0.44043 -0.472656,-0.445801 -0.472656,-1.144043 0,-0.413574 0.166504,-0.730469 0.166504,-0.316894 0.488769,-0.531738 0.322266,-0.220215 0.78418,-0.34375 0.461914,-0.128906 1.095703,-0.177246 l 0.939942,-0.0752 v -0.268554 q 0,-1.439453 -1.342774,-1.439453 -0.316894,0 -0.805664,0.139648 -0.483398,0.134277 -0.832519,0.322266 l -0.220215,-0.601563 q 1.144043,-0.585449 2.126953,-0.585449 1.912109,0 1.912109,2.024902 v 2.40625 q 0,0.730469 0.139649,1.299805 z M 47.03418,68.340332 v -1.015137 q -1.133301,0.102051 -1.557618,0.19336 -0.418945,0.08594 -0.730468,0.327636 -0.306153,0.2417 -0.306153,0.655274 0,0.375976 0.263184,0.606933 0.263184,0.230957 0.671387,0.230957 0.4458,0 0.88623,-0.263183 0.44043,-0.268555 0.773438,-0.73584 z M 54.45166,70 h -0.83789 v -0.805664 q -0.257813,0.413574 -0.741211,0.682129 -0.478028,0.268555 -1.009766,0.268555 -0.961426,0 -1.52002,-0.854004 -0.558593,-0.859375 -0.558593,-2.175293 0,-1.229981 0.580078,-2.035645 0.585449,-0.811035 1.546875,-0.811035 1.058105,0 1.702637,0.859375 v -2.707031 h 0.83789 z m -0.83789,-1.713379 v -2.325684 q -0.601563,-0.966796 -1.450196,-0.966796 -0.692871,0 -1.095703,0.617675 -0.402832,0.612305 -0.402832,1.552246 0,0.966797 0.375977,1.600586 0.381347,0.628418 1.041992,0.628418 0.316894,0 0.63916,-0.171875 0.322266,-0.171875 0.606934,-0.515625 0.284668,-0.34375 0.284668,-0.418945 z m 5.655761,-5.999512 q 0.236328,0 0.402832,0.171875 0.166504,0.166504 0.166504,0.402832 0,0.247071 -0.166504,0.413575 -0.161133,0.166504 -0.402832,0.166504 -0.220215,0 -0.39209,-0.171875 -0.166504,-0.177247 -0.166504,-0.408204 0,-0.230957 0.166504,-0.402832 0.171875,-0.171875 0.39209,-0.171875 z M 59.677734,70 h -0.83789 V 65.128418 H 57.190918 V 64.40332 h 2.486816 z m 7.997559,0 h -0.837891 v -3.587891 q 0,-0.746582 -0.241699,-1.079589 -0.236328,-0.338379 -0.746582,-0.338379 -0.768066,0 -1.648926,0.956054 V 70 h -0.83789 v -5.59668 h 0.83789 v 0.821778 q 0.902344,-0.956055 1.901367,-0.956055 1.573731,0 1.573731,1.901367 z m 3.840332,-2.11084 q -0.78418,0.381348 -0.78418,0.671387 0,0.155762 0.177246,0.263183 0.182618,0.107422 0.494141,0.107422 l 1.885254,-0.05371 q 0.671387,0 1.041992,0.327637 0.375977,0.327637 0.375977,0.929199 0,0.950684 -0.848633,1.514649 -0.848633,0.563965 -1.981934,0.563965 -0.929199,0 -1.520019,-0.39209 -0.590821,-0.386719 -0.590821,-1.004395 0,-0.671386 0.913086,-1.133301 -0.757324,-0.354492 -0.757324,-0.870117 0,-0.59082 0.977539,-1.101074 -0.451172,-0.273926 -0.692871,-0.708984 -0.241699,-0.435059 -0.241699,-0.918457 0,-0.789551 0.537109,-1.294434 0.53711,-0.510254 1.342774,-0.510254 0.580078,0 1.047363,0.241699 l 1.659668,-0.252441 v 0.816406 h -1.068848 q 0.2417,0.424317 0.2417,0.999024 0,0.762695 -0.531739,1.289062 -0.531738,0.526367 -1.348144,0.526367 -0.171875,0 -0.327637,-0.01074 z M 71.843262,67.25 q 0.461914,0 0.751953,-0.316895 0.29541,-0.322265 0.29541,-0.83789 0,-0.542481 -0.284668,-0.848633 -0.284668,-0.306152 -0.762695,-0.306152 -0.445801,0 -0.751953,0.322265 -0.300782,0.316895 -0.300782,0.83252 0,0.504883 0.300782,0.832519 Q 71.397461,67.25 71.843262,67.25 Z m 0.03223,4.312988 q 0.827149,0 1.407227,-0.370605 0.585449,-0.365235 0.585449,-0.907715 0,-0.558594 -0.827148,-0.558594 -0.273926,0 -0.945313,0.03223 -0.424316,0.02148 -0.666016,0.02148 -0.118164,0 -0.370605,0.19336 -0.24707,0.193359 -0.381348,0.386718 -0.128906,0.198731 -0.128906,0.408203 0,0.327637 0.365234,0.558594 0.365235,0.236328 0.961426,0.236328 z M 87.478516,70 h -3.985352 v -0.768066 h 1.605957 v -5.886719 l -1.514648,0.757324 V 63.22168 l 1.638183,-0.843262 h 0.757324 v 6.853516 h 1.498536 z"
id="text49"
style="font-weight:700;font-size:11px;font-family:monospace;opacity:0.5184;fill:#3384ff;filter:url(#softShadow)"
aria-label="# Heading 1" />
<path
d="M 22.160645,91.867676 H 20.452637 L 20.001465,94 h -0.757324 l 0.451171,-2.132324 H 18.255859 L 17.804687,94 h -0.757324 l 0.451172,-2.132324 h -1.025879 v -0.703614 h 1.17627 l 0.408203,-1.928222 h -1.584473 v -0.703613 h 1.729492 l 0.451172,-2.11084 h 0.757325 l -0.451172,2.11084 h 1.439453 l 0.451172,-2.11084 h 0.757324 l -0.445801,2.11084 h 0.999024 v 0.703613 h -1.144043 l -0.408204,1.928222 h 1.552247 z M 20.259277,89.23584 h -1.444824 l -0.402832,1.928222 h 1.439453 z m 8.502442,2.631836 H 27.053711 L 26.602539,94 h -0.757324 l 0.451172,-2.132324 H 24.856934 L 24.405762,94 h -0.757325 l 0.451172,-2.132324 H 23.07373 V 91.164062 H 24.25 L 24.658203,89.23584 H 23.07373 v -0.703613 h 1.729493 l 0.451172,-2.11084 h 0.757324 l -0.451172,2.11084 H 27 l 0.451172,-2.11084 h 0.757324 l -0.445801,2.11084 h 0.999024 v 0.703613 h -1.144043 l -0.408203,1.928222 h 1.552246 z M 26.860352,89.23584 h -1.444825 l -0.402832,1.928222 h 1.439453 z M 41.281738,94 H 40.400879 V 90.240234 H 37.806641 V 94 h -0.88086 v -7.578613 h 0.88086 v 3.04541 h 2.594238 v -3.04541 h 0.880859 z m 6.756836,-2.771484 h -3.840332 q 0,0.950683 0.547852,1.568359 0.553222,0.617676 1.353515,0.617676 0.762696,0 1.573731,-0.273926 l 0.145019,0.671387 q -0.741211,0.333008 -1.729492,0.333008 -1.246094,0 -2.008789,-0.800293 -0.762695,-0.800293 -0.762695,-2.15918 0,-1.332031 0.682129,-2.121582 0.6875,-0.794922 1.772461,-0.794922 0.966797,0 1.616699,0.73584 0.649902,0.73584 0.649902,1.960449 z m -0.913086,-0.682129 q 0,-0.655274 -0.408203,-1.101075 -0.408203,-0.451171 -0.913086,-0.451171 -0.649902,0 -1.07959,0.429687 -0.424316,0.429688 -0.472656,1.122559 z M 54.612793,94 h -0.83252 q -0.10205,-0.338379 -0.10205,-0.902344 -0.714356,1.047364 -1.944336,1.047364 -0.623047,0 -1.101075,-0.44043 -0.472656,-0.445801 -0.472656,-1.144043 0,-0.413574 0.166504,-0.730469 0.166504,-0.316894 0.48877,-0.531738 0.322265,-0.220215 0.784179,-0.34375 0.461914,-0.128906 1.095703,-0.177246 l 0.939942,-0.0752 v -0.268554 q 0,-1.439453 -1.342774,-1.439453 -0.316894,0 -0.805664,0.139648 -0.483398,0.134277 -0.832519,0.322266 l -0.220215,-0.601563 q 1.144043,-0.585449 2.126953,-0.585449 1.91211,0 1.91211,2.024902 v 2.40625 q 0,0.730469 0.139648,1.299805 z m -0.977539,-1.659668 v -1.015137 q -1.133301,0.102051 -1.557617,0.19336 -0.418946,0.08594 -0.730469,0.327636 -0.306152,0.2417 -0.306152,0.655274 0,0.375976 0.263183,0.606933 0.263184,0.230957 0.671387,0.230957 0.445801,0 0.88623,-0.263183 0.44043,-0.268555 0.773438,-0.73584 z M 61.052734,94 h -0.83789 v -0.805664 q -0.257813,0.413574 -0.741211,0.682129 -0.478028,0.268555 -1.009766,0.268555 -0.961426,0 -1.520019,-0.854004 -0.558594,-0.859375 -0.558594,-2.175293 0,-1.229981 0.580078,-2.035645 0.585449,-0.811035 1.546875,-0.811035 1.058105,0 1.702637,0.859375 v -2.707031 h 0.83789 z m -0.83789,-1.713379 v -2.325684 q -0.601563,-0.966796 -1.450196,-0.966796 -0.692871,0 -1.095703,0.617675 -0.402832,0.612305 -0.402832,1.552246 0,0.966797 0.375977,1.600586 0.381347,0.628418 1.041992,0.628418 0.316895,0 0.63916,-0.171875 0.322266,-0.171875 0.606934,-0.515625 0.284668,-0.34375 0.284668,-0.418945 z m 5.655761,-5.999512 q 0.236329,0 0.402832,0.171875 0.166504,0.166504 0.166504,0.402832 0,0.247071 -0.166504,0.413575 -0.161132,0.166504 -0.402832,0.166504 -0.220214,0 -0.392089,-0.171875 -0.166504,-0.177247 -0.166504,-0.408204 0,-0.230957 0.166504,-0.402832 0.171875,-0.171875 0.392089,-0.171875 z M 66.278809,94 H 65.440918 V 89.128418 H 63.791992 V 88.40332 h 2.486817 z m 7.997558,0 h -0.83789 v -3.587891 q 0,-0.746582 -0.2417,-1.079589 -0.236328,-0.338379 -0.746582,-0.338379 -0.768066,0 -1.648925,0.956054 V 94 h -0.837891 v -5.59668 h 0.837891 v 0.821778 q 0.902343,-0.956055 1.901367,-0.956055 1.57373,0 1.57373,1.901367 z m 3.840332,-2.11084 q -0.784179,0.381348 -0.784179,0.671387 0,0.155762 0.177246,0.263183 0.182617,0.107422 0.49414,0.107422 l 1.885254,-0.05371 q 0.671387,0 1.041992,0.327637 0.375977,0.327637 0.375977,0.929199 0,0.950684 -0.848633,1.514649 -0.848633,0.563965 -1.981934,0.563965 -0.929199,0 -1.520019,-0.39209 -0.59082,-0.386719 -0.59082,-1.004395 0,-0.671386 0.913086,-1.133301 -0.757325,-0.354492 -0.757325,-0.870117 0,-0.59082 0.977539,-1.101074 -0.451171,-0.273926 -0.692871,-0.708984 -0.241699,-0.435059 -0.241699,-0.918457 0,-0.789551 0.537109,-1.294434 0.53711,-0.510254 1.342774,-0.510254 0.580078,0 1.047363,0.241699 l 1.659668,-0.252441 v 0.816406 H 80.08252 q 0.241699,0.424317 0.241699,0.999024 0,0.762695 -0.531739,1.289062 -0.531738,0.526367 -1.348144,0.526367 -0.171875,0 -0.327637,-0.01074 z M 78.444336,91.25 q 0.461914,0 0.751953,-0.316895 0.29541,-0.322265 0.29541,-0.83789 0,-0.542481 -0.284668,-0.848633 -0.284668,-0.306152 -0.762695,-0.306152 -0.445801,0 -0.751953,0.322265 -0.300781,0.316895 -0.300781,0.83252 0,0.504883 0.300781,0.832519 Q 77.998535,91.25 78.444336,91.25 Z m 0.03223,4.312988 q 0.827149,0 1.407227,-0.370605 0.585449,-0.365235 0.585449,-0.907715 0,-0.558594 -0.827148,-0.558594 -0.273926,0 -0.945313,0.03223 -0.424316,0.02148 -0.666015,0.02148 -0.118164,0 -0.370606,0.19336 -0.24707,0.193359 -0.381347,0.386718 -0.128907,0.198731 -0.128907,0.408203 0,0.327637 0.365235,0.558594 0.365234,0.236328 0.961425,0.236328 z M 93.880859,94 h -4.167968 v -0.63916 q 1.584472,-1.76709 2.057129,-2.368653 0.472656,-0.601562 0.768066,-1.262207 0.29541,-0.660644 0.29541,-1.315918 0,-0.633789 -0.386719,-0.999023 -0.381347,-0.365234 -1.074218,-0.365234 -0.531739,0 -1.428711,0.327636 l -0.123536,-0.757324 q 0.811036,-0.34375 1.697266,-0.34375 1.015137,0 1.632813,0.574707 0.623046,0.569336 0.623046,1.525391 0,0.682129 -0.322265,1.353515 -0.316895,0.671387 -0.816406,1.289063 -0.499512,0.617676 -1.944336,2.212891 h 3.190429 z"
id="text50"
style="font-weight:700;font-size:11px;font-family:monospace;opacity:0.5184;fill:#3384ff;filter:url(#softShadow)"
aria-label="## Heading 2" />
<path
id="circle50"
style="fill:#3384ff"
d="m 25,112 a 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 2,-2 2,2 0 0 1 2,2 z" />
<path
id="circle51"
style="fill:#3384ff"
d="m 25,129 a 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 2,-2 2,2 0 0 1 2,2 z" />
<path
id="circle52"
style="fill:#3384ff"
d="m 25,146 a 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 2,-2 2,2 0 0 1 2,2 z" />
<path
d="m 38.53125,116 h -3.129883 v -0.69824 h 1.186524 v -5.49317 h -1.186524 v -0.69824 h 3.129883 v 0.69824 h -1.142578 v 5.49317 h 1.142578 z m 6.489258,-0.22949 q -0.766602,0.35156 -1.508789,0.35156 -1.362305,0 -1.362305,-1.44043 v -3.11035 h -0.976562 v -0.65918 h 0.976562 v -1.3916 h 0.742188 v 1.3916 h 1.728515 v 0.65918 h -1.728515 v 2.91016 q 0,0.46386 0.205078,0.72265 0.205078,0.25391 0.55664,0.25391 0.625,0 1.235352,-0.27832 z m 6.103515,-2.29004 h -3.491211 q 0,0.86426 0.498047,1.42578 0.50293,0.56152 1.230469,0.56152 0.693359,0 1.430664,-0.24902 l 0.131836,0.61035 q -0.673828,0.30274 -1.572266,0.30274 -1.132812,0 -1.826171,-0.72754 -0.69336,-0.72754 -0.69336,-1.96289 0,-1.21094 0.620117,-1.92871 0.625,-0.72266 1.611329,-0.72266 0.878906,0 1.469726,0.66894 0.59082,0.66895 0.59082,1.78223 z m -0.830078,-0.62012 q 0,-0.5957 -0.371093,-1.00097 -0.371094,-0.41016 -0.830079,-0.41016 -0.59082,0 -0.981445,0.39062 -0.385742,0.39063 -0.429687,1.02051 z M 57.374023,116 h -0.761718 v -3.33984 q 0,-1.21094 -0.449219,-1.21094 -0.229492,0 -0.507813,0.41992 -0.273437,0.41504 -0.273437,0.45899 V 116 H 54.625 v -3.33984 q 0,-1.21094 -0.454102,-1.21094 -0.224609,0 -0.502929,0.41992 -0.273438,0.41504 -0.273438,0.45899 V 116 h -0.761719 v -5.08789 h 0.732422 v 0.7666 q 0.214844,-0.40527 0.507813,-0.64453 0.297851,-0.24414 0.59082,-0.24414 0.307617,0 0.551758,0.24414 0.244141,0.23926 0.336914,0.64453 0.214844,-0.40527 0.512695,-0.64453 0.297852,-0.24414 0.585938,-0.24414 0.922851,0 0.922851,1.65039 z m 9.628907,-5.20996 q 1.049804,0 1.669922,0.73242 0.620117,0.73242 0.620117,1.92871 0,1.20606 -0.620117,1.94336 -0.620118,0.73731 -1.669922,0.73731 -1.054688,0 -1.674805,-0.73243 -0.615234,-0.7373 -0.615234,-1.94824 0,-1.20117 0.620117,-1.92871 0.620117,-0.73242 1.669922,-0.73242 z m 0,4.67773 q 0.693359,0 1.09375,-0.58593 0.40039,-0.58594 0.40039,-1.4209 0,-0.87891 -0.395508,-1.44531 -0.395507,-0.56641 -1.098632,-0.56641 -0.708008,0 -1.098633,0.56152 -0.390625,0.55664 -0.390625,1.4502 0,0.84961 0.395508,1.43066 0.395507,0.57617 1.09375,0.57617 z M 74.976562,116 h -0.761718 v -3.26172 q 0,-0.67871 -0.219727,-0.98144 -0.214844,-0.30762 -0.678711,-0.30762 -0.698242,0 -1.499023,0.86914 V 116 h -0.761719 v -5.08789 h 0.761719 v 0.74707 q 0.820312,-0.86914 1.728515,-0.86914 1.430664,0 1.430664,1.72851 z m 6.152344,-2.51953 h -3.491211 q 0,0.86426 0.498047,1.42578 0.50293,0.56152 1.230469,0.56152 0.693359,0 1.430664,-0.24902 l 0.131836,0.61035 q -0.673828,0.30274 -1.572266,0.30274 -1.132812,0 -1.826172,-0.72754 -0.693359,-0.72754 -0.693359,-1.96289 0,-1.21094 0.620117,-1.92871 0.625,-0.72266 1.611328,-0.72266 0.878907,0 1.469727,0.66894 0.59082,0.66895 0.59082,1.78223 z m -0.830078,-0.62012 q 0,-0.5957 -0.371094,-1.00097 -0.371093,-0.41016 -0.830078,-0.41016 -0.59082,0 -0.981445,0.39062 -0.385742,0.39063 -0.429688,1.02051 z"
id="text52"
style="font-size:10px;font-family:monospace;opacity:0.5184;fill:#3384ff;filter:url(#softShadow)"
aria-label="Item one" />
<path
d="m 38.53125,133 h -3.129883 v -0.69824 h 1.186524 v -5.49317 h -1.186524 v -0.69824 h 3.129883 v 0.69824 h -1.142578 v 5.49317 h 1.142578 z m 6.489258,-0.22949 q -0.766602,0.35156 -1.508789,0.35156 -1.362305,0 -1.362305,-1.44043 v -3.11035 h -0.976562 v -0.65918 h 0.976562 v -1.3916 h 0.742188 v 1.3916 h 1.728515 v 0.65918 h -1.728515 v 2.91016 q 0,0.46386 0.205078,0.72265 0.205078,0.25391 0.55664,0.25391 0.625,0 1.235352,-0.27832 z m 6.103515,-2.29004 h -3.491211 q 0,0.86426 0.498047,1.42578 0.50293,0.56152 1.230469,0.56152 0.693359,0 1.430664,-0.24902 l 0.131836,0.61035 q -0.673828,0.30274 -1.572266,0.30274 -1.132812,0 -1.826171,-0.72754 -0.69336,-0.72754 -0.69336,-1.96289 0,-1.21094 0.620117,-1.92871 0.625,-0.72266 1.611329,-0.72266 0.878906,0 1.469726,0.66894 0.59082,0.66895 0.59082,1.78223 z m -0.830078,-0.62012 q 0,-0.5957 -0.371093,-1.00098 -0.371094,-0.41015 -0.830079,-0.41015 -0.59082,0 -0.981445,0.39062 -0.385742,0.39063 -0.429687,1.02051 z M 57.374023,133 h -0.761718 v -3.33984 q 0,-1.21094 -0.449219,-1.21094 -0.229492,0 -0.507813,0.41992 -0.273437,0.41504 -0.273437,0.45898 V 133 H 54.625 v -3.33984 q 0,-1.21094 -0.454102,-1.21094 -0.224609,0 -0.502929,0.41992 -0.273438,0.41504 -0.273438,0.45898 V 133 h -0.761719 v -5.08789 h 0.732422 v 0.7666 q 0.214844,-0.40527 0.507813,-0.64453 0.297851,-0.24414 0.59082,-0.24414 0.307617,0 0.551758,0.24414 0.244141,0.23926 0.336914,0.64453 0.214844,-0.40527 0.512695,-0.64453 0.297852,-0.24414 0.585938,-0.24414 0.922851,0 0.922851,1.65039 z m 11.650391,-0.22949 q -0.766602,0.35156 -1.508789,0.35156 -1.362305,0 -1.362305,-1.44043 v -3.11035 h -0.976562 v -0.65918 h 0.976562 v -1.3916 h 0.742188 v 1.3916 h 1.728515 v 0.65918 h -1.728515 v 2.91016 q 0,0.46386 0.205078,0.72265 0.205078,0.25391 0.556641,0.25391 0.625,0 1.235351,-0.27832 z m 6.552734,-4.8584 L 74.844727,133 H 74.263672 L 73.067383,130.11914 71.866211,133 h -0.581055 l -0.717773,-5.08789 h 0.756836 q 0.405273,3.56445 0.419922,3.74023 l 0.932617,-2.21191 h 0.78125 l 0.927734,2.19727 0.410156,-3.72559 z m 3.427735,-0.12207 q 1.049804,0 1.669922,0.73242 0.620117,0.73242 0.620117,1.92871 0,1.20606 -0.620117,1.94336 -0.620118,0.73731 -1.669922,0.73731 -1.054688,0 -1.674805,-0.73243 -0.615234,-0.7373 -0.615234,-1.94824 0,-1.20117 0.620117,-1.92871 0.620117,-0.73242 1.669922,-0.73242 z m 0,4.67773 q 0.693359,0 1.09375,-0.58593 0.40039,-0.58594 0.40039,-1.4209 0,-0.87891 -0.395507,-1.44532 -0.395508,-0.5664 -1.098633,-0.5664 -0.708008,0 -1.098633,0.56152 -0.390625,0.55664 -0.390625,1.4502 0,0.84961 0.395508,1.43066 0.395508,0.57617 1.09375,0.57617 z"
id="text53"
style="font-size:10px;font-family:monospace;opacity:0.5184;fill:#3384ff;filter:url(#softShadow)"
aria-label="Item two" />
<path
d="m 38.53125,150 h -3.129883 v -0.69824 h 1.186524 v -5.49317 h -1.186524 v -0.69824 h 3.129883 v 0.69824 h -1.142578 v 5.49317 h 1.142578 z m 6.489258,-0.22949 q -0.766602,0.35156 -1.508789,0.35156 -1.362305,0 -1.362305,-1.44043 v -3.11035 h -0.976562 v -0.65918 h 0.976562 v -1.3916 h 0.742188 v 1.3916 h 1.728515 v 0.65918 h -1.728515 v 2.91016 q 0,0.46386 0.205078,0.72265 0.205078,0.25391 0.55664,0.25391 0.625,0 1.235352,-0.27832 z m 6.103515,-2.29004 h -3.491211 q 0,0.86426 0.498047,1.42578 0.50293,0.56152 1.230469,0.56152 0.693359,0 1.430664,-0.24902 l 0.131836,0.61035 q -0.673828,0.30274 -1.572266,0.30274 -1.132812,0 -1.826171,-0.72754 -0.69336,-0.72754 -0.69336,-1.96289 0,-1.21094 0.620117,-1.92871 0.625,-0.72266 1.611329,-0.72266 0.878906,0 1.469726,0.66894 0.59082,0.66895 0.59082,1.78223 z m -0.830078,-0.62012 q 0,-0.5957 -0.371093,-1.00098 -0.371094,-0.41015 -0.830079,-0.41015 -0.59082,0 -0.981445,0.39062 -0.385742,0.39063 -0.429687,1.02051 z M 57.374023,150 h -0.761718 v -3.33984 q 0,-1.21094 -0.449219,-1.21094 -0.229492,0 -0.507813,0.41992 -0.273437,0.41504 -0.273437,0.45898 V 150 H 54.625 v -3.33984 q 0,-1.21094 -0.454102,-1.21094 -0.224609,0 -0.502929,0.41992 -0.273438,0.41504 -0.273438,0.45898 V 150 h -0.761719 v -5.08789 h 0.732422 v 0.7666 q 0.214844,-0.40527 0.507813,-0.64453 0.297851,-0.24414 0.59082,-0.24414 0.307617,0 0.551758,0.24414 0.244141,0.23926 0.336914,0.64453 0.214844,-0.40527 0.512695,-0.64453 0.297852,-0.24414 0.585938,-0.24414 0.922851,0 0.922851,1.65039 z m 11.650391,-0.22949 q -0.766602,0.35156 -1.508789,0.35156 -1.362305,0 -1.362305,-1.44043 v -3.11035 h -0.976562 v -0.65918 h 0.976562 v -1.3916 h 0.742188 v 1.3916 h 1.728515 v 0.65918 h -1.728515 v 2.91016 q 0,0.46386 0.205078,0.72265 0.205078,0.25391 0.556641,0.25391 0.625,0 1.235351,-0.27832 z M 74.976562,150 h -0.761718 v -3.26172 q 0,-0.67871 -0.219727,-0.98144 -0.214844,-0.30762 -0.678711,-0.30762 -0.698242,0 -1.499023,0.86914 V 150 h -0.761719 v -6.88965 h 0.761719 v 2.54883 q 0.820312,-0.86914 1.728515,-0.86914 1.430664,0 1.430664,1.72851 z m 6.079102,-4.95117 -0.307617,0.73242 q -0.50293,-0.21973 -0.869141,-0.21973 -0.336914,0 -0.659179,0.19532 -0.322266,0.19043 -0.595704,0.55175 -0.268554,0.35645 -0.268554,0.40039 V 150 h -0.756836 v -5.08789 h 0.756836 v 1.03027 q 0.610351,-1.15234 1.582031,-1.15234 0.576172,0 1.118164,0.25879 z m 6.074219,2.43164 h -3.491211 q 0,0.86426 0.498047,1.42578 0.502929,0.56152 1.230468,0.56152 0.69336,0 1.430665,-0.24902 l 0.131835,0.61035 q -0.673828,0.30274 -1.572265,0.30274 -1.132813,0 -1.826172,-0.72754 -0.693359,-0.72754 -0.693359,-1.96289 0,-1.21094 0.620117,-1.92871 0.625,-0.72266 1.611328,-0.72266 0.878906,0 1.469726,0.66894 0.590821,0.66895 0.590821,1.78223 z m -0.830078,-0.62012 q 0,-0.5957 -0.371094,-1.00098 -0.371094,-0.41015 -0.830078,-0.41015 -0.590821,0 -0.981446,0.39062 -0.385742,0.39063 -0.429687,1.02051 z m 6.831054,0.62012 h -3.491211 q 0,0.86426 0.498047,1.42578 0.50293,0.56152 1.230469,0.56152 0.693359,0 1.430664,-0.24902 l 0.131836,0.61035 q -0.673828,0.30274 -1.572266,0.30274 -1.132812,0 -1.826171,-0.72754 -0.69336,-0.72754 -0.69336,-1.96289 0,-1.21094 0.620117,-1.92871 0.625,-0.72266 1.611328,-0.72266 0.878907,0 1.469727,0.66894 0.59082,0.66895 0.59082,1.78223 z m -0.830078,-0.62012 q 0,-0.5957 -0.371094,-1.00098 -0.371093,-0.41015 -0.830078,-0.41015 -0.59082,0 -0.981445,0.39062 -0.385742,0.39063 -0.429687,1.02051 z"
id="text54"
style="font-size:10px;font-family:monospace;opacity:0.5184;fill:#3384ff;filter:url(#softShadow)"
aria-label="Item three" />
<path
d="m 27.859375,182.54639 q 0.336426,0 0.564941,0.22851 0.228516,0.22852 0.228516,0.56494 0,0.34278 -0.234863,0.59034 -0.228516,0.24121 -0.558594,0.24121 -0.32373,0 -0.552246,-0.24121 -0.228516,-0.24756 -0.228516,-0.59034 0,-0.34277 0.222168,-0.56494 0.228516,-0.22851 0.558594,-0.22851 z m 7.80127,0 q 0.336425,0 0.564941,0.22851 0.228516,0.22852 0.228516,0.56494 0,0.34278 -0.234864,0.59034 -0.228515,0.24121 -0.558593,0.24121 -0.323731,0 -0.552247,-0.24121 -0.228515,-0.24756 -0.228515,-0.59034 0,-0.34277 0.222168,-0.56494 0.228515,-0.22851 0.558594,-0.22851 z m 7.801269,0 q 0.336426,0 0.564941,0.22851 0.228516,0.22852 0.228516,0.56494 0,0.34278 -0.234863,0.59034 -0.228516,0.24121 -0.558594,0.24121 -0.32373,0 -0.552246,-0.24121 -0.228516,-0.24756 -0.228516,-0.59034 0,-0.34277 0.222168,-0.56494 0.228516,-0.22851 0.558594,-0.22851 z"
id="text55"
style="font-size:13px;font-family:monospace;opacity:0.5184;fill:#8fb7ff;filter:url(#softShadow)"
aria-label="..." />
</g>
<!-- Tree / flowchart top center -->
<g
transform="translate(702 45)"
class="soft"
id="g57">
<path
id="rect55"
class="thin blue mutedFill"
style="opacity:0.55;fill:#eef6ff;stroke:#8fb7ff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 55,0 h 24 c 2.77,0 5,2.23 5,5 v 18 c 0,2.77 -2.23,5 -5,5 H 55 c -2.77,0 -5,-2.23 -5,-5 V 5 c 0,-2.77 2.23,-5 5,-5 z" />
<path
class="thin blue"
d="M67 28 V64 M67 64 H0 M67 64 H161 M67 64 V93"
id="path55" />
<path
id="circle55"
class="dot blue"
style="fill:#ffffff;stroke:#8fb7ff;stroke-width:1.8"
d="M 78,64 A 11,11 0 0 1 67,75 11,11 0 0 1 56,64 11,11 0 0 1 67,53 11,11 0 0 1 78,64 Z" />
<path
id="circle56"
class="dot blue"
style="fill:#ffffff;stroke:#8fb7ff;stroke-width:1.8"
d="M 12,103 A 12,12 0 0 1 0,115 12,12 0 0 1 -12,103 12,12 0 0 1 0,91 12,12 0 0 1 12,103 Z" />
<path
id="circle57"
class="dot blue"
style="fill:#ffffff;stroke:#8fb7ff;stroke-width:1.8"
d="m 173,103 a 12,12 0 0 1 -12,12 12,12 0 0 1 -12,-12 12,12 0 0 1 12,-12 12,12 0 0 1 12,12 z" />
<path
class="thin violet"
d="M67 93 L82 108 L67 123 L52 108 Z"
id="path57" />
</g>
<!-- Top table -->
<g
transform="translate(1042 68)"
class="soft"
id="g58">
<path
id="rect57"
class="thin mint"
style="fill:none;stroke:#55d5bd;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 4,0 h 161 c 2.216,0 4,1.784 4,4 v 81 c 0,2.216 -1.784,4 -4,4 H 4 C 1.784,89 0,87.216 0,85 V 4 C 0,1.784 1.784,0 4,0 Z" />
<path
class="thin mint"
d="M0 22 H169 M0 44 H169 M0 67 H169 M43 0 V89 M86 0 V89 M127 0 V89"
id="path58" />
<path
id="rect58"
class="mintFill"
style="opacity:0.7;fill:#dff7f1"
d="m 95.068649,27.792908 h 25.000001 c 1.662,0 3,1.338 3,3 v 6 c 0,1.662 -1.338,3 -3,3 H 95.068649 c -1.662,0 -3,-1.338 -3,-3 v -6 c 0,-1.662 1.338,-3 3,-3 z" />
<path
id="rect58-3"
style="opacity:0.7;fill:#dff7f1"
class="mintFill"
d="m 53.550404,72.279152 h 25 c 1.662,0 3,1.338 3,3 v 6 c 0,1.662 -1.338,3 -3,3 h -25 c -1.662,0 -3,-1.338 -3,-3 v -6 c 0,-1.662 1.338,-3 3,-3 z" />
<path
id="rect58-0"
style="opacity:0.7;fill:#dff7f1"
class="mintFill"
d="M 9.0275578,5.6808391 H 34.027558 c 1.662,0 3,1.338 3,3 v 5.9999999 c 0,1.662 -1.338,3 -3,3 H 9.0275578 c -1.662,0 -3,-1.338 -3,-3 V 8.6808391 c 0,-1.662 1.338,-3 3,-3 z" />
<path
id="rect58-2"
style="opacity:0.7;fill:#dff7f1"
class="mintFill"
d="m 135.93822,50.139576 h 25 c 1.662,0 3,1.338 3,3 v 6 c 0,1.662 -1.338,3 -3,3 h -25 c -1.662,0 -3,-1.338 -3,-3 v -6 c 0,-1.662 1.338,-3 3,-3 z" />
</g>
<!-- Image placeholder -->
<g
transform="translate(1413 68)"
class="soft"
id="g59">
<path
id="rect59"
class="thin mint"
style="fill:none;stroke:#55d5bd;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 5,0 h 135 c 2.77,0 5,2.23 5,5 v 103 c 0,2.77 -2.23,5 -5,5 H 5 c -2.77,0 -5,-2.23 -5,-5 V 5 C 0,2.23 2.23,0 5,0 Z" />
<path
id="circle59"
class="thin mint"
style="fill:none;stroke:#55d5bd;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 40,27 a 9,9 0 0 1 -9,9 9,9 0 0 1 -9,-9 9,9 0 0 1 9,-9 9,9 0 0 1 9,9 z" />
<path
class="thin mint mintFill"
d="M0 101 L44 57 L69 82 L103 48 L145 90 V113 H0 Z"
id="path59" />
</g>
<g
transform="translate(53.148905,270.31136)"
class="soft"
id="g59-0"
style="opacity:0.72">
<path
id="rect59-0"
style="fill:none;stroke:#55d5bd;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
class="thin mint"
d="m 5,0 h 135 c 2.77,0 5,2.23 5,5 v 103 c 0,2.77 -2.23,5 -5,5 H 5 c -2.77,0 -5,-2.23 -5,-5 V 5 C 0,2.23 2.23,0 5,0 Z" />
<path
id="circle59-5"
style="fill:none;stroke:#55d5bd;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
class="thin mint"
d="m 40,27 a 9,9 0 0 1 -9,9 9,9 0 0 1 -9,-9 9,9 0 0 1 9,-9 9,9 0 0 1 9,9 z" />
<path
class="thin mint mintFill"
d="m 0,101 44,-44 25,25 34,-34 42,42 v 23 H 0 Z"
id="path59-6"
style="opacity:0.7;fill:#dff7f1;stroke:#55d5bd;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round" />
</g>
<!-- JSON panel -->
<g
transform="matrix(1.0433548,0,0,1.107716,1616.0628,24.000497)"
class="soft"
id="g70">
<path
id="rect60"
class="thin mint"
style="fill:none;stroke:#55d5bd;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="M 6.4284426,0.09386553 H 218.99336 c 3.50935,0 6.33458,2.82522137 6.33458,6.33457707 V 275.38075 c 0,3.50935 -2.82523,6.33458 -6.33458,6.33458 H 6.4284426 c -3.5093557,0 -6.33457707,-2.82523 -6.33457707,-6.33458 V 6.4284426 c 0,-3.5093557 2.82522137,-6.33457707 6.33457707,-6.33457707 z" />
<path
d="m 24.041992,34.005859 h -0.694336 q -1.265625,0 -1.828125,-0.685547 -0.553711,-0.676757 -0.553711,-2.52246 v -0.84375 q 0,-1.643555 -0.430664,-2.285157 -0.430664,-0.65039 -1.388672,-0.65039 v -1.432618 q 0.958008,0 1.388672,-0.641601 0.430664,-0.650391 0.430664,-2.293945 v -0.852539 q 0,-1.836915 0.553711,-2.513672 0.5625,-0.685547 1.828125,-0.685547 h 0.694336 V 19.75 H 23.77832 q -0.817383,0 -1.142578,0.351562 -0.316406,0.351563 -0.316406,1.678711 v 0.5625 q 0,1.819336 -0.421875,2.680664 -0.421875,0.861329 -1.432617,1.274415 1.010742,0.421875 1.432617,1.283203 0.421875,0.861328 0.421875,2.680664 v 0.5625 q 0,1.327148 0.316406,1.678711 0.325195,0.351562 1.142578,0.351562 h 0.263672 z"
id="text60"
style="font-size:18px;font-family:monospace;opacity:0.5184;fill:#36bfa9"
aria-label="{" />
<path
d="m 26.502733,269.6615 q -0.949219,0 -1.388672,0.65039 -0.430664,0.6416 -0.430664,2.28516 v 0.84375 q 0,1.8457 -0.553711,2.52246 -0.553711,0.68554 -1.819336,0.68554 h -0.703125 v -1.15136 h 0.272461 q 0.817383,0 1.133789,-0.35157 0.325196,-0.35156 0.325196,-1.67871 v -0.5625 q 0,-1.81933 0.421875,-2.68066 0.421875,-0.86133 1.432617,-1.2832 -1.010742,-0.41309 -1.432617,-1.27442 -0.421875,-0.86133 -0.421875,-2.68066 v -0.5625 q 0,-1.32715 -0.325196,-1.67871 -0.316406,-0.35157 -1.133789,-0.35157 h -0.272461 v -1.15136 h 0.703125 q 1.265625,0 1.819336,0.68554 0.553711,0.67676 0.553711,2.51368 v 0.85253 q 0,1.48536 0.386719,2.21485 0.386719,0.7207 1.432617,0.7207 z"
id="text60-5"
style="font-size:18px;font-family:monospace;opacity:0.5184;fill:#36bfa9"
aria-label="}" />
<path
d="m 40.109375,49.138672 -0.210938,1.640625 h -0.46875 l -0.216796,-1.640625 v -1.40625 h 0.896484 z m -2.121094,0 -0.216797,1.640625 h -0.46875 l -0.216797,-1.640625 v -1.40625 h 0.902344 z M 48.142578,56 h -0.914062 v -0.878906 q -0.28125,0.451172 -0.808594,0.74414 -0.521485,0.292969 -1.101563,0.292969 -1.048828,0 -1.658203,-0.931641 -0.609375,-0.9375 -0.609375,-2.373046 0,-1.341797 0.632813,-2.220704 0.638672,-0.884765 1.6875,-0.884765 1.154297,0 1.857422,0.9375 v -2.953125 h 0.914062 z M 47.228516,54.130859 V 51.59375 q -0.65625,-1.054688 -1.582032,-1.054688 -0.755859,0 -1.195312,0.673829 -0.439453,0.667968 -0.439453,1.693359 0,1.054687 0.410156,1.746094 0.416016,0.685547 1.136719,0.685547 0.345703,0 0.697265,-0.1875 0.351563,-0.1875 0.66211,-0.5625 0.310547,-0.375 0.310547,-0.457032 z M 53,49.748047 q 1.259766,0 2.003906,0.878906 0.744141,0.878906 0.744141,2.314453 0,1.447266 -0.744141,2.332031 -0.74414,0.884766 -2.003906,0.884766 -1.265625,0 -2.009766,-0.878906 -0.738281,-0.884766 -0.738281,-2.337891 0,-1.441406 0.744141,-2.314453 Q 51.740234,49.748047 53,49.748047 Z m 0,5.613281 q 0.832031,0 1.3125,-0.703125 0.480469,-0.703125 0.480469,-1.705078 0,-1.054688 -0.47461,-1.734375 Q 53.84375,50.539062 53,50.539062 q -0.849609,0 -1.318359,0.673829 -0.46875,0.667968 -0.46875,1.740234 0,1.019531 0.474609,1.716797 0.474609,0.691406 1.3125,0.691406 z m 9.544922,0.433594 q -0.796875,0.363281 -1.751953,0.363281 -1.441407,0 -2.302735,-0.873047 -0.855468,-0.878906 -0.855468,-2.332031 0,-1.453125 0.861328,-2.326172 0.867187,-0.878906 2.273437,-0.878906 0.919922,0 1.751953,0.322265 l -0.240234,0.75586 q -0.832031,-0.28711 -1.5,-0.28711 -1.007813,0 -1.599609,0.650391 -0.585938,0.650391 -0.585938,1.763672 0,1.019531 0.609375,1.716797 0.609375,0.691406 1.587891,0.691406 0.773437,0 1.59375,-0.298828 z M 69.757812,56 H 68.84375 v -0.902344 q -0.984375,1.048828 -2.074219,1.048828 -1.716797,0 -1.716797,-2.080078 v -4.171875 h 0.914063 v 3.908203 q 0,0.779297 0.246094,1.166016 0.246093,0.380859 0.832031,0.380859 0.83789,0 1.798828,-1.042968 v -4.41211 h 0.914062 z m 7.69336,0 h -0.914063 v -4.007813 q 0,-1.453125 -0.539062,-1.453125 -0.275391,0 -0.609375,0.503907 -0.328125,0.498047 -0.328125,0.550781 V 56 h -0.908203 v -4.007813 q 0,-1.453125 -0.544922,-1.453125 -0.269531,0 -0.603516,0.503907 -0.328125,0.498047 -0.328125,0.550781 V 56 h -0.914062 v -6.105469 h 0.878906 v 0.919922 q 0.257812,-0.486328 0.609375,-0.773437 0.357422,-0.292969 0.708984,-0.292969 0.369141,0 0.66211,0.292969 0.292968,0.287109 0.404297,0.773437 0.257812,-0.486328 0.615234,-0.773437 0.357422,-0.292969 0.703125,-0.292969 1.107422,0 1.107422,1.980469 z m 6.902344,-3.023438 h -4.189454 q 0,1.03711 0.597657,1.710938 0.603515,0.673828 1.476562,0.673828 0.832031,0 1.716797,-0.298828 l 0.158203,0.732422 q -0.808594,0.363281 -1.886719,0.363281 -1.359375,0 -2.191406,-0.873047 -0.832031,-0.873047 -0.832031,-2.355469 0,-1.453125 0.744141,-2.314453 0.75,-0.867187 1.933593,-0.867187 1.054688,0 1.763672,0.802734 0.708985,0.802735 0.708985,2.138672 z m -0.996094,-0.74414 q 0,-0.714844 -0.445313,-1.201172 -0.445312,-0.492188 -0.996093,-0.492188 -0.708985,0 -1.177735,0.46875 -0.46289,0.46875 -0.515625,1.22461 z M 91.373047,56 h -0.914063 v -3.914063 q 0,-0.814453 -0.263672,-1.177734 -0.257812,-0.369141 -0.814453,-0.369141 -0.83789,0 -1.798828,1.042969 V 56 h -0.914062 v -6.105469 h 0.914062 v 0.896485 q 0.984375,-1.042969 2.074219,-1.042969 1.716797,0 1.716797,2.074219 z m 7.259765,-0.275391 q -0.919921,0.421875 -1.810546,0.421875 -1.634766,0 -1.634766,-1.728515 V 50.685547 H 94.015625 V 49.894531 H 95.1875 v -1.669922 h 0.890625 v 1.669922 h 2.074219 v 0.791016 h -2.074219 v 3.492187 q 0,0.556641 0.246094,0.867188 0.246093,0.304687 0.667968,0.304687 0.75,0 1.482422,-0.333984 z m 6.287108,-6.585937 -0.21094,1.640625 h -0.46875 l -0.21679,-1.640625 v -1.40625 h 0.89648 z m -2.12109,0 -0.2168,1.640625 h -0.46875 l -0.2168,-1.640625 v -1.40625 h 0.90235 z m 7.76367,0.667969 q 0.29883,0 0.50391,0.205078 0.20507,0.199218 0.20507,0.492187 0,0.292969 -0.20507,0.498047 -0.20508,0.199219 -0.50391,0.199219 -0.29297,0 -0.49805,-0.199219 -0.19922,-0.205078 -0.19922,-0.498047 0,-0.292969 0.19922,-0.492187 0.20508,-0.205078 0.49805,-0.205078 z m 0,4.898437 q 0.29883,0 0.50391,0.199219 0.20507,0.199219 0.20507,0.498047 0,0.292968 -0.20507,0.492187 -0.20508,0.199219 -0.50391,0.199219 -0.29297,0 -0.49805,-0.199219 -0.19922,-0.199219 -0.19922,-0.492187 0,-0.298828 0.19922,-0.498047 0.20508,-0.199219 0.49805,-0.199219 z m 16.21289,3.298828 h -0.46289 q -0.84375,0 -1.21875,-0.457031 -0.36914,-0.451172 -0.36914,-1.681641 v -0.5625 q 0,-1.095703 -0.28711,-1.523437 -0.28711,-0.433594 -0.92578,-0.433594 v -0.955078 q 0.63867,0 0.92578,-0.427734 0.28711,-0.433594 0.28711,-1.529297 v -0.56836 q 0,-1.224609 0.36914,-1.675781 0.375,-0.457031 1.21875,-0.457031 h 0.46289 V 48.5 h -0.17578 q -0.54492,0 -0.76172,0.234375 -0.21094,0.234375 -0.21094,1.119141 v 0.375 q 0,1.21289 -0.28125,1.787109 -0.28125,0.574219 -0.95507,0.849609 0.67382,0.28125 0.95507,0.855469 0.28125,0.574219 0.28125,1.787109 v 0.375 q 0,0.884766 0.21094,1.119141 0.2168,0.234375 0.76172,0.234375 h 0.17578 z"
id="text61"
style="font-size:12px;font-family:monospace;opacity:0.5184;fill:#36bfa9"
aria-label=""document": {" />
<path
d="m 66.109375,71.138672 -0.210938,1.640625 h -0.46875 l -0.216796,-1.640625 v -1.40625 h 0.896484 z m -2.121094,0 -0.216797,1.640625 h -0.46875 l -0.216797,-1.640625 v -1.40625 h 0.902344 z m 8.208985,-1.552735 q 0.257812,0 0.439453,0.1875 0.18164,0.181641 0.18164,0.439454 0,0.269531 -0.18164,0.451171 -0.175782,0.181641 -0.439453,0.181641 -0.240235,0 -0.427735,-0.1875 -0.18164,-0.193359 -0.18164,-0.445312 0,-0.251954 0.18164,-0.439454 0.1875,-0.1875 0.427735,-0.1875 z M 72.642578,78 h -0.914062 v -5.314453 h -1.798829 v -0.791016 h 2.712891 z m 8.701172,0 h -0.914063 v -0.878906 q -0.28125,0.451172 -0.808593,0.74414 -0.521485,0.292969 -1.101563,0.292969 -1.048828,0 -1.658203,-0.931641 -0.609375,-0.9375 -0.609375,-2.373046 0,-1.341797 0.632813,-2.220704 0.638671,-0.884765 1.6875,-0.884765 1.154296,0 1.857421,0.9375 V 69.732422 H 81.34375 Z M 80.429687,76.130859 V 73.59375 q -0.65625,-1.054688 -1.582031,-1.054688 -0.755859,0 -1.195312,0.673829 -0.439453,0.667968 -0.439453,1.693359 0,1.054687 0.410156,1.746094 0.416015,0.685547 1.136719,0.685547 0.345703,0 0.697265,-0.1875 0.351563,-0.1875 0.66211,-0.5625 0.310546,-0.375 0.310546,-0.457032 z m 7.283204,-4.992187 -0.210938,1.640625 h -0.46875 l -0.216797,-1.640625 v -1.40625 h 0.896485 z m -2.121094,0 -0.216797,1.640625 h -0.46875 l -0.216797,-1.640625 v -1.40625 h 0.902344 z m 7.763672,0.667969 q 0.298828,0 0.503906,0.205078 0.205078,0.199218 0.205078,0.492187 0,0.292969 -0.205078,0.498047 -0.205078,0.199219 -0.503906,0.199219 -0.292969,0 -0.498047,-0.199219 -0.199219,-0.205078 -0.199219,-0.498047 0,-0.292969 0.199219,-0.492187 0.205078,-0.205078 0.498047,-0.205078 z m 0,4.898437 q 0.298828,0 0.503906,0.199219 0.205078,0.199219 0.205078,0.498047 0,0.292968 -0.205078,0.492187 -0.205078,0.199219 -0.503906,0.199219 -0.292969,0 -0.498047,-0.199219 -0.199219,-0.199219 -0.199219,-0.492187 0,-0.298828 0.199219,-0.498047 0.205078,-0.199219 0.498047,-0.199219 z m 15.960941,-5.566406 -0.21094,1.640625 h -0.46875 l -0.2168,-1.640625 v -1.40625 h 0.89649 z m -2.1211,0 -0.21679,1.640625 h -0.46875 l -0.2168,-1.640625 v -1.40625 h 0.90234 z M 117.37305,78 h -4.34766 v -0.837891 h 1.75195 v -6.421875 l -1.65234,0.826172 v -0.960937 l 1.78711,-0.919922 h 0.82617 v 7.476562 h 1.63477 z m 6.98437,0 h -4.54687 v -0.697266 q 1.72851,-1.927734 2.24414,-2.583984 0.51562,-0.65625 0.83789,-1.376953 0.32226,-0.720703 0.32226,-1.435547 0,-0.691406 -0.42187,-1.089844 -0.41602,-0.398437 -1.17188,-0.398437 -0.58007,0 -1.55859,0.357422 l -0.13477,-0.826172 q 0.88477,-0.375 1.85157,-0.375 1.10742,0 1.78125,0.626953 0.67968,0.621094 0.67968,1.664062 0,0.744141 -0.35156,1.476563 -0.3457,0.732422 -0.89062,1.40625 -0.54492,0.673828 -2.1211,2.414062 h 3.48047 z m 5.56641,-4.441406 q 0.75586,0.210937 1.21289,0.773437 0.45703,0.556641 0.45703,1.253906 0,1.089844 -0.84961,1.833985 -0.84961,0.738281 -2.00391,0.738281 -0.98437,0 -1.76367,-0.433594 l 0.1875,-0.791015 q 0.81446,0.380859 1.61133,0.380859 0.75,0 1.27734,-0.462891 0.53321,-0.46875 0.53321,-1.201171 0,-0.720704 -0.56836,-1.171875 -0.56836,-0.451172 -1.50586,-0.451172 h -0.25195 v -0.791016 h 0.0703 q 0.90234,0 1.48828,-0.421875 0.58594,-0.427734 0.58594,-1.148437 0,-0.585938 -0.42188,-0.914063 -0.42187,-0.333984 -1.16015,-0.333984 -0.63868,0 -1.42969,0.345703 L 127.26367,69.9375 q 0.79688,-0.363281 1.60547,-0.363281 1.10742,0 1.82227,0.585937 0.7207,0.580078 0.7207,1.494141 0,0.632812 -0.43945,1.183594 -0.4336,0.544921 -1.04883,0.685546 z m 9.375,2.53125 H 138.2793 V 78 h -0.96094 v -1.910156 h -3.59766 v -0.732422 l 3.26367,-5.625 h 1.29493 v 5.519531 h 1.01953 z m -1.98047,-0.837891 v -4.570312 l -2.625,4.570312 z m 5.4375,-2.185547 q 0.39844,-0.105469 0.7793,-0.105469 1.17187,0 1.85156,0.720704 0.67969,0.714843 0.67969,1.787109 0,1.125 -0.79102,1.910156 -0.79102,0.779297 -1.92773,0.779297 -1.08399,0 -1.81641,-0.363281 l 0.19336,-0.814453 q 0.79687,0.333984 1.64648,0.333984 0.75586,0 1.21875,-0.486328 0.46875,-0.486328 0.46875,-1.359375 0,-0.826172 -0.43945,-1.271484 -0.43945,-0.445313 -1.13086,-0.445313 -0.50391,0 -0.99609,0.193359 l -0.57422,-0.263671 v -3.949219 h 3.7793 v 0.83789 h -2.94141 z m 9.76758,-1.927734 -0.21094,1.640625 h -0.46875 l -0.2168,-1.640625 v -1.40625 h 0.89649 z m -2.1211,0 -0.21679,1.640625 H 149.7168 L 149.5,71.138672 v -1.40625 h 0.90234 z m 7.82227,7.019531 q -0.30469,-0.03516 -0.50391,-0.251953 -0.19922,-0.216797 -0.19922,-0.492188 0,-0.298828 0.19336,-0.503906 0.19336,-0.205078 0.48633,-0.205078 0.32813,0 0.56836,0.269531 0.24024,0.263672 0.24024,0.638672 0,1.148438 -1.27735,1.792969 l -0.22265,-0.421875 q 0.71484,-0.351563 0.71484,-0.826172 z"
id="text62"
style="font-size:12px;font-family:monospace;opacity:0.5184;fill:#36bfa9"
aria-label=""id": "12345"," />
<path
d="m 66.109375,93.138672 -0.210938,1.640625 h -0.46875 l -0.216796,-1.640625 v -1.40625 h 0.896484 z m -2.121094,0 -0.216797,1.640625 h -0.46875 l -0.216797,-1.640625 v -1.40625 h 0.902344 z m 10.236328,6.585937 q -0.919922,0.421871 -1.810547,0.421871 -1.634765,0 -1.634765,-1.728511 v -3.732422 h -1.171875 v -0.791016 h 1.171875 v -1.669922 h 0.890625 v 1.669922 h 2.074219 v 0.791016 h -2.074219 v 3.492187 q 0,0.556641 0.246094,0.867188 0.246093,0.304687 0.667968,0.304687 0.75,0 1.482422,-0.333984 z M 81.642578,93.894531 79.328125,100 q -0.503906,1.34766 -1.001953,1.88086 -0.492188,0.5332 -1.125,0.5332 -0.5625,0 -1.113281,-0.20508 l 0.152343,-0.73242 q 0.445313,0.14063 0.796875,0.14063 0.492188,0 0.808594,-0.38086 0.316406,-0.38086 0.638672,-1.248049 l -2.291016,-6.09375 h 0.996094 l 1.728516,4.869141 1.728515,-4.869141 z m 3.134766,0.791016 q 0.304687,-0.421875 0.820312,-0.679688 0.521485,-0.257812 1.095703,-0.257812 1.054688,0 1.652344,0.873047 0.603516,0.867187 0.603516,2.261718 0,1.40625 -0.632813,2.34375 -0.626953,0.931638 -1.693359,0.931638 -0.56836,0 -1.066406,-0.281247 -0.492188,-0.287109 -0.779297,-0.755859 v 3.292966 h -0.914063 v -8.519529 h 0.914063 z m 0,0.908203 v 2.537109 q 0.257812,0.515625 0.697265,0.861328 0.439453,0.345704 0.908203,0.345704 0.738282,0 1.171875,-0.691407 0.439454,-0.691406 0.439454,-1.716797 0,-1.054687 -0.416016,-1.722656 -0.416016,-0.667969 -1.160156,-0.667969 -0.966797,0 -1.640625,1.054688 z m 11.173828,1.382812 h -4.189453 q 0,1.03711 0.597656,1.710938 0.603516,0.673828 1.476562,0.673828 0.832032,0 1.716797,-0.298828 l 0.158203,0.732422 q -0.808593,0.363278 -1.886718,0.363278 -1.359375,0 -2.191407,-0.873044 -0.832031,-0.873047 -0.832031,-2.355469 0,-1.453125 0.744141,-2.314453 0.75,-0.867187 1.933594,-0.867187 1.054687,0 1.763671,0.802734 0.708985,0.802735 0.708985,2.138672 z m -0.996094,-0.74414 q 0,-0.714844 -0.445312,-1.201172 -0.445313,-0.492188 -0.996094,-0.492188 -0.708985,0 -1.177735,0.46875 -0.46289,0.46875 -0.515625,1.22461 z m 7.160152,-3.09375 -0.21093,1.640625 h -0.46875 l -0.2168,-1.640625 v -1.40625 h 0.89648 z m -2.121089,0 -0.216797,1.640625 h -0.46875 l -0.216797,-1.640625 v -1.40625 h 0.902344 z m 7.763669,0.667969 q 0.29883,0 0.50391,0.205078 0.20508,0.199218 0.20508,0.492187 0,0.292969 -0.20508,0.498047 -0.20508,0.199219 -0.50391,0.199219 -0.29297,0 -0.49804,-0.199219 -0.19922,-0.205078 -0.19922,-0.498047 0,-0.292969 0.19922,-0.492187 0.20507,-0.205078 0.49804,-0.205078 z m 0,4.898437 q 0.29883,0 0.50391,0.199219 0.20508,0.199219 0.20508,0.498047 0,0.292968 -0.20508,0.492187 -0.20508,0.199219 -0.50391,0.199219 -0.29297,0 -0.49804,-0.199219 -0.19922,-0.199219 -0.19922,-0.492187 0,-0.298828 0.19922,-0.498047 0.20507,-0.199219 0.49804,-0.199219 z m 15.96094,-5.566406 -0.21094,1.640625 h -0.46875 l -0.21679,-1.640625 v -1.40625 h 0.89648 z m -2.12109,0 -0.2168,1.640625 h -0.46875 l -0.2168,-1.640625 v -1.40625 h 0.90235 z m 8.20898,-1.552735 q 0.25781,0 0.43945,0.1875 0.18164,0.181641 0.18164,0.439454 0,0.269531 -0.18164,0.451171 -0.17578,0.181641 -0.43945,0.181641 -0.24023,0 -0.42773,-0.1875 -0.18164,-0.193359 -0.18164,-0.445312 0,-0.251954 0.18164,-0.439454 0.1875,-0.1875 0.42773,-0.1875 z M 130.25195,100 h -0.91406 v -5.314453 h -1.79883 v -0.791016 h 2.71289 z m 8.72461,0 h -0.91406 v -3.914063 q 0,-0.814453 -0.26367,-1.177734 -0.25781,-0.369141 -0.81446,-0.369141 -0.83789,0 -1.79882,1.042969 V 100 h -0.91407 v -6.105469 h 0.91407 v 0.896485 q 0.98437,-1.042969 2.07422,-1.042969 1.71679,0 1.71679,2.074219 z M 146.45312,93.894531 144.13867,100 h -0.83203 l -2.30273,-6.105469 H 142 l 1.72852,4.857422 1.72851,-4.857422 z m 4.5586,-0.146484 q 1.25976,0 2.0039,0.878906 0.74415,0.878906 0.74415,2.314453 0,1.447266 -0.74415,2.332031 -0.74414,0.884763 -2.0039,0.884763 -1.26563,0 -2.00977,-0.878903 -0.73828,-0.884766 -0.73828,-2.337891 0,-1.441406 0.74414,-2.314453 0.74414,-0.878906 2.00391,-0.878906 z m 0,5.613281 q 0.83203,0 1.3125,-0.703125 0.48047,-0.703125 0.48047,-1.705078 0,-1.054688 -0.47461,-1.734375 -0.47461,-0.679688 -1.31836,-0.679688 -0.84961,0 -1.31836,0.673829 -0.46875,0.667968 -0.46875,1.740234 0,1.019531 0.47461,1.716797 0.47461,0.691406 1.3125,0.691406 z m 7.59961,-7.775391 q 0.25781,0 0.43945,0.1875 0.18164,0.181641 0.18164,0.439454 0,0.269531 -0.18164,0.451171 -0.17578,0.181641 -0.43945,0.181641 -0.24024,0 -0.42774,-0.1875 -0.18164,-0.193359 -0.18164,-0.445312 0,-0.251954 0.18164,-0.439454 0.1875,-0.1875 0.42774,-0.1875 z M 159.05664,100 h -0.91406 v -5.314453 h -1.79883 v -0.791016 h 2.71289 z m 8.70117,-0.205078 q -0.79687,0.363278 -1.75195,0.363278 -1.44141,0 -2.30274,-0.873044 -0.85546,-0.878906 -0.85546,-2.332031 0,-1.453125 0.86132,-2.326172 0.86719,-0.878906 2.27344,-0.878906 0.91992,0 1.75195,0.322265 l -0.24023,0.75586 q -0.83203,-0.28711 -1.5,-0.28711 -1.00781,0 -1.59961,0.650391 -0.58594,0.650391 -0.58594,1.763672 0,1.019531 0.60938,1.716797 0.60937,0.691406 1.58789,0.691406 0.77344,0 1.59375,-0.298828 z m 7.40625,-2.81836 h -4.18945 q 0,1.03711 0.59766,1.710938 0.60351,0.673828 1.47656,0.673828 0.83203,0 1.71679,-0.298828 l 0.15821,0.732422 q -0.8086,0.363278 -1.88672,0.363278 -1.35938,0 -2.19141,-0.873044 -0.83203,-0.873047 -0.83203,-2.355469 0,-1.453125 0.74414,-2.314453 0.75,-0.867187 1.9336,-0.867187 1.05468,0 1.76367,0.802734 0.70898,0.802735 0.70898,2.138672 z m -0.99609,-0.74414 q 0,-0.714844 -0.44531,-1.201172 -0.44532,-0.492188 -0.9961,-0.492188 -0.70898,0 -1.17773,0.46875 -0.46289,0.46875 -0.51563,1.22461 z m 7.16015,-3.09375 -0.21093,1.640625 h -0.46875 l -0.2168,-1.640625 v -1.40625 h 0.89648 z m -2.12109,0 -0.2168,1.640625 h -0.46875 l -0.21679,-1.640625 v -1.40625 h 0.90234 z m 7.82227,7.019528 q -0.30469,-0.0351 -0.50391,-0.25195 -0.19922,-0.216797 -0.19922,-0.492188 0,-0.298828 0.19336,-0.503906 0.19336,-0.205078 0.48633,-0.205078 0.32812,0 0.56836,0.269531 0.24023,0.263672 0.24023,0.638672 0,1.148439 -1.27734,1.792969 l -0.22266,-0.42187 q 0.71485,-0.35157 0.71485,-0.82618 z"
id="text63"
style="font-size:12px;font-family:monospace;opacity:0.5184;fill:#36bfa9"
aria-label=""type": "invoice"," />
<path
d="m 66.109375,115.13867 -0.210938,1.64063 h -0.46875 l -0.216796,-1.64063 v -1.40625 h 0.896484 z m -2.121094,0 -0.216797,1.64063 h -0.46875 l -0.216797,-1.64063 v -1.40625 h 0.902344 z m 10.236328,6.58594 q -0.919922,0.42187 -1.810547,0.42187 -1.634765,0 -1.634765,-1.72851 v -3.73242 h -1.171875 v -0.79102 h 1.171875 v -1.66992 h 0.890625 v 1.66992 h 2.074219 v 0.79102 h -2.074219 v 3.49218 q 0,0.55665 0.246094,0.86719 0.246093,0.30469 0.667968,0.30469 0.75,0 1.482422,-0.33398 z M 79,115.74805 q 1.259766,0 2.003906,0.8789 0.744141,0.87891 0.744141,2.31446 0,1.44726 -0.744141,2.33203 -0.74414,0.88476 -2.003906,0.88476 -1.265625,0 -2.009766,-0.8789 -0.738281,-0.88477 -0.738281,-2.33789 0,-1.44141 0.744141,-2.31446 0.74414,-0.8789 2.003906,-0.8789 z m 0,5.61328 q 0.832031,0 1.3125,-0.70313 0.480469,-0.70312 0.480469,-1.70507 0,-1.05469 -0.47461,-1.73438 Q 79.84375,116.53906 79,116.53906 q -0.849609,0 -1.318359,0.67383 -0.46875,0.66797 -0.46875,1.74024 0,1.01953 0.474609,1.71679 0.474609,0.69141 1.3125,0.69141 z m 9.626953,0.36328 q -0.919922,0.42187 -1.810547,0.42187 -1.634765,0 -1.634765,-1.72851 v -3.73242 h -1.171875 v -0.79102 h 1.171875 v -1.66992 h 0.890625 v 1.66992 h 2.074218 v 0.79102 h -2.074218 v 3.49218 q 0,0.55665 0.246093,0.86719 0.246094,0.30469 0.667969,0.30469 0.75,0 1.482422,-0.33398 z M 95.921875,122 h -0.908203 q -0.111328,-0.36914 -0.111328,-0.98437 -0.779297,1.14257 -2.121094,1.14257 -0.679688,0 -1.201172,-0.48047 -0.515625,-0.48632 -0.515625,-1.24804 0,-0.45117 0.181641,-0.79688 0.18164,-0.3457 0.533203,-0.58008 0.351562,-0.24023 0.855469,-0.375 0.503906,-0.14062 1.195312,-0.19335 l 1.025391,-0.082 v -0.29296 q 0,-1.57032 -1.464844,-1.57032 -0.345703,0 -0.878906,0.15235 -0.527344,0.14648 -0.908203,0.35156 l -0.240235,-0.65625 q 1.248047,-0.63867 2.320313,-0.63867 2.085937,0 2.085937,2.20898 v 2.625 q 0,0.79688 0.152344,1.41797 z m -1.066406,-1.81055 v -1.10742 q -1.236328,0.11133 -1.699219,0.21094 -0.457031,0.0937 -0.796875,0.35742 -0.333984,0.26367 -0.333984,0.71484 0,0.41016 0.287109,0.66211 0.287109,0.25196 0.732422,0.25196 0.486328,0 0.966797,-0.28711 0.480468,-0.29297 0.84375,-0.80274 z M 102.52539,122 h -2.49609 v -7.47656 h -1.593753 v -0.79102 h 2.507813 v 7.47656 h 1.58203 z m 6.79102,-6.86133 -0.21094,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.89649 z m -2.1211,0 -0.21679,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.90234 z m 7.76367,0.66797 q 0.29883,0 0.50391,0.20508 0.20508,0.19922 0.20508,0.49219 0,0.29297 -0.20508,0.49804 -0.20508,0.19922 -0.50391,0.19922 -0.29296,0 -0.49804,-0.19922 -0.19922,-0.20507 -0.19922,-0.49804 0,-0.29297 0.19922,-0.49219 0.20508,-0.20508 0.49804,-0.20508 z m 0,4.89844 q 0.29883,0 0.50391,0.19922 0.20508,0.19922 0.20508,0.49804 0,0.29297 -0.20508,0.49219 -0.20508,0.19922 -0.50391,0.19922 -0.29296,0 -0.49804,-0.19922 -0.19922,-0.19922 -0.19922,-0.49219 0,-0.29882 0.19922,-0.49804 0.20508,-0.19922 0.49804,-0.19922 z M 131.77539,122 h -4.34766 v -0.83789 h 1.75196 v -6.42188 l -1.65235,0.82618 v -0.96094 l 1.78711,-0.91992 h 0.82617 v 7.47656 h 1.63477 z m 6.98438,0 h -4.54688 v -0.69727 q 1.72852,-1.92773 2.24414,-2.58398 0.51563,-0.65625 0.83789,-1.37695 0.32227,-0.72071 0.32227,-1.43555 0,-0.69141 -0.42188,-1.08984 -0.41601,-0.39844 -1.17187,-0.39844 -0.58008,0 -1.5586,0.35742 l -0.13476,-0.82617 q 0.88476,-0.375 1.85156,-0.375 1.10742,0 1.78125,0.62695 0.67969,0.6211 0.67969,1.66406 0,0.74415 -0.35156,1.47657 -0.34571,0.73242 -0.89063,1.40625 -0.54492,0.67383 -2.12109,2.41406 h 3.48047 z m 5.5664,-4.44141 q 0.75586,0.21094 1.21289,0.77344 0.45703,0.55664 0.45703,1.25391 0,1.08984 -0.84961,1.83398 -0.84961,0.73828 -2.0039,0.73828 -0.98438,0 -1.76367,-0.43359 l 0.1875,-0.79102 q 0.81445,0.38086 1.61132,0.38086 0.75,0 1.27735,-0.46289 0.5332,-0.46875 0.5332,-1.20117 0,-0.7207 -0.56836,-1.17187 -0.56836,-0.45118 -1.50586,-0.45118 h -0.25195 v -0.79101 h 0.0703 q 0.90235,0 1.48828,-0.42188 0.58594,-0.42773 0.58594,-1.14843 0,-0.58594 -0.42187,-0.91407 -0.42188,-0.33398 -1.16016,-0.33398 -0.63867,0 -1.42969,0.3457 l -0.1289,-0.82617 q 0.79687,-0.36328 1.60546,-0.36328 1.10743,0 1.82227,0.58594 0.7207,0.58007 0.7207,1.49414 0,0.63281 -0.43945,1.18359 -0.43359,0.54492 -1.04883,0.68555 z m 9.375,2.53125 h -1.01953 V 122 h -0.96094 v -1.91016 h -3.59765 v -0.73242 l 3.26367,-5.625 h 1.29492 v 5.51953 h 1.01953 z m -1.98047,-0.83789 v -4.57031 l -2.625,4.57031 z m 6.45703,1.40625 q 0.31055,0 0.52149,0.21094 0.21094,0.21094 0.21094,0.52149 0,0.3164 -0.2168,0.54492 -0.21094,0.22265 -0.51563,0.22265 -0.29882,0 -0.50976,-0.22265 -0.21094,-0.22852 -0.21094,-0.54492 0,-0.31641 0.20508,-0.52149 0.21094,-0.21094 0.51562,-0.21094 z m 6.18164,-3.59179 q 0.39844,-0.10547 0.7793,-0.10547 1.17188,0 1.85156,0.7207 0.67969,0.71484 0.67969,1.78711 0,1.125 -0.79101,1.91016 -0.79102,0.77929 -1.92774,0.77929 -1.08398,0 -1.8164,-0.36328 l 0.19335,-0.81445 q 0.79688,0.33398 1.64649,0.33398 0.75586,0 1.21875,-0.48632 0.46875,-0.48633 0.46875,-1.35938 0,-0.82617 -0.43945,-1.27148 -0.43946,-0.44532 -1.13086,-0.44532 -0.50391,0 -0.9961,0.19336 l -0.57422,-0.26367 v -3.94922 h 3.7793 v 0.83789 h -2.94141 z m 6.7793,0.62695 q 0.77344,-0.62695 1.68164,-0.62695 1.04883,0 1.7461,0.67382 0.70312,0.66797 0.70312,1.72852 0,1.16602 -0.62109,1.92773 -0.6211,0.76172 -1.65821,0.76172 -1.32421,0 -2.09765,-1.21289 -0.77344,-1.21875 -0.77344,-2.97656 0,-1.875 0.80273,-3.13477 0.8086,-1.25976 2.20899,-1.25976 0.9668,0 1.66992,0.28711 l -0.15234,0.85547 q -0.81446,-0.29883 -1.48828,-0.29883 -0.95508,0 -1.48829,0.91406 -0.5332,0.91406 -0.5332,2.36133 z m 0.0293,0.82617 q 0,1.06055 0.49805,1.92774 0.49804,0.86718 1.2539,0.86718 0.63867,0 0.98438,-0.46875 0.3457,-0.46875 0.3457,-1.29492 0,-0.76172 -0.38086,-1.20117 -0.38086,-0.43945 -1.07227,-0.43945 -0.89648,0 -1.6289,0.60937 z m 8.66015,3.63867 q -0.30468,-0.0351 -0.5039,-0.25195 -0.19922,-0.2168 -0.19922,-0.49219 0,-0.29883 0.19336,-0.5039 0.19336,-0.20508 0.48633,-0.20508 0.32812,0 0.56836,0.26953 0.24023,0.26367 0.24023,0.63867 0,1.14844 -1.27734,1.79297 l -0.22266,-0.42187 q 0.71484,-0.35157 0.71484,-0.82618 z"
id="text64"
style="font-size:12px;font-family:monospace;opacity:0.5184;fill:#36bfa9"
aria-label=""total": 1234.56," />
<path
d="m 66.109375,137.13867 -0.210938,1.64063 h -0.46875 l -0.216796,-1.64063 v -1.40625 h 0.896484 z m -2.121094,0 -0.216797,1.64063 h -0.46875 l -0.216797,-1.64063 v -1.40625 h 0.902344 z m 8.208985,-1.55273 q 0.257812,0 0.439453,0.1875 0.18164,0.18164 0.18164,0.43945 0,0.26953 -0.18164,0.45117 -0.175782,0.18164 -0.439453,0.18164 -0.240235,0 -0.427735,-0.1875 -0.18164,-0.19336 -0.18164,-0.44531 0,-0.25195 0.18164,-0.43945 0.1875,-0.1875 0.427735,-0.1875 z M 72.642578,144 h -0.914062 v -5.31445 h -1.798829 v -0.79102 h 2.712891 z m 8.783203,-0.27539 q -0.919922,0.42187 -1.810547,0.42187 -1.634765,0 -1.634765,-1.72851 v -3.73242 h -1.171875 v -0.79102 h 1.171875 v -1.66992 h 0.890625 v 1.66992 h 2.074218 v 0.79102 h -2.074218 v 3.49218 q 0,0.55664 0.246093,0.86719 0.246094,0.30469 0.667969,0.30469 0.75,0 1.482422,-0.33399 z M 88.75,140.97656 h -4.189453 q 0,1.03711 0.597656,1.71094 0.603516,0.67383 1.476563,0.67383 0.832031,0 1.716796,-0.29883 l 0.158204,0.73242 q -0.808594,0.36328 -1.886719,0.36328 -1.359375,0 -2.191406,-0.87304 -0.832032,-0.87305 -0.832032,-2.35547 0,-1.45313 0.744141,-2.31446 0.75,-0.86718 1.933594,-0.86718 1.054687,0 1.763672,0.80273 0.708984,0.80274 0.708984,2.13867 z m -0.996094,-0.74414 q 0,-0.71484 -0.445312,-1.20117 -0.445313,-0.49219 -0.996094,-0.49219 -0.708984,0 -1.177734,0.46875 -0.462891,0.46875 -0.515625,1.22461 z M 96.25,144 h -0.914063 v -4.00781 q 0,-1.45313 -0.539062,-1.45313 -0.275391,0 -0.609375,0.50391 -0.328125,0.49805 -0.328125,0.55078 V 144 h -0.908203 v -4.00781 q 0,-1.45313 -0.544922,-1.45313 -0.269531,0 -0.603516,0.50391 -0.328125,0.49805 -0.328125,0.55078 V 144 h -0.914062 v -6.10547 h 0.878906 v 0.91992 q 0.257813,-0.48633 0.609375,-0.77343 0.357422,-0.29297 0.708984,-0.29297 0.369141,0 0.66211,0.29297 0.292969,0.2871 0.404297,0.77343 0.257812,-0.48633 0.615234,-0.77343 0.357422,-0.29297 0.703125,-0.29297 1.107422,0 1.107422,1.98047 z m 6.08203,-5.23242 q -0.76758,-0.25196 -1.44726,-0.25196 -0.74414,0 -1.177739,0.25196 -0.433594,0.24609 -0.433594,0.66211 0,0.26367 0.199219,0.46289 0.199219,0.19336 0.796874,0.36328 l 0.87305,0.25195 q 0.60351,0.16992 0.98437,0.41016 0.38086,0.23437 0.56836,0.57422 0.19336,0.33398 0.19336,0.77929 0,0.87305 -0.73242,1.38282 -0.73242,0.5039 -1.86328,0.5039 -1.125001,0 -1.857423,-0.33984 l 0.175781,-0.79102 q 0.767578,0.36328 1.646482,0.36328 0.76172,0 1.23633,-0.28125 0.48047,-0.2871 0.48047,-0.75585 0,-0.31641 -0.24023,-0.5625 -0.23438,-0.25196 -1.11329,-0.52149 -0.708981,-0.2168 -1.042965,-0.32226 -0.333984,-0.11133 -0.621094,-0.32227 -0.287109,-0.21094 -0.439453,-0.50391 -0.146484,-0.29297 -0.146484,-0.65625 0,-0.79101 0.691406,-1.2539 0.691406,-0.46289 1.83398,-0.46289 0.73829,0 1.64063,0.25195 z m 6.98438,-1.62891 -0.21094,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.89649 z m -2.1211,0 -0.21679,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.90234 z m 7.76367,0.66797 q 0.29883,0 0.50391,0.20508 0.20508,0.19922 0.20508,0.49219 0,0.29296 -0.20508,0.49804 -0.20508,0.19922 -0.50391,0.19922 -0.29296,0 -0.49804,-0.19922 -0.19922,-0.20508 -0.19922,-0.49804 0,-0.29297 0.19922,-0.49219 0.20508,-0.20508 0.49804,-0.20508 z m 0,4.89844 q 0.29883,0 0.50391,0.19922 0.20508,0.19922 0.20508,0.49804 0,0.29297 -0.20508,0.49219 -0.20508,0.19922 -0.50391,0.19922 -0.29296,0 -0.49804,-0.19922 -0.19922,-0.19922 -0.19922,-0.49219 0,-0.29882 0.19922,-0.49804 0.20508,-0.19922 0.49804,-0.19922 z m 16.18946,2.87695 h -2.2793 v -9.84961 h 2.2793 v 0.80274 h -1.36524 v 8.25586 h 1.36524 z"
id="text65"
style="font-size:12px;font-family:monospace;opacity:0.5184;fill:#36bfa9"
aria-label=""items": [" />
<path
d="m 91.361328,168.00391 h -0.462891 q -0.84375,0 -1.21875,-0.45704 -0.36914,-0.45117 -0.36914,-1.68164 v -0.5625 q 0,-1.0957 -0.28711,-1.52343 -0.287109,-0.4336 -0.925781,-0.4336 v -0.95508 q 0.638672,0 0.925781,-0.42773 0.28711,-0.43359 0.28711,-1.5293 v -0.56836 q 0,-1.22461 0.36914,-1.67578 0.375,-0.45703 1.21875,-0.45703 h 0.462891 V 158.5 h -0.175781 q -0.544922,0 -0.761719,0.23437 -0.210937,0.23438 -0.210937,1.11915 v 0.375 q 0,1.21289 -0.28125,1.7871 -0.28125,0.57422 -0.955079,0.84961 0.673829,0.28125 0.955079,0.85547 0.28125,0.57422 0.28125,1.78711 v 0.375 q 0,0.88477 0.210937,1.11914 0.216797,0.23438 0.761719,0.23438 h 0.175781 z m 14.150392,-8.86524 -0.21094,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.89649 z m -2.12109,0 -0.2168,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.90235 z m 9.53906,1.62891 q -0.76758,-0.25196 -1.44727,-0.25196 -0.74414,0 -1.17773,0.25196 -0.4336,0.24609 -0.4336,0.66211 0,0.26367 0.19922,0.46289 0.19922,0.19336 0.79688,0.36328 l 0.87304,0.25195 q 0.60352,0.16992 0.98438,0.41016 0.38086,0.23437 0.56836,0.57422 0.19336,0.33398 0.19336,0.77929 0,0.87305 -0.73242,1.38282 -0.73243,0.5039 -1.86328,0.5039 -1.125,0 -1.85743,-0.33984 l 0.17578,-0.79102 q 0.76758,0.36328 1.64649,0.36328 0.76172,0 1.23633,-0.28125 0.48047,-0.2871 0.48047,-0.75585 0,-0.31641 -0.24024,-0.5625 -0.23437,-0.25196 -1.11328,-0.52149 -0.70898,-0.2168 -1.04297,-0.32226 -0.33398,-0.11133 -0.62109,-0.32227 -0.28711,-0.21094 -0.43946,-0.50391 -0.14648,-0.29297 -0.14648,-0.65625 0,-0.79101 0.69141,-1.2539 0.6914,-0.46289 1.83398,-0.46289 0.73828,0 1.64063,0.25195 z M 121.36719,166 h -1.20117 l -2.58985,-3.03516 -0.59765,0.51563 V 166 h -0.91407 v -8.26758 h 0.91407 v 4.74024 l 2.86523,-2.57813 h 1.16602 l -2.78321,2.49609 z m 6.59179,0 h -0.91406 v -0.90234 q -0.98437,1.04882 -2.07422,1.04882 -1.71679,0 -1.71679,-2.08007 v -4.17188 h 0.91406 v 3.9082 q 0,0.7793 0.24609,1.16602 0.2461,0.38086 0.83203,0.38086 0.83789,0 1.79883,-1.04297 v -4.41211 h 0.91406 z m 6.35743,-6.86133 -0.21094,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.89649 z m -2.1211,0 -0.21679,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.90234 z m 7.76367,0.66797 q 0.29883,0 0.50391,0.20508 0.20508,0.19922 0.20508,0.49219 0,0.29296 -0.20508,0.49804 -0.20508,0.19922 -0.50391,0.19922 -0.29296,0 -0.49804,-0.19922 -0.19922,-0.20508 -0.19922,-0.49804 0,-0.29297 0.19922,-0.49219 0.20508,-0.20508 0.49804,-0.20508 z m 0,4.89844 q 0.29883,0 0.50391,0.19922 0.20508,0.19922 0.20508,0.49804 0,0.29297 -0.20508,0.49219 -0.20508,0.19922 -0.50391,0.19922 -0.29296,0 -0.49804,-0.19922 -0.19922,-0.19922 -0.19922,-0.49219 0,-0.29882 0.19922,-0.49804 0.20508,-0.19922 0.49804,-0.19922 z m 15.96094,-5.56641 -0.21094,1.64063 h -0.46875 l -0.21679,-1.64063 v -1.40625 h 0.89648 z m -2.12109,0 -0.2168,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.90235 z M 164.90234,166 h -1.00781 l -0.91406,-2.89453 h -2.71289 L 159.3418,166 h -0.9961 l 2.70117,-8.26758 h 1.1543 z m -2.19726,-3.73242 -1.08399,-3.42188 -1.07812,3.42188 z m 6.09375,-4.69336 q 1.3125,0 2.01562,1.13086 0.70899,1.125 0.70899,3.16406 0,1.97461 -0.68555,3.13477 -0.68555,1.15429 -2.03906,1.15429 -1.30664,0 -2.01563,-1.125 -0.70898,-1.125 -0.70898,-3.16406 0,-1.98047 0.68555,-3.13477 0.6914,-1.16015 2.03906,-1.16015 z m 0,7.74023 q 0.86719,0 1.2832,-0.82031 0.42188,-0.82617 0.42188,-2.625 0,-1.80469 -0.42188,-2.61914 -0.41601,-0.82031 -1.2832,-0.82031 -0.85547,0 -1.27735,0.83789 -0.42187,0.83789 -0.42187,2.60156 0,1.78711 0.41601,2.61914 0.42188,0.82617 1.28321,0.82617 z m -0.0234,-4.32422 q 0.36914,0 0.62109,0.25782 0.25782,0.25195 0.25782,0.62109 0,0.38086 -0.25782,0.65625 -0.25781,0.26953 -0.62109,0.26953 -0.35742,0 -0.61523,-0.26953 -0.25196,-0.27539 -0.25196,-0.65625 0,-0.375 0.2461,-0.62695 0.25195,-0.25196 0.62109,-0.25196 z M 176,157.57422 q 1.3125,0 2.01562,1.13086 0.70899,1.125 0.70899,3.16406 0,1.97461 -0.68555,3.13477 -0.68554,1.15429 -2.03906,1.15429 -1.30664,0 -2.01563,-1.125 -0.70898,-1.125 -0.70898,-3.16406 0,-1.98047 0.68555,-3.13477 0.6914,-1.16015 2.03906,-1.16015 z m 0,7.74023 q 0.86719,0 1.2832,-0.82031 0.42188,-0.82617 0.42188,-2.625 0,-1.80469 -0.42188,-2.61914 -0.41601,-0.82031 -1.2832,-0.82031 -0.85547,0 -1.27734,0.83789 -0.42188,0.83789 -0.42188,2.60156 0,1.78711 0.41602,2.61914 0.42187,0.82617 1.2832,0.82617 z m -0.0234,-4.32422 q 0.36914,0 0.6211,0.25782 0.25781,0.25195 0.25781,0.62109 0,0.38086 -0.25781,0.65625 -0.25782,0.26953 -0.6211,0.26953 -0.35742,0 -0.61523,-0.26953 -0.25196,-0.27539 -0.25196,-0.65625 0,-0.375 0.2461,-0.62695 0.25195,-0.25196 0.62109,-0.25196 z M 185.58008,166 h -4.34766 v -0.83789 h 1.75195 v -6.42188 l -1.65234,0.82618 v -0.96094 l 1.78711,-0.91992 h 0.82617 v 7.47656 h 1.63477 z m 6.3457,-6.86133 -0.21094,1.64063 h -0.46875 l -0.21679,-1.64063 v -1.40625 h 0.89648 z m -2.12109,0 -0.2168,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.90235 z m 7.82226,7.01953 q -0.30468,-0.0351 -0.5039,-0.25195 -0.19922,-0.2168 -0.19922,-0.49219 0,-0.29883 0.19336,-0.5039 0.19336,-0.20508 0.48633,-0.20508 0.32812,0 0.56835,0.26953 0.24024,0.26367 0.24024,0.63867 0,1.14844 -1.27734,1.79297 l -0.22266,-0.42188 q 0.71484,-0.35156 0.71484,-0.82617 z"
id="text66"
style="font-size:12px;font-family:monospace;opacity:0.5184;fill:#36bfa9"
aria-label="{ "sku": "A001"," />
<path
d="m 110.10938,181.13867 -0.21094,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.89649 z m -2.1211,0 -0.2168,1.64063 h -0.46875 l -0.21679,-1.64063 v -1.40625 h 0.90234 z m 10.1543,9.27539 h -0.91406 v -3.29297 q -0.28125,0.45118 -0.8086,0.74414 -0.52148,0.29297 -1.10156,0.29297 -1.04883,0 -1.6582,-0.91992 -0.60938,-0.91992 -0.60938,-2.34375 0,-1.36523 0.63281,-2.25586 0.63282,-0.89062 1.6875,-0.89062 1.1543,0 1.85743,0.9375 v -0.79102 h 0.91406 z m -0.91406,-4.2832 v -2.53711 q -0.65625,-1.05469 -1.58204,-1.05469 -0.75585,0 -1.19531,0.68555 -0.43945,0.68555 -0.43945,1.7168 0,1.04882 0.41016,1.72265 0.41601,0.67383 1.13671,0.67383 0.34571,0 0.69727,-0.1875 0.35156,-0.1875 0.66211,-0.5625 0.31055,-0.375 0.31055,-0.45703 z m 8.19726,1.59375 q -0.91992,0.42187 -1.81055,0.42187 -1.63476,0 -1.63476,-1.72851 v -3.73242 h -1.17188 v -0.79102 h 1.17188 v -1.66992 h 0.89062 v 1.66992 h 2.07422 v 0.79102 h -2.07422 v 3.49218 q 0,0.55664 0.2461,0.86719 0.24609,0.30469 0.66797,0.30469 0.75,0 1.48242,-0.33399 z m 7.41797,-5.83008 L 130.5293,188 q -0.50391,1.34766 -1.00196,1.88086 -0.49218,0.5332 -1.125,0.5332 -0.5625,0 -1.11328,-0.20508 l 0.15235,-0.73242 q 0.44531,0.14063 0.79687,0.14063 0.49219,0 0.80859,-0.38086 0.31641,-0.38086 0.63868,-1.24805 l -2.29102,-6.09375 h 0.99609 l 1.72852,4.86914 1.72852,-4.86914 z m 6.07031,-0.75586 -0.21094,1.64063 h -0.46875 l -0.21679,-1.64063 v -1.40625 h 0.89648 z m -2.12109,0 -0.2168,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.90235 z m 7.76367,0.66797 q 0.29883,0 0.50391,0.20508 0.20507,0.19922 0.20507,0.49219 0,0.29296 -0.20507,0.49804 -0.20508,0.19922 -0.50391,0.19922 -0.29297,0 -0.49805,-0.19922 -0.19922,-0.20508 -0.19922,-0.49804 0,-0.29297 0.19922,-0.49219 0.20508,-0.20508 0.49805,-0.20508 z m 0,4.89844 q 0.29883,0 0.50391,0.19922 0.20507,0.19922 0.20507,0.49804 0,0.29297 -0.20507,0.49219 -0.20508,0.19922 -0.50391,0.19922 -0.29297,0 -0.49805,-0.19922 -0.19922,-0.19922 -0.19922,-0.49219 0,-0.29882 0.19922,-0.49804 0.20508,-0.19922 0.49805,-0.19922 z M 161.15625,188 h -4.54688 v -0.69727 q 1.72852,-1.92773 2.24415,-2.58398 0.51562,-0.65625 0.83789,-1.37695 0.32226,-0.72071 0.32226,-1.43555 0,-0.69141 -0.42187,-1.08984 -0.41602,-0.39844 -1.17188,-0.39844 -0.58008,0 -1.55859,0.35742 l -0.13477,-0.82617 q 0.88477,-0.375 1.85156,-0.375 1.10743,0 1.78125,0.62695 0.67969,0.6211 0.67969,1.66406 0,0.74414 -0.35156,1.47657 -0.3457,0.73242 -0.89063,1.40625 -0.54492,0.67382 -2.12109,2.41406 h 3.48047 z m 5.0625,0.1582 q -0.30469,-0.0351 -0.50391,-0.25195 -0.19922,-0.2168 -0.19922,-0.49219 0,-0.29883 0.19336,-0.5039 0.19336,-0.20508 0.48633,-0.20508 0.32813,0 0.56836,0.26953 0.24024,0.26367 0.24024,0.63867 0,1.14844 -1.27735,1.79297 l -0.22265,-0.42188 q 0.71484,-0.35156 0.71484,-0.82617 z"
id="text67"
style="font-size:12px;font-family:monospace;opacity:0.5184;fill:#36bfa9"
aria-label=""qty": 2," />
<path
d="m 110.10938,203.13867 -0.21094,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.89649 z m -2.1211,0 -0.2168,1.64063 h -0.46875 l -0.21679,-1.64063 v -1.40625 h 0.90234 z m 6.38672,1.54688 q 0.30469,-0.42188 0.82031,-0.67969 0.52149,-0.25781 1.09571,-0.25781 1.05468,0 1.65234,0.87304 0.60352,0.86719 0.60352,2.26172 0,1.40625 -0.63282,2.34375 -0.62695,0.93164 -1.69336,0.93164 -0.56836,0 -1.0664,-0.28125 -0.49219,-0.28711 -0.7793,-0.75586 v 3.29297 h -0.91406 v -8.51953 h 0.91406 z m 0,0.9082 v 2.53711 q 0.25781,0.51562 0.69727,0.86133 0.43945,0.3457 0.9082,0.3457 0.73828,0 1.17187,-0.69141 0.43946,-0.6914 0.43946,-1.71679 0,-1.05469 -0.41602,-1.72266 -0.41601,-0.66797 -1.16015,-0.66797 -0.9668,0 -1.64063,1.05469 z m 11.08594,-1.53516 -0.36914,0.87891 q -0.60352,-0.26367 -1.04297,-0.26367 -0.4043,0 -0.79102,0.23437 -0.38672,0.22852 -0.71484,0.66211 -0.32227,0.42774 -0.32227,0.48047 V 210 h -0.9082 v -6.10547 h 0.9082 v 1.23633 q 0.73243,-1.38281 1.89844,-1.38281 0.69141,0 1.3418,0.31054 z m 5.13867,-2.47265 q 0.25781,0 0.43945,0.1875 0.18164,0.18164 0.18164,0.43945 0,0.26953 -0.18164,0.45117 -0.17578,0.18164 -0.43945,0.18164 -0.24024,0 -0.42774,-0.1875 -0.18164,-0.19336 -0.18164,-0.44531 0,-0.25195 0.18164,-0.43945 0.1875,-0.1875 0.42774,-0.1875 z M 131.04492,210 h -0.91406 v -5.31445 h -1.79883 v -0.79102 h 2.71289 z m 8.70117,-0.20508 q -0.79687,0.36328 -1.75195,0.36328 -1.44141,0 -2.30273,-0.87304 -0.85547,-0.87891 -0.85547,-2.33204 0,-1.45312 0.86133,-2.32617 0.86718,-0.8789 2.27343,-0.8789 0.91992,0 1.75196,0.32226 l -0.24024,0.75586 q -0.83203,-0.28711 -1.5,-0.28711 -1.00781,0 -1.59961,0.65039 -0.58594,0.65039 -0.58594,1.76367 0,1.01954 0.60938,1.7168 0.60937,0.69141 1.58789,0.69141 0.77344,0 1.59375,-0.29883 z m 7.40625,-2.81836 h -4.18945 q 0,1.03711 0.59766,1.71094 0.60351,0.67383 1.47656,0.67383 0.83203,0 1.7168,-0.29883 l 0.1582,0.73242 q -0.80859,0.36328 -1.88672,0.36328 -1.35937,0 -2.19141,-0.87304 -0.83203,-0.87305 -0.83203,-2.35547 0,-1.45313 0.74414,-2.31446 0.75,-0.86718 1.9336,-0.86718 1.05468,0 1.76367,0.80273 0.70898,0.80274 0.70898,2.13867 z m -0.99609,-0.74414 q 0,-0.71484 -0.44531,-1.20117 -0.44532,-0.49219 -0.9961,-0.49219 -0.70898,0 -1.17773,0.46875 -0.46289,0.46875 -0.51563,1.22461 z m 7.16016,-3.09375 -0.21094,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.89649 z m -2.1211,0 -0.21679,1.64063 h -0.46875 l -0.2168,-1.64063 v -1.40625 h 0.90234 z m 7.76367,0.66797 q 0.29883,0 0.50391,0.20508 0.20508,0.19922 0.20508,0.49219 0,0.29296 -0.20508,0.49804 -0.20508,0.19922 -0.50391,0.19922 -0.29296,0 -0.49804,-0.19922 -0.19922,-0.20508 -0.19922,-0.49804 0,-0.29297 0.19922,-0.49219 0.20508,-0.20508 0.49804,-0.20508 z m 0,4.89844 q 0.29883,0 0.50391,0.19922 0.20508,0.19922 0.20508,0.49804 0,0.29297 -0.20508,0.49219 -0.20508,0.19922 -0.50391,0.19922 -0.29296,0 -0.49804,-0.19922 -0.19922,-0.19922 -0.19922,-0.49219 0,-0.29882 0.19922,-0.49804 0.20508,-0.19922 0.49804,-0.19922 z m 17.13868,-0.61524 h -1.01954 V 210 h -0.96093 v -1.91016 h -3.59766 v -0.73242 l 3.26367,-5.625 h 1.29492 v 5.51953 h 1.01954 z m -1.98047,-0.83789 v -4.57031 l -2.625,4.57031 z m 8.06836,-1.22461 q -0.71485,0.62696 -1.68164,0.62696 -1.04883,0 -1.75196,-0.66797 -0.69726,-0.67383 -0.69726,-1.73438 0,-1.13672 0.66797,-1.91015 0.67382,-0.7793 1.73437,-0.7793 1.29492,0 2.02149,1.18359 0.72656,1.1836 0.72656,3.00586 0,1.82227 -0.85547,3.11133 -0.84961,1.2832 -2.2793,1.2832 -0.96094,0 -1.66406,-0.29296 l 0.15234,-0.84961 q 0.8086,0.29882 1.48828,0.29882 0.97266,0 1.55274,-0.94336 0.58594,-0.94335 0.58594,-2.33203 z m -0.0234,-0.82617 q 0,-1.11328 -0.45117,-1.95117 -0.45117,-0.84375 -1.1836,-0.84375 -0.66211,0 -1.06054,0.49219 -0.39258,0.48633 -0.39258,1.27148 0,0.7207 0.39844,1.1836 0.40429,0.45703 1.05468,0.45703 0.89649,0 1.5586,-0.55078 z m 5.61328,3.45703 q 0.31055,0 0.52148,0.21094 0.21094,0.21094 0.21094,0.52148 0,0.31641 -0.21679,0.54493 -0.21094,0.22265 -0.51563,0.22265 -0.29883,0 -0.50977,-0.22265 -0.21093,-0.22852 -0.21093,-0.54493 0,-0.3164 0.20508,-0.52148 0.21093,-0.21094 0.51562,-0.21094 z m 8.8125,-2.63086 q -0.71484,0.62696 -1.68164,0.62696 -1.04883,0 -1.75195,-0.66797 -0.69727,-0.67383 -0.69727,-1.73438 0,-1.13672 0.66797,-1.91015 0.67383,-0.7793 1.73437,-0.7793 1.29493,0 2.02149,1.18359 0.72656,1.1836 0.72656,3.00586 0,1.82227 -0.85547,3.11133 -0.84961,1.2832 -2.27929,1.2832 -0.96094,0 -1.66407,-0.29296 l 0.15235,-0.84961 q 0.80859,0.29882 1.48828,0.29882 0.97265,0 1.55273,-0.94336 0.58594,-0.94335 0.58594,-2.33203 z m -0.0234,-0.82617 q 0,-1.11328 -0.45117,-1.95117 -0.45117,-0.84375 -1.18359,-0.84375 -0.66211,0 -1.06055,0.49219 -0.39258,0.48633 -0.39258,1.27148 0,0.7207 0.39844,1.1836 0.4043,0.45703 1.05469,0.45703 0.89648,0 1.55859,-0.55078 z m 7.22461,0.82617 q -0.71484,0.62696 -1.68164,0.62696 -1.04883,0 -1.75195,-0.66797 -0.69727,-0.67383 -0.69727,-1.73438 0,-1.13672 0.66797,-1.91015 0.67383,-0.7793 1.73438,-0.7793 1.29492,0 2.02148,1.18359 0.72656,1.1836 0.72656,3.00586 0,1.82227 -0.85547,3.11133 -0.8496,1.2832 -2.27929,1.2832 -0.96094,0 -1.66406,-0.29296 l 0.15234,-0.84961 q 0.80859,0.29882 1.48828,0.29882 0.97266,0 1.55273,-0.94336 0.58594,-0.94335 0.58594,-2.33203 z m -0.0234,-0.82617 q 0,-1.11328 -0.45117,-1.95117 -0.45117,-0.84375 -1.18359,-0.84375 -0.66211,0 -1.06055,0.49219 -0.39258,0.48633 -0.39258,1.27148 0,0.7207 0.39844,1.1836 0.4043,0.45703 1.05469,0.45703 0.89648,0 1.55859,-0.55078 z m 14.32618,2.14453 q -0.63282,0 -0.92578,0.4336 -0.28711,0.42773 -0.28711,1.52343 v 0.5625 q 0,1.23047 -0.36914,1.68164 -0.36915,0.45704 -1.2129,0.45704 h -0.46875 v -0.76758 h 0.18165 q 0.54492,0 0.75585,-0.23438 0.2168,-0.23437 0.2168,-1.11914 v -0.375 q 0,-1.21289 0.28125,-1.78711 0.28125,-0.57422 0.95508,-0.85547 -0.67383,-0.27539 -0.95508,-0.84961 -0.28125,-0.57421 -0.28125,-1.7871 v -0.375 q 0,-0.88477 -0.2168,-1.11915 Q 215.55469,202.5 215.00977,202.5 h -0.18165 v -0.76758 h 0.46875 q 0.84375,0 1.2129,0.45703 0.36914,0.45117 0.36914,1.67578 v 0.56836 q 0,0.99024 0.25781,1.47657 0.25781,0.48046 0.95508,0.48046 z"
id="text68"
style="font-size:12px;font-family:monospace;opacity:0.5184;fill:#36bfa9"
aria-label=""price": 49.99 }" />
<path
d="m 69.134758,232.43852 h -2.337891 v -0.79101 h 1.423828 v -8.24414 h -1.423828 v -0.79102 h 2.337891 z"
id="text69"
style="font-size:12px;font-family:monospace;opacity:0.5184;fill:#36bfa9"
aria-label="]" />
<path
d="m 48.837124,249.86526 q -0.632813,0 -0.925781,0.4336 -0.28711,0.42773 -0.28711,1.52344 v 0.5625 q 0,1.23046 -0.36914,1.68164 -0.369141,0.45703 -1.212891,0.45703 h -0.46875 v -0.76758 h 0.181641 q 0.544921,0 0.755859,-0.23438 0.216797,-0.23437 0.216797,-1.11914 v -0.375 q 0,-1.21289 0.28125,-1.78711 0.28125,-0.57421 0.955078,-0.85546 -0.673828,-0.27539 -0.955078,-0.84961 -0.28125,-0.57422 -0.28125,-1.78711 v -0.375 q 0,-0.88477 -0.216797,-1.11914 -0.210938,-0.23438 -0.755859,-0.23438 h -0.181641 v -0.76758 h 0.46875 q 0.84375,0 1.212891,0.45703 0.36914,0.45118 0.36914,1.67579 v 0.56836 q 0,0.99023 0.257813,1.47656 0.257812,0.48047 0.955078,0.48047 z"
id="text69-0"
style="font-size:12px;font-family:monospace;opacity:0.5184;fill:#36bfa9"
aria-label="}" />
</g>
<!-- Top-right abstract nodes -->
<g
transform="translate(1886 45)"
class="soft"
id="g78">
<path
class="thin violet dash"
d="M54 0 L98 27 L54 55 L10 27 Z M54 55 L98 83 L54 111 L10 83 Z M54 111 L98 139 L54 167 L10 139 Z"
id="path70" />
<path
id="circle70"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 59,0 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle71"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 103,27 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle72"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 15,27 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle73"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 59,55 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle74"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 103,83 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle75"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 15,83 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle76"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 59,111 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle77"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 103,139 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle78"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 59,167 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
</g>
<!-- Left branching -->
<g
transform="translate(500.93485,87.719043)"
class="soft"
id="g81">
<path
class="thin violet dash"
d="M 0,0 H 29 L 84,-38 M 29,0 H 84 M 29,0 84,38"
id="path78" />
<path
class="thin violet"
d="M 0,-8 A 8,8 0 0 1 8,0 8,8 0 0 1 0,8"
id="path79" />
<path
id="circle79"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 89,-38 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle80"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 89,0 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
<path
id="circle81"
class="dot violet"
style="fill:#ffffff;stroke:#9a8cff;stroke-width:1.8"
d="m 89,38 a 5,5 0 0 1 -5,5 5,5 0 0 1 -5,-5 5,5 0 0 1 5,-5 5,5 0 0 1 5,5 z" />
</g>
<!-- Database left -->
<g
transform="translate(277.91153,346.96751)"
class="soft"
id="g83">
<path
id="ellipse81"
class="thin violet"
style="fill:none;stroke:#9a8cff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="M 56,12 A 28,12 0 0 1 28,24 28,12 0 0 1 0,12 28,12 0 0 1 28,0 28,12 0 0 1 56,12 Z" />
<path
class="thin violet"
d="M 0,12 V 52 Q 0,64 28,64 56,64 56,52 V 12"
id="path81" />
<path
class="thin violet"
d="M 0,31 Q 0,43 28,43 56,43 56,31"
id="path82" />
<path
class="thin violet"
d="M 0,48 Q 0,60 28,60 56,60 56,48"
id="path83" />
</g>
<!-- Filter icon -->
<g
transform="translate(85 490)"
class="soft"
id="g84">
<path
class="thin violet"
d="M0 0 H84 V11 L51 47 V68 H33 V47 L0 11 Z"
id="path84" />
<path
id="rect84"
class="thin violet"
style="fill:none;stroke:#9a8cff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 37,82 h 11 c 1.108,0 2,0.892 2,2 v 14 c 0,1.108 -0.892,2 -2,2 H 37 c -1.108,0 -2,-0.892 -2,-2 V 84 c 0,-1.108 0.892,-2 2,-2 z" />
</g>
<!-- Lower left checklist -->
<g
transform="translate(283 484)"
class="soft"
id="g89">
<path
id="rect85"
class="thin gold goldFill"
style="opacity:0.65;fill:#fff8df;stroke:#ffc83d;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 5,0 h 110 c 2.77,0 5,2.23 5,5 v 108 c 0,2.77 -2.23,5 -5,5 H 5 c -2.77,0 -5,-2.23 -5,-5 V 5 C 0,2.23 2.23,0 5,0 Z" />
<path
id="rect86"
class="thin gold"
style="fill:none;stroke:#ffc83d;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 19,18 h 11 c 1.108,0 2,0.892 2,2 v 11 c 0,1.108 -0.892,2 -2,2 H 19 c -1.108,0 -2,-0.892 -2,-2 V 20 c 0,-1.108 0.892,-2 2,-2 z" />
<path
id="rect87"
class="thin gold"
style="fill:none;stroke:#ffc83d;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 19,50 h 11 c 1.108,0 2,0.892 2,2 v 11 c 0,1.108 -0.892,2 -2,2 H 19 c -1.108,0 -2,-0.892 -2,-2 V 52 c 0,-1.108 0.892,-2 2,-2 z" />
<path
id="rect88"
class="thin gold"
style="fill:none;stroke:#ffc83d;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 19,82 h 11 c 1.108,0 2,0.892 2,2 v 11 c 0,1.108 -0.892,2 -2,2 H 19 c -1.108,0 -2,-0.892 -2,-2 V 84 c 0,-1.108 0.892,-2 2,-2 z" />
<path
class="thin gold"
d="M20 25 L24 30 L31 20 M20 57 L24 62 L31 52"
id="path88" />
<path
class="thin gold"
d="M46 26 H104 M46 58 H104 M46 90 H104"
id="path89" />
</g>
<!-- Lower card group -->
<g
transform="translate(492 500)"
class="soft"
id="g95">
<path
id="rect89"
class="thin blue"
style="fill:none;stroke:#8fb7ff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 5,0 h 224 c 2.77,0 5,2.23 5,5 v 95 c 0,2.77 -2.23,5 -5,5 H 5 c -2.77,0 -5,-2.23 -5,-5 V 5 C 0,2.23 2.23,0 5,0 Z" />
<path
id="rect90"
class="thin blue mutedFill"
style="opacity:0.55;fill:#eef6ff;stroke:#8fb7ff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 34,13 h 37 c 2.216,0 4,1.784 4,4 v 70 c 0,2.216 -1.784,4 -4,4 H 34 c -2.216,0 -4,-1.784 -4,-4 V 17 c 0,-2.216 1.784,-4 4,-4 z" />
<path
id="rect91"
class="thin blue mutedFill"
style="opacity:0.55;fill:#eef6ff;stroke:#8fb7ff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 89,13 h 37 c 2.216,0 4,1.784 4,4 v 70 c 0,2.216 -1.784,4 -4,4 H 89 c -2.216,0 -4,-1.784 -4,-4 V 17 c 0,-2.216 1.784,-4 4,-4 z" />
<path
id="rect92"
class="thin blue mutedFill"
style="opacity:0.55;fill:#eef6ff;stroke:#8fb7ff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 144,13 h 37 c 2.216,0 4,1.784 4,4 v 70 c 0,2.216 -1.784,4 -4,4 h -37 c -2.216,0 -4,-1.784 -4,-4 V 17 c 0,-2.216 1.784,-4 4,-4 z" />
<path
id="rect93"
class="thin blue"
style="fill:none;stroke:#8fb7ff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 43.854568,25.153889 h 18 c 1.662,0 3,1.338 3,3 v 17 c 0,1.662 -1.338,3 -3,3 h -18 c -1.662,0 -3,-1.338 -3,-3 v -17 c 0,-1.662 1.338,-3 3,-3 z" />
<path
id="rect94"
class="thin blue"
style="fill:none;stroke:#8fb7ff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 99.461662,25.628241 h 17.999998 c 1.662,0 3,1.338 3,3 v 17 c 0,1.662 -1.338,3 -3,3 H 99.461662 c -1.662,0 -3,-1.338 -3,-3 v -17 c 0,-1.662 1.338,-3 3,-3 z" />
<path
id="rect95"
class="thin blue"
style="fill:none;stroke:#8fb7ff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 153.64571,25.470123 h 18 c 1.662,0 3,1.338 3,3 v 17 c 0,1.662 -1.338,3 -3,3 h -18 c -1.662,0 -3,-1.338 -3,-3 v -17 c 0,-1.662 1.338,-3 3,-3 z" />
<path
class="thin blue"
d="M30 63 H72 M30 75 H64 M85 63 H127 M85 75 H119 M140 63 H182 M140 75 H174"
id="path95" />
</g>
<!-- Bottom form panel -->
<g
transform="translate(941 485)"
class="soft"
id="g99">
<path
id="rect96"
class="thin violet"
style="fill:none;stroke:#9a8cff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 5,0 h 188 c 2.77,0 5,2.23 5,5 v 127 c 0,2.77 -2.23,5 -5,5 H 5 c -2.77,0 -5,-2.23 -5,-5 V 5 C 0,2.23 2.23,0 5,0 Z" />
<path
id="rect97"
class="thin violet mutedFill"
style="opacity:0.55;fill:#eef6ff;stroke:#9a8cff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 27,26 h 40 c 2.216,0 4,1.784 4,4 v 40 c 0,2.216 -1.784,4 -4,4 H 27 c -2.216,0 -4,-1.784 -4,-4 V 30 c 0,-2.216 1.784,-4 4,-4 z" />
<path
class="thin violet"
d="M 97.430212,43.118897 H 181.43021 M 97.278575,61.754164 181.0896,62.360712 m -83.659388,17.96324 53.954618,0.303274 M 31.430212,92.118897 93.807005,92.422171 M 31.430212,110.11889 h 47.44285"
id="path97"
sodipodi:nodetypes="cccccccccc" />
<path
id="rect98"
class="thin violet"
style="fill:none;stroke:#9a8cff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 114.34003,99.8564 h 24 c 1.662,0 3,1.338 3,3 v 16 c 0,1.662 -1.338,3 -3,3 h -24 c -1.662,0 -3,-1.338 -3,-3 v -16 c 0,-1.662 1.338,-3 3,-3 z" />
<path
id="rect99"
class="thin violet"
style="fill:none;stroke:#9a8cff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 156.34003,99.8564 h 24 c 1.662,0 3,1.338 3,3 v 16 c 0,1.662 -1.338,3 -3,3 h -24 c -1.662,0 -3,-1.338 -3,-3 v -16 c 0,-1.662 1.338,-3 3,-3 z" />
</g>
<!-- Code icon -->
<g
transform="translate(1217 520)"
class="soft"
id="g100">
<path
id="rect100"
class="thin blue dash"
style="fill:none;stroke:#8fb7ff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:6, 8"
d="m 8,0 h 82 c 4.432,0 8,3.568 8,8 v 69 c 0,4.432 -3.568,8 -8,8 H 8 C 3.568,85 0,81.432 0,77 V 8 C 0,3.568 3.568,0 8,0 Z" />
<path
class="thin blue"
stroke-width="4"
d="M34 28 L22 42 L34 56 M65 28 L77 42 L65 56 M55 24 L43 60"
id="path100" />
</g>
<!-- Bottom table -->
<g
transform="translate(1395 490)"
class="soft"
id="g104">
<path
id="rect101"
class="thin mint"
style="fill:none;stroke:#55d5bd;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 4,0 h 160 c 2.216,0 4,1.784 4,4 v 123 c 0,2.216 -1.784,4 -4,4 H 4 c -2.216,0 -4,-1.784 -4,-4 V 4 C 0,1.784 1.784,0 4,0 Z" />
<path
class="thin mint"
d="M0 33 H168 M0 66 H168 M0 98 H168 M48 0 V131 M91 0 V131 M126 0 V131"
id="path101" />
<path
id="rect102"
class="mintFill"
style="opacity:0.7;fill:#dff7f1"
d="m 12.395061,76.083862 h 25 c 1.662,0 3,1.338 3,3 v 8 c 0,1.662 -1.338,3 -3,3 h -25 c -1.662,0 -2.9999995,-1.338 -2.9999995,-3 v -8 c 0,-1.662 1.3379995,-3 2.9999995,-3 z" />
<path
id="rect103"
class="mintFill"
style="opacity:0.7;fill:#dff7f1"
d="m 59.573437,45.101318 h 22 c 1.662,0 3,1.338 3,3 v 7 c 0,1.662 -1.338,3 -3,3 h -22 c -1.662,0 -3,-1.338 -3,-3 v -7 c 0,-1.662 1.338,-3 3,-3 z" />
<path
id="rect103-4"
style="opacity:0.7;fill:#dff7f1"
class="mintFill"
d="m 136.14734,10.237549 h 22 c 1.662,0 3,1.338 3,3 v 7 c 0,1.662 -1.338,3 -3,3 h -22 c -1.662,0 -3,-1.338 -3,-3 v -7 c 0,-1.662 1.338,-3 3,-3 z" />
</g>
<!-- Bottom dotted list -->
<g
transform="translate(1644 486)"
class="soft"
id="g107">
<path
id="rect105"
class="thin violet dash"
style="fill:none;stroke:#9a8cff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:6, 8"
d="m 8,0 h 110 c 4.432,0 8,3.568 8,8 v 116 c 0,4.432 -3.568,8 -8,8 H 8 c -4.432,0 -8,-3.568 -8,-8 V 8 C 0,3.568 3.568,0 8,0 Z" />
<path
id="circle105"
style="fill:#9a8cff"
d="m 24,29 a 4,4 0 0 1 -4,4 4,4 0 0 1 -4,-4 4,4 0 0 1 4,-4 4,4 0 0 1 4,4 z" />
<path
id="circle106"
style="fill:#9a8cff"
d="m 24,51 a 4,4 0 0 1 -4,4 4,4 0 0 1 -4,-4 4,4 0 0 1 4,-4 4,4 0 0 1 4,4 z" />
<path
id="circle107"
style="fill:#9a8cff"
d="m 24,73 a 4,4 0 0 1 -4,4 4,4 0 0 1 -4,-4 4,4 0 0 1 4,-4 4,4 0 0 1 4,4 z" />
<path
class="thin violet"
d="M34 29 H89 M34 51 H97 M34 73 H67"
id="path107" />
<path
id="rect107"
class="thin violet mutedFill"
style="opacity:0.55;fill:#eef6ff;stroke:#9a8cff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 80,83 h 26 c 2.216,0 4,1.784 4,4 v 26 c 0,2.216 -1.784,4 -4,4 H 80 c -2.216,0 -4,-1.784 -4,-4 V 87 c 0,-2.216 1.784,-4 4,-4 z" />
</g>
<!-- Right checklist and radio list -->
<g
transform="translate(1870 454)"
class="soft"
id="g114">
<path
id="rect108"
class="thin gold goldFill"
style="opacity:0.65;fill:#fff8df;stroke:#ffc83d;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 5,0 h 104 c 2.77,0 5,2.23 5,5 v 87 c 0,2.77 -2.23,5 -5,5 H 5 C 2.23,97 0,94.77 0,92 V 5 C 0,2.23 2.23,0 5,0 Z" />
<path
id="rect109"
class="thin gold"
style="fill:none;stroke:#ffc83d;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 16,16 h 10 c 1.108,0 2,0.892 2,2 v 10 c 0,1.108 -0.892,2 -2,2 H 16 c -1.108,0 -2,-0.892 -2,-2 V 18 c 0,-1.108 0.892,-2 2,-2 z" />
<path
id="rect110"
class="thin gold"
style="fill:none;stroke:#ffc83d;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 16,43 h 10 c 1.108,0 2,0.892 2,2 v 10 c 0,1.108 -0.892,2 -2,2 H 16 c -1.108,0 -2,-0.892 -2,-2 V 45 c 0,-1.108 0.892,-2 2,-2 z" />
<path
id="rect111"
class="thin gold"
style="fill:none;stroke:#ffc83d;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 16,70 h 10 c 1.108,0 2,0.892 2,2 v 10 c 0,1.108 -0.892,2 -2,2 H 16 c -1.108,0 -2,-0.892 -2,-2 V 72 c 0,-1.108 0.892,-2 2,-2 z" />
<path
class="thin gold"
d="M17 23 L21 27 L27 18 M17 50 L21 54 L27 45"
id="path111" />
<path
class="thin gold"
d="M42 23 H94 M42 50 H94 M42 77 H94"
id="path112" />
<path
id="rect112"
class="thin gold goldFill"
style="opacity:0.65;fill:#fff8df;stroke:#ffc83d;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 5,113 h 104 c 2.77,0 5,2.23 5,5 v 25 c 0,2.77 -2.23,5 -5,5 H 5 c -2.77,0 -5,-2.23 -5,-5 v -25 c 0,-2.77 2.23,-5 5,-5 z" />
<path
id="circle112"
class="thin gold"
style="fill:none;stroke:#ffc83d;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 24,131 a 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 6,6 0 0 1 6,6 z" />
<path
class="thin gold"
d="M41 131 H96"
id="path113" />
<path
id="rect113"
class="thin gold goldFill"
style="opacity:0.65;fill:#fff8df;stroke:#ffc83d;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 5,156 h 104 c 2.77,0 5,2.23 5,5 v 25 c 0,2.77 -2.23,5 -5,5 H 5 c -2.77,0 -5,-2.23 -5,-5 v -25 c 0,-2.77 2.23,-5 5,-5 z" />
<path
id="circle113"
class="thin gold"
style="fill:none;stroke:#ffc83d;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="m 24,174 a 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 6,6 0 0 1 6,6 z" />
<path
class="thin gold"
d="M41 174 H96"
id="path114" />
</g>
<!-- Right database -->
<g
transform="translate(1914.2928,247.09243)"
class="soft"
id="g117">
<path
id="ellipse114"
class="thin violet"
style="fill:none;stroke:#9a8cff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round"
d="M 56,12 A 28,12 0 0 1 28,24 28,12 0 0 1 0,12 28,12 0 0 1 28,0 28,12 0 0 1 56,12 Z" />
<path
class="thin violet"
d="M 0,12 V 52 Q 0,64 28,64 56,64 56,52 V 12"
id="path115" />
<path
class="thin violet"
d="M 0,31 Q 0,43 28,43 56,43 56,31"
id="path116" />
<path
class="thin violet"
d="M 0,48 Q 0,60 28,60 56,60 56,48"
id="path117" />
</g>
<!-- Main logo mark: exact reused paths from provided SVG -->
<g
transform="matrix(1.02,0,0,1.02,427,234)"
id="g122">
<path
class="cls-1"
d="m 219.22,123.33 v 0 c 1.1,-3.01 2.14,-6.32 3.01,-9.84 v 0 c 12.41,12.03 17.44,22.5 10.3,35.2 -8.18,16.49 -46.08,43.86 -64.13,46.75 2.78,-6.99 39.97,-81.89 -12.42,-126.99 28.42,10.17 49.41,30.51 52.72,33.27 0.02,25.37 -7.7,45.26 -11.52,56.25 22.21,-8.29 31.84,-22.72 22.04,-34.63 v 0 z"
id="path118" />
<path
class="cls-3"
d="m 155.19,27.7 v 0 c -2.52,-1.98 -5.35,-3.99 -8.43,-5.91 v 0 c 15.28,-8.09 26.79,-9.64 36.66,1.08 13.16,12.88 27.48,57.38 24.65,75.44 -5.79,-4.8 -65.54,-63.32 -124.62,-27.43 18.45,-23.89 44.28,-37.56 47.93,-39.86 24.13,7.82 40.66,21.3 49.93,28.34 C 180.29,35.67 169.54,22.05 155.19,27.7 Z"
id="path119" />
<path
class="cls-6"
d="m 45.01,58.88 v 0 c -2.66,1.78 -5.45,3.86 -8.22,6.19 v 0 C 33.82,48.04 35.9,36.62 49.14,30.54 65.45,22.01 112.2,22.14 128.5,30.41 122.14,34.43 48.03,73.17 63.9,140.45 46.89,115.52 41.86,86.73 40.8,82.55 55.7,62.02 73.63,50.46 83.18,43.82 60.33,37.47 44.06,43.48 45,58.88 v 0 z"
id="path120" />
<path
class="cls-5"
d="m 40.29,174 v 0 c 0.87,3.08 1.98,6.37 3.34,9.73 v 0 c -17.11,-2.44 -27.34,-7.95 -29.02,-22.42 -3.07,-18.15 11.5,-62.57 24.4,-75.52 1.86,7.29 15.8,89.75 84.69,95.44 -28.97,8.48 -57.9,4.36 -62.2,4.07 -14.93,-20.51 -20.38,-41.14 -23.74,-52.28 -13.1,19.77 -12.41,37.1 2.52,40.97 h 0.01 z"
id="path121" />
<path
class="cls-2"
d="m 148,213.65 v 0 c 3.2,0.12 6.68,0.08 10.29,-0.17 v 0 C 150.68,229 142.28,237.02 128,234.15 109.79,231.46 72.04,203.88 63.72,187.61 c 7.51,0.48 90.24,12.7 116.94,-51.05 -0.89,30.17 -13.75,56.42 -15.35,60.42 -24.12,7.86 -45.42,6.67 -57.05,6.42 14.75,18.56 31.45,23.26 39.74,10.26 v 0 z"
id="path122" />
</g>
<!-- Main text -->
<path
d="m 722.01562,285.01953 h 21.11329 l 66.66406,106.91406 V 285.01953 h 16.98047 V 417 H 806.73828 L 739.08594,310.17578 V 417 h -17.07032 z m 51.21094,0 z m 89.6836,35.75781 v 63.87891 q 0,7.36719 2.33593,12.03906 4.3125,8.625 16.08203,8.625 16.89063,0 23,-15.09375 3.32422,-8.08594 3.32422,-22.1914 v -47.25782 h 16.17188 V 417 h -15.27344 l 0.17969,-14.19531 q -3.14453,5.48047 -7.81641,9.2539 -9.2539,7.54688 -22.46094,7.54688 -20.57421,0 -28.03125,-13.7461 -4.04296,-7.36718 -4.04296,-19.67578 v -65.40625 z m 22.1914,-2.33593 z m 61.83203,-33.42188 h 96.22271 v 16.17188 h -78.79302 v 40.07031 h 72.86332 v 15.27344 h -72.86332 v 44.74218 h 80.14062 V 417 h -97.57031 z m 48.78516,0 z m 54.91405,35.75781 h 20.9336 l 22.1016,33.8711 22.3711,-33.8711 19.6757,0.44922 -32.4335,46.44922 33.871,49.32422 h -20.664 L 1092.5898,380.88281 1069.4102,417 h -20.4844 l 33.8711,-49.32422 z m 98.3985,-26.86328 h 16.3515 v 26.86328 h 15.3633 v 13.20703 h -15.3633 v 62.80079 q 0,5.03125 3.4141,6.73828 1.8867,0.98828 6.289,0.98828 1.168,0 2.5157,0 1.3476,-0.0899 3.1445,-0.26953 V 417 q -2.7852,0.80859 -5.8398,1.16797 -2.9649,0.35937 -6.4688,0.35937 -11.3203,0 -15.3633,-5.75 -4.0429,-5.83984 -4.0429,-15.09375 v -63.69922 h -13.0274 v -13.20703 h 13.0274 z m 42.3359,26.86328 h 15.3633 v 16.6211 q 1.8867,-4.85157 9.2539,-11.76953 7.3672,-7.00782 16.9804,-7.00782 0.4493,0 1.5274,0.0899 1.0781,0.0898 3.6836,0.35937 v 17.07031 q -1.4375,-0.26953 -2.6953,-0.35937 -1.168,-0.0898 -2.6055,-0.0898 -12.2187,0 -18.7773,7.90625 -6.5586,7.8164 -6.5586,18.05859 V 417 h -16.1719 z m 67.2226,70.61719 q 0,7.00781 5.1211,11.05078 5.1211,4.04297 12.1289,4.04297 8.5352,0 16.5313,-3.95312 13.4766,-6.5586 13.4766,-21.47266 v -13.02734 q -2.9649,1.88671 -7.6368,3.14453 -4.6718,1.25781 -9.164,1.79687 l -9.793,1.25781 q -8.8047,1.16797 -13.207,3.6836 -7.4571,4.22265 -7.4571,13.47656 z m 39.1719,-32.70312 q 5.5703,-0.71875 7.4571,-4.67188 1.0781,-2.15625 1.0781,-6.19922 0,-8.26562 -5.9297,-11.94922 -5.8399,-3.77343 -16.8008,-3.77343 -12.668,0 -17.9687,6.82812 -2.9649,3.77344 -3.8633,11.23047 h -15.0938 q 0.4492,-17.78906 11.5,-24.70703 11.1407,-7.00781 25.7852,-7.00781 16.9805,0 27.582,6.46875 10.5117,6.46875 10.5117,20.125 v 55.43359 q 0,2.51562 0.9883,4.04297 1.0781,1.52734 4.4024,1.52734 1.0781,0 2.4257,-0.0898 1.3477,-0.17969 2.875,-0.44922 v 11.94922 q -3.7734,1.07812 -5.75,1.34765 -1.9765,0.26954 -5.3906,0.26954 -8.3555,0 -12.1289,-5.92969 -1.9766,-3.14453 -2.7851,-8.89453 -4.9415,6.46875 -14.1954,11.23047 -9.2539,4.76171 -20.3945,4.76171 -13.3867,0 -21.9219,-8.08593 -8.4453,-8.17578 -8.4453,-20.39453 0,-13.38672 8.3555,-20.75391 8.3555,-7.36719 21.9219,-9.07422 z m -13.3867,-40.25 z m 95.2539,-0.44922 q 16.2617,0 26.4141,7.90625 10.2422,7.90625 12.3086,27.22265 h -15.7227 q -1.4375,-8.89453 -6.5586,-14.73437 -5.1211,-5.92969 -16.4414,-5.92969 -15.4531,0 -22.1016,15.09375 -4.3125,9.79297 -4.3125,24.16797 0,14.46484 6.1094,24.34766 6.1094,9.88281 19.2266,9.88281 10.0625,0 15.9023,-6.10938 5.9297,-6.19922 8.1758,-16.89062 h 15.7227 q -2.6953,19.13672 -13.4766,28.03125 -10.7812,8.80469 -27.582,8.80469 -18.8672,0 -30.0977,-13.7461 -11.2305,-13.83594 -11.2305,-34.5 0,-25.33594 12.3086,-39.4414 12.3086,-14.10547 31.3555,-14.10547 z m -2.5156,0.44922 z m 54.6445,-24.52735 h 16.3516 v 26.86328 h 15.3633 v 13.20703 h -15.3633 v 62.80079 q 0,5.03125 3.414,6.73828 1.8868,0.98828 6.2891,0.98828 1.168,0 2.5156,0 1.3477,-0.0899 3.1446,-0.26953 V 417 q -2.7852,0.80859 -5.8399,1.16797 -2.9648,0.35937 -6.4687,0.35937 -11.3203,0 -15.3633,-5.75 -4.043,-5.83984 -4.043,-15.09375 v -63.69922 h -13.0273 v -13.20703 h 13.0273 z m 77.8242,126.58985 q -22.8203,0 -33.1523,-12.48829 -10.2422,-12.57812 -10.2422,-30.54687 h 16.8906 q 1.0782,12.48828 4.6719,18.14844 6.2891,10.15234 22.7305,10.15234 12.7578,0 20.4843,-6.82812 7.7266,-6.82813 7.7266,-17.60938 0,-13.29687 -8.1758,-18.59766 -8.0859,-5.30078 -22.5508,-5.30078 -1.6171,0 -3.3242,0.0899 -1.6172,0 -3.3242,0.0898 v -14.28516 q 2.5156,0.26954 4.2227,0.35938 1.707,0.0898 3.6836,0.0898 9.0742,0 14.914,-2.875 10.2422,-5.03125 10.2422,-17.96875 0,-9.61328 -6.8281,-14.82422 -6.8281,-5.21093 -15.9024,-5.21093 -16.1718,0 -22.3711,10.78125 -3.414,5.92968 -3.8632,16.89062 h -15.9922 q 0,-14.375 5.75,-24.4375 9.8828,-17.96875 34.7695,-17.96875 19.6758,0 30.457,8.80469 10.7813,8.71484 10.7813,25.33594 0,11.85937 -6.3789,19.22656 -3.9531,4.58203 -10.2422,7.1875 10.1523,2.78516 15.8125,10.78125 5.75,7.90625 5.75,19.40625 0,18.41797 -12.1289,30.00781 -12.1289,11.58985 -34.4102,11.58985 z"
id="text122"
style="font-size:184px;font-family:Helvetica;-inkscape-font-specification:Helvetica;letter-spacing:-6"
class="cls-4"
aria-label="NuExtract3" />
</svg>
|