{"templateId":"markdown","versions":[{"version":"v0-beta","label":"Beta (v0)","link":"/products/native-api/docs/guides/foundations","default":true,"active":true,"folderId":"e4cb5a06"}],"sharedDataIds":{"sidebar":"sidebar-products/native-api/@v0-beta/sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":["admonition","cards","card"]},"type":"markdown"},"seo":{"title":"Integration Guide","description":"Official Banxa API documentation – on-ramp and off-ramp transfers with identity verification and compliance.","llmstxt":{"hide":false,"sections":[{"title":"Table of contents","includeFiles":["**/*"],"excludeFiles":[]}],"excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"integration-guide","__idx":0},"children":["Integration Guide"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Every Banxa Native integration shares the same core steps: establish an identity, get a price, check eligibility, then execute payment. The payment method guides — bank transfer, Apple Pay, Google Pay, cards — each pick up from where this page leaves off."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Read this page once. Then follow the guide for your payment method."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"prerequisites","__idx":1},"children":["Prerequisites"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Before you begin:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["HMAC API credentials"]}," — API key and secret from the Merchant Dashboard. Required for all server-to-server calls."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["A backend"]}," — all Native API calls use server-to-server HMAC authentication. Client-side API calls are not supported."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["An ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["identityReference"]}," strategy"]}," — a stable per-user identifier that you own. See ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/products/native-api/docs/how-it-works/identity-reference"},"children":["Choosing an identityReference"]}," before proceeding."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["The Banxa React Native SDK"]}," — required for card, Apple Pay, and Google Pay payments. Not required for bank transfers."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Install the SDK and its peer dependencies:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"npm install @banxa-official/react-native-sdk @primer-io/react-native react-native-webview\ncd ios && pod install\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Initialise the SDK once at app startup:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"typescript","header":{"controls":{"copy":{}}},"source":"import { Banxa } from '@banxa-official/react-native-sdk';\n\nconst banxa = new Banxa({\n  apiKey: 'YOUR_API_KEY',\n  partner: 'your-partner-id',\n  environment: 'sandbox', // or 'production'\n});\n","lang":"typescript"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["For full SDK configuration options, see the ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/products/native-api/docs/sdk/sdk-reference"},"children":["React Native SDK Reference"]},"."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"two-integration-approaches","__idx":2},"children":["Two integration approaches"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Before diving into the steps below, decide how much of the flow you want to own. This guide documents the full control approach — steps 1–4 below apply to that path."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"full-control","__idx":3},"children":["Full control"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Your backend handles identity, pricing, and eligibility before payment is invoked. You call the SDK only at the payment step. Any screens for collecting KYC requirements are yours — your design, your brand, your UX."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This is the recommended approach for most Banxa Native integrations."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"quick-start","__idx":4},"children":["Quick start"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Call ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["createOrderAndShowPrimerCheckout"]}," without running eligibility first. The SDK creates the order and Banxa routes the user automatically: verified users go directly to the native payment sheet; users who need KYC are routed to a Banxa-hosted WebView where Banxa handles verification."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"typescript","header":{"controls":{"copy":{}}},"source":"const result = await banxa.buy.createOrderAndShowPrimerCheckout(orderRequest, {\n  paymentMethod: 'applePay', // 'card' | 'applePay' | 'googlePay'\n  callbacks: {\n    onCheckoutComplete: () => { /* payment succeeded */ },\n    onError: (error) => { /* payment failed or unavailable */ },\n    onDismiss: () => { /* user dismissed */ },\n  },\n});\n\nif (isPrimerCheckoutWebViewResult(result)) {\n  // Banxa routed to hosted WebView (KYC required or payment method unavailable natively)\n  // render <CheckoutWebView {...result.webViewProps} />\n}\n","lang":"typescript"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The trade-off: Banxa runs eligibility internally and you don't see the result. If the user needs KYC, it happens in Banxa's WebView — outside your product."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Use quick start when you want the simplest possible path to a working integration — for example, during early development — or when you're explicitly comfortable with Banxa handling KYC for users who need it. It is available for the React Native SDK only. If you choose this path, skip steps 3 and 4 below."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"step-1--establish-an-identityreference","__idx":5},"children":["Step 1 — Establish an identityReference"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Create an identity record for the user before checking eligibility. The minimum required field is ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["identityReference"]}," — include any personal details you already have, as they reduce the likelihood of requirements being returned at eligibility."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"http","header":{"controls":{"copy":{}}},"source":"POST /eapi/v0/identities/basic\nContent-Type: application/json\n\n{\n  \"identityReference\": \"partner-abc123\",\n  \"email\": \"user@example.com\",\n  \"dateOfBirth\": \"1990-01-15\"\n}\n","lang":"http"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["For returning users, reuse the existing ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["identityReference"]},". If you don't have it stored, see ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/products/native-api/docs/how-it-works/identity-reference"},"children":["Choosing an identityReference"]}," for retrieval options and all new-user flow variants."]},{"$$mdtype":"Tag","name":"Admonition","attributes":{"type":"warning","name":"Never recreate an identity"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["If you attempt to create an identity for an email that already exists in Banxa, you will receive a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["422"]}," with code ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["81"]},": ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["\"This identity exists for this reference or email address.\""]}," Do not retry the creation. Instead, retrieve the existing identity using ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /eapi/v0/identities/{identityReference}?email=user@example.com"]}," — Banxa returns the actual ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["identityReference"]}," linked to that email, regardless of what value you supply in the path parameter."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["If you verify users with Sumsub, share the verification token at this point. Token sharing satisfies ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["NAME"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["DOB"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["SELFIE"]},", and ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["DOCUMENT"]}," requirements upfront so eligibility is more likely to return ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["paymentReady: true"]}," on the first check. See ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/products/native-api/docs/how-it-works/kyc-token-sharing"},"children":["KYC Token Sharing"]},"."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"step-2--get-pricing","__idx":6},"children":["Step 2 — Get pricing"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["There are two pricing endpoints:"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Endpoint"},"children":["Endpoint"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Rate locked?"},"children":["Rate locked?"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Expiry to manage?"},"children":["Expiry to manage?"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /eapi/v0/price"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["No"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["No"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /eapi/v0/quote"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes — ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["quoteId"]}," with 3-minute TTL"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Yes"]}]}]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This guide uses indicative pricing. It can be called at any point in the flow and has no expiry to handle. The trade-off is that the rate is not locked — if you display a price and then create the ramp without refreshing, the rate may have moved and the user receives a different amount than shown. Refresh the price close to ramp creation to minimise the gap."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The locked quote (",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /eapi/v0/quote"]},") eliminates this risk but is only supported for bank transfer ramp creation — the React Native SDK and Embedded Payment Button do not accept a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["quoteId"]},"."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"http","header":{"controls":{"copy":{}}},"source":"GET /eapi/v0/price?fiat=AUD&crypto=USDT&blockchain=TRON&method=payid-bank-transfer&transactionType=ONRAMP&fiatAmount=500\n","lang":"http"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Pass ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["fiatAmount"]}," or ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["cryptoAmount"]}," — not both. If you're building a bank transfer integration and want to lock the rate shown on the confirmation screen, see ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/products/native-api/docs/how-it-works/quotes-and-pricing"},"children":["Pricing & Quote ID"]},"."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"step-3--check-eligibility","__idx":7},"children":["Step 3 — Check eligibility"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Before every transaction, confirm the user is cleared to proceed. Eligibility evaluates the user's identity state against the transaction context — amount, payment method, and jurisdiction."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"http","header":{"controls":{"copy":{}}},"source":"POST /eapi/v0/identities/transactions/eligibility\nContent-Type: application/json\n\n{\n  \"identityReference\": \"partner-abc123\",\n  \"method\": \"payid-bank-transfer\",\n  \"transactionType\": \"ONRAMP\",\n  \"fiat\": \"AUD\",\n  \"crypto\": \"USDT\",\n  \"blockchain\": \"TRON\",\n  \"fiatAmount\": \"500\"\n}\n","lang":"http"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response: cleared to proceed"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n  \"paymentReady\": true,\n  \"requirements\": []\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response: additional information required"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n  \"paymentReady\": false,\n  \"requirements\": [\"OCCUPATION\", \"SOURCE_FUNDS\"]\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Do not create a ramp or invoke the SDK when ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["paymentReady"]}," is ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["false"]},". See ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/products/native-api/docs/how-it-works/interpreting-eligibility"},"children":["Interpreting Eligibility"]}," for the full requirements dictionary."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"step-4--handle-requirements-if-any","__idx":8},"children":["Step 4 — Handle requirements (if any)"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When eligibility returns requirements, collect the missing information in your UX and submit it before re-checking."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["For structured fields (",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["NAME"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["DOB"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["ADDRESS"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["OCCUPATION"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["SOURCE_FUNDS"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PURPOSE_OF_TX"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["TIN"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["DOCUMENT"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POA"]},"):"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"http","header":{"controls":{"copy":{}}},"source":"PATCH /eapi/v0/identities\nContent-Type: application/json\n\n{\n  \"identityReference\": \"partner-abc123\",\n  \"email\": \"user@example.com\",\n  \"occupationIndustry\": \"Consulting, IT, or business services\",\n  \"occupation\": \"IT developer\",\n  \"sourceOfFunds\": \"Salary\"\n}\n","lang":"http"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["email"]}," is required on every PATCH request. Partial updates are supported — include only the fields you're updating."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["For ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["SELFIE"]}," — complete KYC provider token sharing first. Token sharing may satisfy multiple requirements in a single call. Then submit any remaining structured fields via PATCH. See ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/products/native-api/docs/how-it-works/kyc-token-sharing"},"children":["KYC Token Sharing"]},"."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["After submitting, re-run eligibility. Repeat until ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["paymentReady: true"]},"."]},{"$$mdtype":"Tag","name":"Diagram","attributes":{"data-language":"mermaid","diagramType":"mermaid","diagramSource":"flowchart TD\n    A[POST /eligibility] --> B{paymentReady?}\n    B -->|true| C([Proceed to payment])\n    B -->|false| D[Collect requirements in your UX]\n    D --> E{SELFIE required?}\n    E -->|Yes| F[POST /identities/share/token\\nKYC token sharing]\n    E -->|No| G[PATCH /identities\\nStructured fields]\n    F --> G\n    G --> A\n","diagramHtml":"<svg id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" class=\"flowchart\" style=\"max-width: 624.2730102539062px;\" viewBox=\"0 0 624.2730102539062 975.40625\" role=\"graphics-document document\" aria-roledescription=\"flowchart-v2\"><style>#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#333;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .error-icon{fill:#552222;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .error-text{fill:#552222;stroke:#552222;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .edge-thickness-normal{stroke-width:1px;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .edge-thickness-thick{stroke-width:3.5px;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .edge-pattern-solid{stroke-dasharray:0;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .edge-pattern-dashed{stroke-dasharray:3;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .edge-pattern-dotted{stroke-dasharray:2;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .marker{fill:#333333;stroke:#333333;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .marker.cross{stroke:#333333;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b p{margin:0;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .label{font-family:\"Redocly Mermaid Sans\",sans-serif;color:#333;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .cluster-label text{fill:#333;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .cluster-label span{color:#333;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .cluster-label span p{background-color:transparent;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .label text,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b span{fill:#333;color:#333;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .node rect,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .node circle,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .node ellipse,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .node polygon,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .node path{fill:#ECECFF;stroke:#9370DB;stroke-width:1px;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .rough-node .label text,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .node .label text,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .image-shape .label,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .icon-shape .label{text-anchor:middle;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .node .katex path{fill:#000;stroke:#000;stroke-width:1px;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .rough-node .label,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .node .label,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .image-shape .label,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .icon-shape .label{text-align:center;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .node.clickable{cursor:pointer;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .root .anchor path{fill:#333333!important;stroke-width:0;stroke:#333333;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .arrowheadPath{fill:#333333;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .edgePath .path{stroke:#333333;stroke-width:1px;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .flowchart-link{stroke:#333333;fill:none;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .edgeLabel{background-color:rgba(232,232,232, 0.8);text-align:center;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .edgeLabel p{background-color:rgba(232,232,232, 0.8);}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .edgeLabel rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .labelBkg{background-color:rgba(232, 232, 232, 0.5);}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .cluster rect{fill:#ffffde;stroke:#aaaa33;stroke-width:1px;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .cluster text{fill:#333;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .cluster span{color:#333;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:12px;background:hsl(80, 100%, 96.2745098039%);border:1px solid #aaaa33;border-radius:2px;pointer-events:none;z-index:100;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .flowchartTitleText{text-anchor:middle;font-size:18px;fill:#333;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b rect.text{fill:none;stroke-width:0;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .icon-shape,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .image-shape{background-color:rgba(232,232,232, 0.8);text-align:center;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .icon-shape p,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .image-shape p{background-color:rgba(232,232,232, 0.8);padding:2px;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .icon-shape .label rect,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .image-shape .label rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .label-icon{display:inline-block;height:1em;overflow:visible;vertical-align:-0.125em;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .node .label-icon path{fill:currentColor;stroke:revert;stroke-width:revert;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b .node .neo-node{stroke:#9370DB;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b [data-look=\"neo\"].node rect,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b [data-look=\"neo\"].cluster rect,#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b [data-look=\"neo\"].node polygon{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b [data-look=\"neo\"].node path{stroke:#9370DB;stroke-width:1px;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b [data-look=\"neo\"].node .outer-path{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b [data-look=\"neo\"].node .neo-line path{stroke:#9370DB;filter:none;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b [data-look=\"neo\"].node circle{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b [data-look=\"neo\"].icon-shape .icon{fill:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b [data-look=\"neo\"].icon-shape .icon-neo path{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g><marker id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-pointEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 0 L 10 5 L 0 10 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-pointStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"4.5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 5 L 10 10 L 10 0 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-pointEnd-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 11.5 14\" refX=\"11.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"10.5\" markerHeight=\"14\" orient=\"auto\"><path d=\"M 0 0 L 11.5 7 L 0 14 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-pointStart-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 11.5 14\" refX=\"1\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11.5\" markerHeight=\"14\" orient=\"auto\"><polygon points=\"0,7 11.5,14 11.5,0\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></polygon></marker><marker id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-circleEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"11\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-circleStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"-1\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-circleEnd-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refY=\"5\" refX=\"12.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"14\" markerHeight=\"14\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-circleStart-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"-2\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"14\" markerHeight=\"14\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-crossEnd\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"12\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-crossStart\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"-1\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-crossEnd-margin\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 15 15\" refX=\"17.7\" refY=\"7.5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto\"><path d=\"M 1,1 L 14,14 M 1,14 L 14,1\" class=\"arrowMarkerPath\" style=\"stroke-width: 2.5;\"></path></marker><marker id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-crossStart-margin\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 15 15\" refX=\"-3.5\" refY=\"7.5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto\"><path d=\"M 1,1 L 14,14 M 1,14 L 14,1\" class=\"arrowMarkerPath\" style=\"stroke-width: 2.5; stroke-dasharray: 1, 0;\"></path></marker><g class=\"root\"><g class=\"clusters\"></g><g class=\"edgePaths\"><path d=\"M269.168,62L262.557,66.167C255.947,70.333,242.726,78.667,236.115,86.333C229.505,94,229.505,101,229.505,104.5L229.505,108\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-L_A_B_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_A_B_0\" data-points=\"W3sieCI6MjY5LjE2Nzk2NjY5NTkzMjI1LCJ5Ijo2Mn0seyJ4IjoyMjkuNTA0NTA1MTU3NDcwNywieSI6ODd9LHsieCI6MjI5LjUwNDUwNTE1NzQ3MDY3LCJ5IjoxMTEuOTk5OTk5OTk5OTk5OTd9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-pointEnd)\"></path><path d=\"M184.531,239.948L169.721,253.611C154.911,267.273,125.29,294.597,110.557,317.093C95.825,339.589,95.98,357.255,96.057,366.089L96.135,374.922\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-L_B_C_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_B_C_0\" data-points=\"W3sieCI6MTg0LjUzMTAyODkzNTkxNTIsInkiOjIzOS45NDgzOTg3Nzg0NDQ1M30seyJ4Ijo5NS42Njk2NzAxMDQ5ODA0NywieSI6MzIxLjkyMTg3NX0seyJ4Ijo5Ni4xNjk2NzAxMDQ5ODA0NywieSI6Mzc4LjkyMTg3NX1d\" data-look=\"classic\" marker-end=\"url(#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-pointEnd)\"></path><path d=\"M274.478,239.948L289.288,253.611C304.098,267.273,333.719,294.597,348.529,313.76C363.339,332.922,363.339,343.922,363.339,349.422L363.339,354.922\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-L_B_D_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_B_D_0\" data-points=\"W3sieCI6Mjc0LjQ3Nzk4MTM3OTAyNjIsInkiOjIzOS45NDgzOTg3Nzg0NDQ1M30seyJ4IjozNjMuMzM5MzQwMjA5OTYwOTQsInkiOjMyMS45MjE4NzV9LHsieCI6MzYzLjMzOTM0MDIwOTk2MDk0LCJ5IjozNTguOTIxODc1fV0=\" data-look=\"classic\" marker-end=\"url(#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-pointEnd)\"></path><path d=\"M363.339,436.922L363.339,441.089C363.339,445.255,363.339,453.589,363.339,461.255C363.339,468.922,363.339,475.922,363.339,479.422L363.339,482.922\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-L_D_E_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_D_E_0\" data-points=\"W3sieCI6MzYzLjMzOTM0MDIwOTk2MDk0LCJ5Ijo0MzYuOTIxODc1fSx7IngiOjM2My4zMzkzNDAyMDk5NjA5NCwieSI6NDYxLjkyMTg3NX0seyJ4IjozNjMuMzM5MzQwMjA5OTYwOTQsInkiOjQ4Ni45MjE4NzV9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-pointEnd)\"></path><path d=\"M399.739,627.007L408.328,639.24C416.917,651.473,434.095,675.94,442.684,693.673C451.273,711.406,451.273,722.406,451.273,727.906L451.273,733.406\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-L_E_F_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_E_F_0\" data-points=\"W3sieCI6Mzk5LjczODY1NjQwNjg0NDAzLCJ5Ijo2MjcuMDA2OTMzODAzMTE2OX0seyJ4Ijo0NTEuMjcyOTMzOTU5OTYwOTQsInkiOjcwMC40MDYyNX0seyJ4Ijo0NTEuMjcyOTMzOTU5OTYwOTQsInkiOjczNy40MDYyNX1d\" data-look=\"classic\" marker-end=\"url(#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-pointEnd)\"></path><path d=\"M326.94,627.007L318.351,639.24C309.762,651.473,292.584,675.94,283.995,702.84C275.406,729.74,275.406,759.073,275.406,786.406C275.406,813.74,275.406,839.073,287.608,856.322C299.81,873.57,324.214,882.734,336.416,887.316L348.618,891.898\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-L_E_G_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_E_G_0\" data-points=\"W3sieCI6MzI2Ljk0MDAyNDAxMzA3Nzk2LCJ5Ijo2MjcuMDA2OTMzODAzMTE2OX0seyJ4IjoyNzUuNDA1NzQ2NDU5OTYwOTQsInkiOjcwMC40MDYyNX0seyJ4IjoyNzUuNDA1NzQ2NDU5OTYwOTQsInkiOjc4OC40MDYyNX0seyJ4IjoyNzUuNDA1NzQ2NDU5OTYwOTQsInkiOjg2NC40MDYyNX0seyJ4IjozNTIuMzYyNzc3NzA5OTYwOTQsInkiOjg5My4zMDQ2MDIwODkxMTF9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-pointEnd)\"></path><path d=\"M451.273,839.406L451.273,843.573C451.273,847.74,451.273,856.073,450.976,863.742C450.678,871.411,450.084,878.416,449.786,881.918L449.489,885.421\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-L_F_G_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_F_G_0\" data-points=\"W3sieCI6NDUxLjI3MjkzMzk1OTk2MDk0LCJ5Ijo4MzkuNDA2MjV9LHsieCI6NDUxLjI3MjkzMzk1OTk2MDk0LCJ5Ijo4NjQuNDA2MjV9LHsieCI6NDQ5LjE1MDQzNjQwMTM2NzIsInkiOjg4OS40MDYyNX1d\" data-look=\"classic\" marker-end=\"url(#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-pointEnd)\"></path><path d=\"M539.316,893.305L552.142,888.488C564.968,883.672,590.621,874.039,603.447,856.556C616.273,839.073,616.273,813.74,616.273,786.406C616.273,759.073,616.273,729.74,616.273,694.199C616.273,658.659,616.273,616.911,616.273,577.164C616.273,537.417,616.273,499.669,616.273,470.129C616.273,440.589,616.273,419.255,616.273,395.922C616.273,372.589,616.273,347.255,616.273,314.012C616.273,280.768,616.273,239.615,616.273,200.461C616.273,161.307,616.273,124.154,580.827,99.519C545.381,74.884,474.488,62.769,439.042,56.711L403.596,50.653\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-L_G_A_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_G_A_0\" data-points=\"W3sieCI6NTM5LjMxNTkwMjcwOTk2MDksInkiOjg5My4zMDQ2MDIwODkxMTF9LHsieCI6NjE2LjI3MjkzMzk1OTk2MDksInkiOjg2NC40MDYyNX0seyJ4Ijo2MTYuMjcyOTMzOTU5OTYwOSwieSI6Nzg4LjQwNjI1fSx7IngiOjYxNi4yNzI5MzM5NTk5NjA5LCJ5Ijo3MDAuNDA2MjV9LHsieCI6NjE2LjI3MjkzMzk1OTk2MDksInkiOjU3NS4xNjQwNjI1fSx7IngiOjYxNi4yNzI5MzM5NTk5NjA5LCJ5Ijo0NjEuOTIxODc1fSx7IngiOjYxNi4yNzI5MzM5NTk5NjA5LCJ5IjozOTcuOTIxODc1fSx7IngiOjYxNi4yNzI5MzM5NTk5NjA5LCJ5IjozMjEuOTIxODc1fSx7IngiOjYxNi4yNzI5MzM5NTk5NjA5LCJ5IjoxOTguNDYwOTM3NX0seyJ4Ijo2MTYuMjcyOTMzOTU5OTYwOSwieSI6ODd9LHsieCI6Mzk5LjY1Mjk0MjY1NzQ3MDcsInkiOjQ5Ljk3OTI2OTM1MDg3NDg5fV0=\" data-look=\"classic\" marker-end=\"url(#diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b_flowchart-v2-pointEnd)\"></path></g><g class=\"edgeLabels\"><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_A_B_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(95.66967010498047, 321.921875)\"><g class=\"label\" data-id=\"L_B_C_0\" transform=\"translate(-15.4921875, -12)\"><foreignObject width=\"30.984375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"><p>true</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(363.33934020996094, 321.921875)\"><g class=\"label\" data-id=\"L_B_D_0\" transform=\"translate(-17.4921875, -12)\"><foreignObject width=\"34.984375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"><p>false</p></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_D_E_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(451.27293395996094, 700.40625)\"><g class=\"label\" data-id=\"L_E_F_0\" transform=\"translate(-12.390625, -12)\"><foreignObject width=\"24.78125\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"><p>Yes</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(275.40574645996094, 788.40625)\"><g class=\"label\" data-id=\"L_E_G_0\" transform=\"translate(-10.8671875, -12)\"><foreignObject width=\"21.734375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"><p>No</p></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_F_G_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_G_A_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g></g><g class=\"nodes\"><g class=\"node default\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-flowchart-A-0\" data-look=\"classic\" transform=\"translate(312.0045051574707, 35)\"><rect class=\"basic label-container\" style=\"\" x=\"-87.6484375\" y=\"-27\" width=\"175.296875\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-57.6484375, -12)\"><rect></rect><foreignObject width=\"115.296875\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>POST /eligibility</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-flowchart-B-1\" data-look=\"classic\" transform=\"translate(229.5045051574707, 198.4609375)\"><polygon points=\"86.4609375,0 172.921875,-86.4609375 86.4609375,-172.921875 0,-86.4609375\" class=\"label-container\" transform=\"translate(-85.9609375, 86.4609375)\"></polygon><g class=\"label\" style=\"\" transform=\"translate(-59.4609375, -12)\"><rect></rect><foreignObject width=\"118.921875\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>paymentReady?</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-flowchart-C-3\" data-look=\"classic\" transform=\"translate(95.66967010498047, 397.921875)\"><g class=\"basic label-container outer-path\"><path d=\"M-68.1796875 -19.5 C-20.266072582025814 -19.5, 27.647542335948373 -19.5, 68.1796875 -19.5 C68.1796875 -19.5, 68.1796875 -19.5, 68.1796875 -19.5 C68.60585617117252 -19.486333600202492, 69.03202484234505 -19.472667200404988, 69.4290567896239 -19.45993515863156 C69.90292537501914 -19.414221626108834, 70.37679396041439 -19.368508093586108, 70.67329215284786 -19.3399052695533 C71.0994045211583 -19.271014726395638, 71.52551688946876 -19.202124183237974, 71.90728075967675 -19.140403561325776 C72.15431325482132 -19.084020006346712, 72.4013457499659 -19.027636451367645, 73.12595188623538 -18.862249829261074 C73.38969180913958 -18.783973204542217, 73.65343173204377 -18.70569657982336, 74.3242977514606 -18.50658706670804 C74.68431712244977 -18.374096610201445, 75.04433649343893 -18.241606153694846, 75.4973940951478 -18.074876768247425 C75.92421161990573 -17.885937311129112, 76.35102914466366 -17.696997854010796, 76.64042041279238 -17.568892924097174 C77.067698657445 -17.345982137546677, 77.49497690209763 -17.123071350996177, 77.74867976407678 -16.990714730406097 C78.17606184849663 -16.731633199254873, 78.60344393291649 -16.47255166810365, 78.8176180736057 -16.342718045390892 C79.16473629816662 -16.100583398442957, 79.51185452272753 -15.85844875149502, 79.84284284457871 -15.627565626425154 C80.18703211560967 -15.35308384203913, 80.53122138664062 -15.078602057653105, 80.82014120850187 -14.848196188198123 C81.02233398253956 -14.664570060544728, 81.22452675657728 -14.480943932891334, 81.74549723676799 -14.007812326905688 C82.01451542562138 -13.730028960110488, 82.28353361447479 -13.452245593315286, 82.61510844296865 -13.10986736009568 C82.87343935912396 -12.806417166534091, 83.1317702752793 -12.502966972972503, 83.42540140812658 -12.158051136245305 C83.63218281718102 -11.880982886286247, 83.83896422623548 -11.603914636327191, 84.17304646464063 -11.156274872382312 C84.43485617706779 -10.754064848342692, 84.69666588949494 -10.351854824303071, 84.85497137860425 -10.108655082055241 C85.00981286469789 -9.83371834409529, 85.16465435079154 -9.558781606135339, 85.4683739742735 -9.019496659696287 C85.6483062567385 -8.645863425223624, 85.8282385392035 -8.27223019075096, 86.01073364880834 -7.893275190886684 C86.17845619112724 -7.47899726866426, 86.34617873344612 -7.064719346441836, 86.47982172997033 -6.734618561215508 C86.59013074700692 -6.402385377256382, 86.70043976404351 -6.0701521932972575, 86.87371063421489 -5.548287939305138 C86.99369076511233 -5.0907517004754865, 87.1136708960098 -4.633215461645836, 87.19078178754556 -4.339158212148133 C87.27383490633936 -3.9126980004248146, 87.35688802513317 -3.486237788701496, 87.42973227658177 -3.1121979531509023 C87.46911682950473 -2.8067391380401414, 87.50850138242768 -2.5012803229293805, 87.58958020250937 -1.872449005199798 C87.61502878072295 -1.4760668578005722, 87.64047735893654 -1.0796847104013467, 87.66966871591342 -0.6250057626472757 C87.66966871591342 -0.1983865867802992, 87.66966871591342 0.22823258908667732, 87.66966871591342 0.625005762647271 C87.6420407602294 1.0553334733102269, 87.61441280454538 1.4856611839731828, 87.58958020250937 1.8724490051997846 C87.52924838488676 2.340370668815808, 87.46891656726415 2.808292332431832, 87.42973227658177 3.1121979531508885 C87.38110429046014 3.361892384356949, 87.33247630433851 3.6115868155630095, 87.19078178754556 4.339158212148129 C87.08838064552009 4.729658147626925, 86.98597950349463 5.12015808310572, 86.87371063421489 5.548287939305125 C86.73624102781905 5.962324490962048, 86.59877142142322 6.376361042618971, 86.47982172997033 6.734618561215495 C86.2994233764548 7.18020598216376, 86.11902502293925 7.625793403112025, 86.01073364880834 7.893275190886679 C85.84187840216691 8.243906723461095, 85.6730231555255 8.59453825603551, 85.4683739742735 9.019496659696284 C85.22788929373074 9.446501561714461, 84.98740461318799 9.873506463732639, 84.85497137860425 10.108655082055236 C84.69133533470558 10.360043987913887, 84.52769929080692 10.61143289377254, 84.17304646464065 11.156274872382301 C83.9653542527012 11.43456351523141, 83.75766204076174 11.712852158080521, 83.42540140812659 12.158051136245302 C83.1109754650683 12.527393740304579, 82.79654952201 12.896736344363855, 82.61510844296866 13.10986736009567 C82.33182313343175 13.402382700348989, 82.04853782389483 13.694898040602308, 81.74549723676799 14.007812326905684 C81.48271414268604 14.246464980091249, 81.2199310486041 14.485117633276811, 80.8201412085019 14.848196188198111 C80.5536530530456 15.060713400626863, 80.28716489758929 15.273230613055617, 79.84284284457871 15.627565626425152 C79.46571399758989 15.890634384439895, 79.08858515060106 16.15370314245464, 78.8176180736057 16.34271804539089 C78.44895590921124 16.56620321594617, 78.08029374481677 16.789688386501453, 77.74867976407678 16.990714730406093 C77.40858332377208 17.168142825470895, 77.06848688346736 17.345570920535692, 76.64042041279238 17.56889292409717 C76.22658515160663 17.752085518237244, 75.81274989042089 17.93527811237732, 75.4973940951478 18.07487676824742 C75.05698053098976 18.236953030995934, 74.61656696683174 18.399029293744448, 74.32429775146062 18.506587066708033 C73.97137439652353 18.611332865920872, 73.61845104158643 18.716078665133708, 73.12595188623541 18.86224982926107 C72.67498293015939 18.96518055063796, 72.22401397408335 19.068111272014853, 71.90728075967677 19.140403561325773 C71.54768916011633 19.1985395424682, 71.18809756055589 19.256675523610628, 70.67329215284788 19.3399052695533 C70.39014882405972 19.367219765951816, 70.10700549527158 19.394534262350337, 69.4290567896239 19.45993515863156 C68.96980505442974 19.47466246789996, 68.5105533192356 19.489389777168363, 68.1796875 19.5 C68.1796875 19.5, 68.1796875 19.5, 68.1796875 19.5 C27.806665750476462 19.5, -12.566355999047076 19.5, -68.1796875 19.5 C-68.57068495379932 19.48746147268703, -68.96168240759862 19.47492294537406, -69.4290567896239 19.45993515863156 C-69.77646395831673 19.426421206886012, -70.12387112700954 19.392907255140464, -70.67329215284786 19.3399052695533 C-70.96069422563107 19.293440331262072, -71.24809629841428 19.246975392970842, -71.90728075967675 19.140403561325773 C-72.20961064064701 19.07139873888116, -72.51194052161728 19.00239391643655, -73.12595188623538 18.862249829261074 C-73.59306480518015 18.723613166844018, -74.0601777241249 18.584976504426958, -74.32429775146059 18.506587066708043 C-74.7267257724811 18.35848983496865, -75.1291537935016 18.210392603229256, -75.4973940951478 18.074876768247425 C-75.76443672786053 17.956664916283742, -76.03147936057327 17.83845306432006, -76.64042041279238 17.568892924097174 C-77.05956662932562 17.350224611407754, -77.47871284585885 17.13155629871833, -77.74867976407678 16.990714730406097 C-78.15493075015756 16.744442995248143, -78.56118173623832 16.498171260090185, -78.81761807360569 16.3427180453909 C-79.08824583903696 16.153939831513195, -79.35887360446823 15.965161617635488, -79.84284284457871 15.627565626425156 C-80.04439863251865 15.466830249167828, -80.24595442045859 15.3060948719105, -80.82014120850187 14.848196188198125 C-81.18404668312408 14.517706864557463, -81.54795215774631 14.187217540916802, -81.74549723676797 14.007812326905697 C-81.92611435559326 13.821310322777355, -82.10673147441854 13.634808318649016, -82.61510844296865 13.109867360095677 C-82.84345018128515 12.841644161256127, -83.07179191960165 12.573420962416577, -83.42540140812658 12.158051136245307 C-83.65906374725503 11.844964888890193, -83.89272608638348 11.53187864153508, -84.17304646464063 11.156274872382316 C-84.3147722948332 10.938545938492393, -84.45649812502579 10.720817004602468, -84.85497137860425 10.108655082055249 C-84.97994977407168 9.886743285467965, -85.10492816953912 9.66483148888068, -85.4683739742735 9.019496659696289 C-85.67012988143001 8.60054620160094, -85.87188578858651 8.18159574350559, -86.01073364880834 7.893275190886686 C-86.17360549660388 7.490978577918737, -86.33647734439943 7.088681964950788, -86.47982172997033 6.73461856121551 C-86.61324668659601 6.3327638502388295, -86.7466716432217 5.930909139262149, -86.87371063421489 5.5482879393051325 C-86.95390431244473 5.242474688054695, -87.0340979906746 4.936661436804257, -87.19078178754556 4.339158212148136 C-87.2397838541251 4.087542956852693, -87.28878592070461 3.835927701557251, -87.42973227658177 3.112197953150904 C-87.49254736138661 2.6250165596460704, -87.55536244619145 2.1378351661412367, -87.58958020250937 1.872449005199809 C-87.60595740420885 1.6173608692910333, -87.62233460590834 1.3622727333822575, -87.66966871591342 0.6250057626472781 C-87.66966871591342 0.23970898033839172, -87.66966871591342 -0.1455878019704947, -87.66966871591342 -0.6250057626472687 C-87.6515248081118 -0.9076117721562388, -87.63338090031019 -1.1902177816652089, -87.58958020250937 -1.8724490051997822 C-87.53765090834008 -2.2752023561777155, -87.4857216141708 -2.6779557071556486, -87.42973227658177 -3.112197953150895 C-87.34177768113935 -3.5638262115374335, -87.25382308569692 -4.015454469923972, -87.19078178754556 -4.339158212148126 C-87.08346683862139 -4.748396622989053, -86.97615188969723 -5.15763503382998, -86.87371063421489 -5.548287939305123 C-86.7649199160091 -5.875948249093909, -86.65612919780332 -6.203608558882695, -86.47982172997033 -6.734618561215485 C-86.36474741523193 -7.018854343429859, -86.24967310049352 -7.303090125644234, -86.01073364880834 -7.893275190886676 C-85.86378440989549 -8.198418429699235, -85.71683517098263 -8.503561668511791, -85.4683739742735 -9.019496659696282 C-85.26810109496888 -9.375101436729734, -85.06782821566426 -9.730706213763186, -84.85497137860425 -10.108655082055243 C-84.63493413889506 -10.446691370520556, -84.41489689918586 -10.78472765898587, -84.17304646464063 -11.156274872382308 C-83.97012918293638 -11.42816554372136, -83.76721190123212 -11.70005621506041, -83.42540140812659 -12.158051136245302 C-83.21556792808535 -12.404533481764993, -83.00573444804411 -12.651015827284686, -82.61510844296866 -13.10986736009567 C-82.34291752852583 -13.390926826547563, -82.07072661408301 -13.671986292999456, -81.74549723676799 -14.007812326905677 C-81.51156637723645 -14.22026214406086, -81.2776355177049 -14.432711961216043, -80.8201412085019 -14.848196188198107 C-80.51964061608021 -15.087837413997796, -80.21914002365853 -15.327478639797487, -79.84284284457871 -15.627565626425149 C-79.47861294740053 -15.88163663543852, -79.11438305022237 -16.13570764445189, -78.81761807360571 -16.342718045390885 C-78.57543616699722 -16.489530140395807, -78.33325426038873 -16.636342235400733, -77.74867976407678 -16.99071473040609 C-77.41062495680345 -17.167077706826152, -77.07257014953012 -17.34344068324621, -76.6404204127924 -17.56889292409717 C-76.28041814058689 -17.728255250914575, -75.92041586838137 -17.88761757773198, -75.49739409514781 -18.07487676824742 C-75.09669329129056 -18.222338368104516, -74.6959924874333 -18.36979996796161, -74.32429775146062 -18.506587066708033 C-73.8645817082107 -18.64302837524586, -73.40486566496075 -18.779469683783685, -73.12595188623541 -18.862249829261067 C-72.70582073989858 -18.9581420218005, -72.28568959356176 -19.05403421433994, -71.90728075967677 -19.140403561325773 C-71.6503560186456 -19.181941160974567, -71.39343127761444 -19.22347876062336, -70.67329215284788 -19.3399052695533 C-70.30413654205066 -19.37551726735233, -69.93498093125345 -19.41112926515136, -69.4290567896239 -19.45993515863156 C-68.97393562336453 -19.474530008593888, -68.51881445710515 -19.489124858556217, -68.1796875 -19.5 C-68.1796875 -19.5, -68.1796875 -19.5, -68.1796875 -19.5\" stroke=\"none\" stroke-width=\"0\" fill=\"#ECECFF\" style=\"\"></path><path d=\"M-68.1796875 -19.5 C-20.102094685798697 -19.5, 27.975498128402606 -19.5, 68.1796875 -19.5 M-68.1796875 -19.5 C-30.03721129773234 -19.5, 8.105264904535318 -19.5, 68.1796875 -19.5 M68.1796875 -19.5 C68.1796875 -19.5, 68.1796875 -19.5, 68.1796875 -19.5 M68.1796875 -19.5 C68.1796875 -19.5, 68.1796875 -19.5, 68.1796875 -19.5 M68.1796875 -19.5 C68.56511283074336 -19.487640159827958, 68.9505381614867 -19.475280319655912, 69.4290567896239 -19.45993515863156 M68.1796875 -19.5 C68.51526474330257 -19.489238690968765, 68.85084198660513 -19.478477381937534, 69.4290567896239 -19.45993515863156 M69.4290567896239 -19.45993515863156 C69.71754736655171 -19.432104819636013, 70.00603794347953 -19.404274480640467, 70.67329215284786 -19.3399052695533 M69.4290567896239 -19.45993515863156 C69.89810118822663 -19.414687009606777, 70.36714558682935 -19.36943886058199, 70.67329215284786 -19.3399052695533 M70.67329215284786 -19.3399052695533 C71.09198212695216 -19.27221472152936, 71.51067210105646 -19.20452417350542, 71.90728075967675 -19.140403561325776 M70.67329215284786 -19.3399052695533 C71.1624714587688 -19.260818553014175, 71.65165076468976 -19.181731836475052, 71.90728075967675 -19.140403561325776 M71.90728075967675 -19.140403561325776 C72.30705174750227 -19.049158442104098, 72.70682273532778 -18.95791332288242, 73.12595188623538 -18.862249829261074 M71.90728075967675 -19.140403561325776 C72.29931291311786 -19.050924780551725, 72.69134506655897 -18.961445999777673, 73.12595188623538 -18.862249829261074 M73.12595188623538 -18.862249829261074 C73.55852531709965 -18.733864305604833, 73.99109874796392 -18.605478781948595, 74.3242977514606 -18.50658706670804 M73.12595188623538 -18.862249829261074 C73.42723799686894 -18.772829693108104, 73.7285241075025 -18.68340955695513, 74.3242977514606 -18.50658706670804 M74.3242977514606 -18.50658706670804 C74.73374018883572 -18.355908464909596, 75.14318262621083 -18.205229863111153, 75.4973940951478 -18.074876768247425 M74.3242977514606 -18.50658706670804 C74.78649893748695 -18.336492757709415, 75.2487001235133 -18.16639844871079, 75.4973940951478 -18.074876768247425 M75.4973940951478 -18.074876768247425 C75.85824501503228 -17.915138770276776, 76.21909593491677 -17.755400772306132, 76.64042041279238 -17.568892924097174 M75.4973940951478 -18.074876768247425 C75.83932356090847 -17.923514736732397, 76.18125302666914 -17.772152705217366, 76.64042041279238 -17.568892924097174 M76.64042041279238 -17.568892924097174 C77.06012144087548 -17.34993516657756, 77.47982246895857 -17.130977409057948, 77.74867976407678 -16.990714730406097 M76.64042041279238 -17.568892924097174 C77.06964486815458 -17.3449668006661, 77.49886932351679 -17.121040677235026, 77.74867976407678 -16.990714730406097 M77.74867976407678 -16.990714730406097 C77.97689843651325 -16.85236723001332, 78.20511710894974 -16.714019729620546, 78.8176180736057 -16.342718045390892 M77.74867976407678 -16.990714730406097 C78.1531699835988 -16.74551038228347, 78.55766020312082 -16.500306034160843, 78.8176180736057 -16.342718045390892 M78.8176180736057 -16.342718045390892 C79.16021809665473 -16.10373510022785, 79.50281811970376 -15.864752155064814, 79.84284284457871 -15.627565626425154 M78.8176180736057 -16.342718045390892 C79.07430805626343 -16.163662225419117, 79.33099803892117 -15.98460640544734, 79.84284284457871 -15.627565626425154 M79.84284284457871 -15.627565626425154 C80.21735730724996 -15.328900308693246, 80.5918717699212 -15.030234990961336, 80.82014120850187 -14.848196188198123 M79.84284284457871 -15.627565626425154 C80.2243185851606 -15.323348874806884, 80.6057943257425 -15.019132123188616, 80.82014120850187 -14.848196188198123 M80.82014120850187 -14.848196188198123 C81.02495904519066 -14.662186048100361, 81.22977688187945 -14.4761759080026, 81.74549723676799 -14.007812326905688 M80.82014120850187 -14.848196188198123 C81.08904740322667 -14.603982697017091, 81.35795359795146 -14.359769205836061, 81.74549723676799 -14.007812326905688 M81.74549723676799 -14.007812326905688 C82.06421385597355 -13.67871125045487, 82.38293047517911 -13.349610174004049, 82.61510844296865 -13.10986736009568 M81.74549723676799 -14.007812326905688 C81.9666158017631 -13.779489254376422, 82.18773436675822 -13.551166181847156, 82.61510844296865 -13.10986736009568 M82.61510844296865 -13.10986736009568 C82.82486627941951 -12.863473869841478, 83.03462411587039 -12.617080379587275, 83.42540140812658 -12.158051136245305 M82.61510844296865 -13.10986736009568 C82.89357486870247 -12.782764851240225, 83.17204129443631 -12.455662342384768, 83.42540140812658 -12.158051136245305 M83.42540140812658 -12.158051136245305 C83.70429087856225 -11.784364653214945, 83.98318034899792 -11.410678170184585, 84.17304646464063 -11.156274872382312 M83.42540140812658 -12.158051136245305 C83.63010270514889 -11.883770046907213, 83.8348040021712 -11.60948895756912, 84.17304646464063 -11.156274872382312 M84.17304646464063 -11.156274872382312 C84.41962676660948 -10.777461312475955, 84.66620706857833 -10.398647752569596, 84.85497137860425 -10.108655082055241 M84.17304646464063 -11.156274872382312 C84.41444228630941 -10.785426066444765, 84.65583810797818 -10.414577260507219, 84.85497137860425 -10.108655082055241 M84.85497137860425 -10.108655082055241 C85.05753591949639 -9.748981227817247, 85.26010046038853 -9.389307373579253, 85.4683739742735 -9.019496659696287 M84.85497137860425 -10.108655082055241 C85.05586691860819 -9.751944707898904, 85.25676245861214 -9.395234333742565, 85.4683739742735 -9.019496659696287 M85.4683739742735 -9.019496659696287 C85.65632319829766 -8.629216074540956, 85.84427242232182 -8.238935489385627, 86.01073364880834 -7.893275190886684 M85.4683739742735 -9.019496659696287 C85.64934818187481 -8.643699845384432, 85.83032238947614 -8.26790303107258, 86.01073364880834 -7.893275190886684 M86.01073364880834 -7.893275190886684 C86.10664802291085 -7.656364832475209, 86.20256239701337 -7.419454474063734, 86.47982172997033 -6.734618561215508 M86.01073364880834 -7.893275190886684 C86.14967291184121 -7.550092524987602, 86.28861217487407 -7.20690985908852, 86.47982172997033 -6.734618561215508 M86.47982172997033 -6.734618561215508 C86.63127962136696 -6.278451523866721, 86.78273751276359 -5.822284486517935, 86.87371063421489 -5.548287939305138 M86.47982172997033 -6.734618561215508 C86.63223550359157 -6.275572558905343, 86.78464927721282 -5.816526556595178, 86.87371063421489 -5.548287939305138 M86.87371063421489 -5.548287939305138 C86.99106272840727 -5.100773543430215, 87.10841482259966 -4.653259147555292, 87.19078178754556 -4.339158212148133 M86.87371063421489 -5.548287939305138 C86.94688693544319 -5.269234987912068, 87.02006323667148 -4.990182036518997, 87.19078178754556 -4.339158212148133 M87.19078178754556 -4.339158212148133 C87.25926455496743 -3.987513675274865, 87.3277473223893 -3.6358691384015973, 87.42973227658177 -3.1121979531509023 M87.19078178754556 -4.339158212148133 C87.27385313478128 -3.912604401228172, 87.35692448201699 -3.486050590308211, 87.42973227658177 -3.1121979531509023 M87.42973227658177 -3.1121979531509023 C87.47405884844643 -2.76840981504033, 87.51838542031108 -2.4246216769297577, 87.58958020250937 -1.872449005199798 M87.42973227658177 -3.1121979531509023 C87.4866350055716 -2.670871623820671, 87.54353773456141 -2.22954529449044, 87.58958020250937 -1.872449005199798 M87.58958020250937 -1.872449005199798 C87.61439303009416 -1.4859691870127731, 87.63920585767895 -1.0994893688257483, 87.66966871591342 -0.6250057626472757 M87.58958020250937 -1.872449005199798 C87.62043727483974 -1.3918251962735877, 87.65129434717014 -0.9112013873473774, 87.66966871591342 -0.6250057626472757 M87.66966871591342 -0.6250057626472757 C87.66966871591342 -0.24345976566607164, 87.66966871591342 0.13808623131513242, 87.66966871591342 0.625005762647271 M87.66966871591342 -0.6250057626472757 C87.66966871591342 -0.24340344486307813, 87.66966871591342 0.13819887292111943, 87.66966871591342 0.625005762647271 M87.66966871591342 0.625005762647271 C87.64338137622929 1.0344522969862562, 87.61709403654515 1.4438988313252414, 87.58958020250937 1.8724490051997846 M87.66966871591342 0.625005762647271 C87.6442284339609 1.021258689083638, 87.61878815200839 1.417511615520005, 87.58958020250937 1.8724490051997846 M87.58958020250937 1.8724490051997846 C87.53896864366122 2.264982261243306, 87.48835708481306 2.6575155172868272, 87.42973227658177 3.1121979531508885 M87.58958020250937 1.8724490051997846 C87.54421310953958 2.224307219527634, 87.4988460165698 2.5761654338554836, 87.42973227658177 3.1121979531508885 M87.42973227658177 3.1121979531508885 C87.37312658336457 3.402856224203778, 87.31652089014734 3.693514495256667, 87.19078178754556 4.339158212148129 M87.42973227658177 3.1121979531508885 C87.37633228173668 3.386395640587572, 87.32293228689157 3.6605933280242557, 87.19078178754556 4.339158212148129 M87.19078178754556 4.339158212148129 C87.06473070088775 4.81984563646091, 86.93867961422994 5.300533060773691, 86.87371063421489 5.548287939305125 M87.19078178754556 4.339158212148129 C87.12219361185785 4.60071465234875, 87.05360543617014 4.862271092549372, 86.87371063421489 5.548287939305125 M86.87371063421489 5.548287939305125 C86.72578232730677 5.993824430537397, 86.57785402039866 6.439360921769669, 86.47982172997033 6.734618561215495 M86.87371063421489 5.548287939305125 C86.75084085134614 5.918352148664461, 86.62797106847738 6.288416358023797, 86.47982172997033 6.734618561215495 M86.47982172997033 6.734618561215495 C86.38556805361627 6.96742696408089, 86.2913143772622 7.200235366946286, 86.01073364880834 7.893275190886679 M86.47982172997033 6.734618561215495 C86.38008239337324 6.980976650939164, 86.28034305677618 7.227334740662834, 86.01073364880834 7.893275190886679 M86.01073364880834 7.893275190886679 C85.82643132460666 8.275982910529475, 85.64212900040499 8.658690630172272, 85.4683739742735 9.019496659696284 M86.01073364880834 7.893275190886679 C85.82417920897686 8.280659476822319, 85.63762476914538 8.668043762757957, 85.4683739742735 9.019496659696284 M85.4683739742735 9.019496659696284 C85.22617246528014 9.449549964476237, 84.98397095628678 9.879603269256188, 84.85497137860425 10.108655082055236 M85.4683739742735 9.019496659696284 C85.27891193693121 9.355905692109179, 85.0894498995889 9.692314724522074, 84.85497137860425 10.108655082055236 M84.85497137860425 10.108655082055236 C84.67696695009923 10.382117685120766, 84.4989625215942 10.655580288186298, 84.17304646464065 11.156274872382301 M84.85497137860425 10.108655082055236 C84.58681653128846 10.520612937191096, 84.31866168397268 10.932570792326954, 84.17304646464065 11.156274872382301 M84.17304646464065 11.156274872382301 C83.9138871946999 11.503524684207724, 83.65472792475913 11.850774496033145, 83.42540140812659 12.158051136245302 M84.17304646464065 11.156274872382301 C83.91232531748884 11.505617457380602, 83.65160417033701 11.854960042378902, 83.42540140812659 12.158051136245302 M83.42540140812659 12.158051136245302 C83.14606125143946 12.486179979195198, 82.86672109475234 12.814308822145096, 82.61510844296866 13.10986736009567 M83.42540140812659 12.158051136245302 C83.13522802007843 12.498905309180186, 82.84505463203028 12.839759482115072, 82.61510844296866 13.10986736009567 M82.61510844296866 13.10986736009567 C82.41732514604503 13.314094852479984, 82.2195418491214 13.5183223448643, 81.74549723676799 14.007812326905684 M82.61510844296866 13.10986736009567 C82.43880507037125 13.291915067078587, 82.26250169777383 13.473962774061505, 81.74549723676799 14.007812326905684 M81.74549723676799 14.007812326905684 C81.42909562156726 14.295159902303, 81.11269400636652 14.582507477700318, 80.8201412085019 14.848196188198111 M81.74549723676799 14.007812326905684 C81.50231554028531 14.228663509416151, 81.25913384380263 14.44951469192662, 80.8201412085019 14.848196188198111 M80.8201412085019 14.848196188198111 C80.4906167347574 15.110983186994822, 80.1610922610129 15.373770185791532, 79.84284284457871 15.627565626425152 M80.8201412085019 14.848196188198111 C80.60472347653973 15.019986096931337, 80.38930574457757 15.191776005664565, 79.84284284457871 15.627565626425152 M79.84284284457871 15.627565626425152 C79.53466768856906 15.842535274569999, 79.22649253255939 16.057504922714845, 78.8176180736057 16.34271804539089 M79.84284284457871 15.627565626425152 C79.61470333043161 15.786705875493777, 79.38656381628451 15.945846124562399, 78.8176180736057 16.34271804539089 M78.8176180736057 16.34271804539089 C78.5544734990757 16.502237832880144, 78.2913289245457 16.6617576203694, 77.74867976407678 16.990714730406093 M78.8176180736057 16.34271804539089 C78.39298392843993 16.600133759617606, 77.96834978327415 16.857549473844326, 77.74867976407678 16.990714730406093 M77.74867976407678 16.990714730406093 C77.35892518467674 17.19404944482937, 76.9691706052767 17.397384159252653, 76.64042041279238 17.56889292409717 M77.74867976407678 16.990714730406093 C77.47111537088995 17.135519896543187, 77.19355097770311 17.28032506268028, 76.64042041279238 17.56889292409717 M76.64042041279238 17.56889292409717 C76.33566217639509 17.70380035501837, 76.03090393999781 17.83870778593957, 75.4973940951478 18.07487676824742 M76.64042041279238 17.56889292409717 C76.38781166353495 17.68071532402113, 76.13520291427753 17.792537723945085, 75.4973940951478 18.07487676824742 M75.4973940951478 18.07487676824742 C75.0978234190822 18.2219224706304, 74.69825274301661 18.368968173013382, 74.32429775146062 18.506587066708033 M75.4973940951478 18.07487676824742 C75.25984952443056 18.162295366109305, 75.02230495371332 18.249713963971192, 74.32429775146062 18.506587066708033 M74.32429775146062 18.506587066708033 C74.02591542956628 18.595145373605504, 73.72753310767193 18.68370368050298, 73.12595188623541 18.86224982926107 M74.32429775146062 18.506587066708033 C73.94039664602043 18.620526899664657, 73.55649554058024 18.734466732621282, 73.12595188623541 18.86224982926107 M73.12595188623541 18.86224982926107 C72.6674919342222 18.966890321577306, 72.20903198220898 19.071530813893542, 71.90728075967677 19.140403561325773 M73.12595188623541 18.86224982926107 C72.64075505868169 18.97299283894501, 72.15555823112797 19.083735848628947, 71.90728075967677 19.140403561325773 M71.90728075967677 19.140403561325773 C71.53099186307008 19.201239031965166, 71.1547029664634 19.26207450260456, 70.67329215284788 19.3399052695533 M71.90728075967677 19.140403561325773 C71.46626455661831 19.211703640904528, 71.02524835355986 19.283003720483286, 70.67329215284788 19.3399052695533 M70.67329215284788 19.3399052695533 C70.20547036434243 19.3850354748524, 69.73764857583699 19.430165680151504, 69.4290567896239 19.45993515863156 M70.67329215284788 19.3399052695533 C70.35054026467873 19.37104075603904, 70.02778837650958 19.40217624252478, 69.4290567896239 19.45993515863156 M69.4290567896239 19.45993515863156 C69.07092387928749 19.471419784002627, 68.71279096895108 19.482904409373692, 68.1796875 19.5 M69.4290567896239 19.45993515863156 C69.07444454377462 19.471306883145083, 68.71983229792532 19.482678607658602, 68.1796875 19.5 M68.1796875 19.5 C68.1796875 19.5, 68.1796875 19.5, 68.1796875 19.5 M68.1796875 19.5 C68.1796875 19.5, 68.1796875 19.5, 68.1796875 19.5 M68.1796875 19.5 C33.041085737755736 19.5, -2.0975160244885274 19.5, -68.1796875 19.5 M68.1796875 19.5 C30.603322572859078 19.5, -6.973042354281844 19.5, -68.1796875 19.5 M-68.1796875 19.5 C-68.59891048554391 19.486556334821646, -69.01813347108781 19.473112669643292, -69.4290567896239 19.45993515863156 M-68.1796875 19.5 C-68.48830248812423 19.49010331801349, -68.79691747624845 19.480206636026978, -69.4290567896239 19.45993515863156 M-69.4290567896239 19.45993515863156 C-69.87642897432245 19.41677770201746, -70.32380115902099 19.373620245403362, -70.67329215284786 19.3399052695533 M-69.4290567896239 19.45993515863156 C-69.8962625512619 19.414864380703477, -70.36346831289988 19.369793602775395, -70.67329215284786 19.3399052695533 M-70.67329215284786 19.3399052695533 C-71.05465020717875 19.278250256804963, -71.43600826150964 19.216595244056624, -71.90728075967675 19.140403561325773 M-70.67329215284786 19.3399052695533 C-70.96486157042429 19.292766587274144, -71.25643098800072 19.245627904994993, -71.90728075967675 19.140403561325773 M-71.90728075967675 19.140403561325773 C-72.33683083447285 19.042361559829764, -72.76638090926895 18.944319558333756, -73.12595188623538 18.862249829261074 M-71.90728075967675 19.140403561325773 C-72.278201911624 19.055743228880537, -72.64912306357124 18.971082896435302, -73.12595188623538 18.862249829261074 M-73.12595188623538 18.862249829261074 C-73.58430187305822 18.726213959100235, -74.04265185988106 18.590178088939393, -74.32429775146059 18.506587066708043 M-73.12595188623538 18.862249829261074 C-73.47966565360241 18.757269439787997, -73.83337942096942 18.65228905031492, -74.32429775146059 18.506587066708043 M-74.32429775146059 18.506587066708043 C-74.63519412937536 18.392174325740793, -74.94609050729014 18.277761584773547, -75.4973940951478 18.074876768247425 M-74.32429775146059 18.506587066708043 C-74.61792184268492 18.398530686906142, -74.91154593390927 18.29047430710424, -75.4973940951478 18.074876768247425 M-75.4973940951478 18.074876768247425 C-75.82105080056893 17.931603545692536, -76.14470750599004 17.78833032313765, -76.64042041279238 17.568892924097174 M-75.4973940951478 18.074876768247425 C-75.76268617594027 17.95743983369056, -76.02797825673277 17.8400028991337, -76.64042041279238 17.568892924097174 M-76.64042041279238 17.568892924097174 C-77.05127922319554 17.35454814587748, -77.46213803359868 17.140203367657783, -77.74867976407678 16.990714730406097 M-76.64042041279238 17.568892924097174 C-77.07816549224766 17.340521596534458, -77.51591057170295 17.112150268971746, -77.74867976407678 16.990714730406097 M-77.74867976407678 16.990714730406097 C-78.0783397863289 16.79087288761954, -78.407999808581 16.591031044832985, -78.81761807360569 16.3427180453909 M-77.74867976407678 16.990714730406097 C-78.05952237185558 16.802280114856668, -78.37036497963436 16.61384549930724, -78.81761807360569 16.3427180453909 M-78.81761807360569 16.3427180453909 C-79.17695779103902 16.092058214075067, -79.53629750847234 15.841398382759238, -79.84284284457871 15.627565626425156 M-78.81761807360569 16.3427180453909 C-79.03049696050981 16.19422294926507, -79.24337584741393 16.045727853139244, -79.84284284457871 15.627565626425156 M-79.84284284457871 15.627565626425156 C-80.16033708286717 15.374372420266619, -80.47783132115563 15.12117921410808, -80.82014120850187 14.848196188198125 M-79.84284284457871 15.627565626425156 C-80.08205482227804 15.436800439908014, -80.32126679997735 15.246035253390874, -80.82014120850187 14.848196188198125 M-80.82014120850187 14.848196188198125 C-81.06657702869224 14.62438969663573, -81.31301284888261 14.400583205073332, -81.74549723676797 14.007812326905697 M-80.82014120850187 14.848196188198125 C-81.13647184217092 14.560913076349816, -81.45280247583997 14.273629964501506, -81.74549723676797 14.007812326905697 M-81.74549723676797 14.007812326905697 C-81.94481777078013 13.801997511017966, -82.14413830479228 13.596182695130235, -82.61510844296865 13.109867360095677 M-81.74549723676797 14.007812326905697 C-82.07333761701726 13.669290218102514, -82.40117799726654 13.330768109299331, -82.61510844296865 13.109867360095677 M-82.61510844296865 13.109867360095677 C-82.84167836210983 12.843725440878817, -83.06824828125103 12.577583521661955, -83.42540140812658 12.158051136245307 M-82.61510844296865 13.109867360095677 C-82.80102047611048 12.891484507272908, -82.98693250925233 12.67310165445014, -83.42540140812658 12.158051136245307 M-83.42540140812658 12.158051136245307 C-83.62372691660615 11.8923130227082, -83.82205242508572 11.626574909171094, -84.17304646464063 11.156274872382316 M-83.42540140812658 12.158051136245307 C-83.60764287313059 11.913864175678945, -83.7898843381346 11.669677215112586, -84.17304646464063 11.156274872382316 M-84.17304646464063 11.156274872382316 C-84.43454096172779 10.754549103752101, -84.69603545881495 10.352823335121887, -84.85497137860425 10.108655082055249 M-84.17304646464063 11.156274872382316 C-84.3890390346396 10.824452282737814, -84.60503160463854 10.492629693093313, -84.85497137860425 10.108655082055249 M-84.85497137860425 10.108655082055249 C-85.09310110347133 9.68583164230435, -85.3312308283384 9.263008202553452, -85.4683739742735 9.019496659696289 M-84.85497137860425 10.108655082055249 C-85.01696260904738 9.821023249012654, -85.17895383949052 9.53339141597006, -85.4683739742735 9.019496659696289 M-85.4683739742735 9.019496659696289 C-85.6475456671313 8.64744280581699, -85.82671735998909 8.275388951937689, -86.01073364880834 7.893275190886686 M-85.4683739742735 9.019496659696289 C-85.68021429247896 8.579605706285957, -85.89205461068443 8.139714752875625, -86.01073364880834 7.893275190886686 M-86.01073364880834 7.893275190886686 C-86.17333383435013 7.491649588937742, -86.33593401989192 7.090023986988798, -86.47982172997033 6.73461856121551 M-86.01073364880834 7.893275190886686 C-86.12038542335878 7.622433187774237, -86.23003719790924 7.351591184661788, -86.47982172997033 6.73461856121551 M-86.47982172997033 6.73461856121551 C-86.57105916283302 6.459825950143871, -86.66229659569572 6.185033339072231, -86.87371063421489 5.5482879393051325 M-86.47982172997033 6.73461856121551 C-86.56921674899769 6.465375007067128, -86.65861176802504 6.1961314529187455, -86.87371063421489 5.5482879393051325 M-86.87371063421489 5.5482879393051325 C-86.96917097946779 5.184256270080474, -87.0646313247207 4.820224600855816, -87.19078178754556 4.339158212148136 M-86.87371063421489 5.5482879393051325 C-86.97608212123104 5.157901091229411, -87.07845360824719 4.767514243153691, -87.19078178754556 4.339158212148136 M-87.19078178754556 4.339158212148136 C-87.27196274409322 3.9223111578771483, -87.35314370064087 3.505464103606161, -87.42973227658177 3.112197953150904 M-87.19078178754556 4.339158212148136 C-87.25303649755307 4.0194934337971855, -87.31529120756058 3.699828655446235, -87.42973227658177 3.112197953150904 M-87.42973227658177 3.112197953150904 C-87.46775994112096 2.8172628963967474, -87.50578760566015 2.5223278396425908, -87.58958020250937 1.872449005199809 M-87.42973227658177 3.112197953150904 C-87.48933631996731 2.6499207628023687, -87.54894036335284 2.187643572453833, -87.58958020250937 1.872449005199809 M-87.58958020250937 1.872449005199809 C-87.61415839081904 1.4896238831200361, -87.63873657912873 1.1067987610402632, -87.66966871591342 0.6250057626472781 M-87.58958020250937 1.872449005199809 C-87.61335350049724 1.5021606995779557, -87.63712679848511 1.1318723939561024, -87.66966871591342 0.6250057626472781 M-87.66966871591342 0.6250057626472781 C-87.66966871591342 0.33678775984908565, -87.66966871591342 0.04856975705089317, -87.66966871591342 -0.6250057626472687 M-87.66966871591342 0.6250057626472781 C-87.66966871591342 0.12878274844191218, -87.66966871591342 -0.3674402657634538, -87.66966871591342 -0.6250057626472687 M-87.66966871591342 -0.6250057626472687 C-87.64979207676805 -0.934600461470739, -87.62991543762267 -1.2441951602942094, -87.58958020250937 -1.8724490051997822 M-87.66966871591342 -0.6250057626472687 C-87.6460822894224 -0.9923833938657312, -87.62249586293137 -1.3597610250841936, -87.58958020250937 -1.8724490051997822 M-87.58958020250937 -1.8724490051997822 C-87.541703255524 -2.243773151645698, -87.49382630853864 -2.615097298091613, -87.42973227658177 -3.112197953150895 M-87.58958020250937 -1.8724490051997822 C-87.53479829519102 -2.2973266604496705, -87.48001638787268 -2.7222043156995586, -87.42973227658177 -3.112197953150895 M-87.42973227658177 -3.112197953150895 C-87.36310956621911 -3.454291490148346, -87.29648685585646 -3.7963850271457966, -87.19078178754556 -4.339158212148126 M-87.42973227658177 -3.112197953150895 C-87.34526710934954 -3.545908735169048, -87.2608019421173 -3.979619517187201, -87.19078178754556 -4.339158212148126 M-87.19078178754556 -4.339158212148126 C-87.07267386800349 -4.789554897658154, -86.95456594846144 -5.239951583168182, -86.87371063421489 -5.548287939305123 M-87.19078178754556 -4.339158212148126 C-87.11263217268585 -4.637176563865554, -87.03448255782614 -4.935194915582982, -86.87371063421489 -5.548287939305123 M-86.87371063421489 -5.548287939305123 C-86.73470369208833 -5.966954701241795, -86.59569674996177 -6.385621463178468, -86.47982172997033 -6.734618561215485 M-86.87371063421489 -5.548287939305123 C-86.75904663864031 -5.893637624749063, -86.64438264306573 -6.238987310193003, -86.47982172997033 -6.734618561215485 M-86.47982172997033 -6.734618561215485 C-86.29356797399684 -7.19466893944138, -86.10731421802338 -7.654719317667275, -86.01073364880834 -7.893275190886676 M-86.47982172997033 -6.734618561215485 C-86.29998833747824 -7.1788105175130426, -86.12015494498617 -7.623002473810599, -86.01073364880834 -7.893275190886676 M-86.01073364880834 -7.893275190886676 C-85.81041383806925 -8.30924356404373, -85.61009402733015 -8.725211937200783, -85.4683739742735 -9.019496659696282 M-86.01073364880834 -7.893275190886676 C-85.88516649279335 -8.15401807705854, -85.75959933677836 -8.414760963230403, -85.4683739742735 -9.019496659696282 M-85.4683739742735 -9.019496659696282 C-85.22510537107908 -9.45144469828522, -84.98183676788467 -9.883392736874159, -84.85497137860425 -10.108655082055243 M-85.4683739742735 -9.019496659696282 C-85.24149558056821 -9.422342221648586, -85.01461718686294 -9.825187783600889, -84.85497137860425 -10.108655082055243 M-84.85497137860425 -10.108655082055243 C-84.68526131298903 -10.369375316373741, -84.51555124737379 -10.63009555069224, -84.17304646464063 -11.156274872382308 M-84.85497137860425 -10.108655082055243 C-84.71535988938628 -10.323135820428122, -84.57574840016831 -10.537616558801002, -84.17304646464063 -11.156274872382308 M-84.17304646464063 -11.156274872382308 C-83.96456042141094 -11.435627176840839, -83.75607437818124 -11.71497948129937, -83.42540140812659 -12.158051136245302 M-84.17304646464063 -11.156274872382308 C-83.92786732714757 -11.484792580344104, -83.68268818965448 -11.8133102883059, -83.42540140812659 -12.158051136245302 M-83.42540140812659 -12.158051136245302 C-83.25737507456087 -12.355424428620834, -83.08934874099513 -12.552797720996365, -82.61510844296866 -13.10986736009567 M-83.42540140812659 -12.158051136245302 C-83.1813924527272 -12.444677939760314, -82.93738349732782 -12.731304743275327, -82.61510844296866 -13.10986736009567 M-82.61510844296866 -13.10986736009567 C-82.28797676868926 -13.447657671799098, -81.96084509440986 -13.785447983502523, -81.74549723676799 -14.007812326905677 M-82.61510844296866 -13.10986736009567 C-82.39952054534587 -13.332479564486784, -82.18393264772305 -13.555091768877896, -81.74549723676799 -14.007812326905677 M-81.74549723676799 -14.007812326905677 C-81.52715836159183 -14.206101916410596, -81.30881948641567 -14.404391505915516, -80.8201412085019 -14.848196188198107 M-81.74549723676799 -14.007812326905677 C-81.4607919790705 -14.266374109058201, -81.17608672137304 -14.524935891210724, -80.8201412085019 -14.848196188198107 M-80.8201412085019 -14.848196188198107 C-80.54220474877131 -15.069843118633433, -80.26426828904073 -15.291490049068758, -79.84284284457871 -15.627565626425149 M-80.8201412085019 -14.848196188198107 C-80.49001399576733 -15.111463855299846, -80.15988678303275 -15.374731522401584, -79.84284284457871 -15.627565626425149 M-79.84284284457871 -15.627565626425149 C-79.45528119228248 -15.897911857793474, -79.06771953998626 -16.1682580891618, -78.81761807360571 -16.342718045390885 M-79.84284284457871 -15.627565626425149 C-79.45259133126571 -15.899788188396572, -79.0623398179527 -16.172010750367996, -78.81761807360571 -16.342718045390885 M-78.81761807360571 -16.342718045390885 C-78.46062665260212 -16.55912834271772, -78.10363523159852 -16.77553864004456, -77.74867976407678 -16.99071473040609 M-78.81761807360571 -16.342718045390885 C-78.44122428237317 -16.570890173571488, -78.06483049114063 -16.799062301752095, -77.74867976407678 -16.99071473040609 M-77.74867976407678 -16.99071473040609 C-77.48922320509286 -17.126073051038148, -77.22976664610894 -17.261431371670206, -76.6404204127924 -17.56889292409717 M-77.74867976407678 -16.99071473040609 C-77.33208085233589 -17.208054115816974, -76.91548194059501 -17.42539350122786, -76.6404204127924 -17.56889292409717 M-76.6404204127924 -17.56889292409717 C-76.25549725693135 -17.73928698685713, -75.87057410107032 -17.909681049617088, -75.49739409514781 -18.07487676824742 M-76.6404204127924 -17.56889292409717 C-76.23774388040815 -17.747145880008752, -75.83506734802388 -17.925398835920333, -75.49739409514781 -18.07487676824742 M-75.49739409514781 -18.07487676824742 C-75.14667011379738 -18.203946435441317, -74.79594613244697 -18.333016102635217, -74.32429775146062 -18.506587066708033 M-75.49739409514781 -18.07487676824742 C-75.11463593090096 -18.215735310867945, -74.73187776665411 -18.35659385348847, -74.32429775146062 -18.506587066708033 M-74.32429775146062 -18.506587066708033 C-74.0357493931614 -18.59222670483, -73.74720103486217 -18.677866342951972, -73.12595188623541 -18.862249829261067 M-74.32429775146062 -18.506587066708033 C-74.01387127862034 -18.59872001438522, -73.70344480578008 -18.690852962062404, -73.12595188623541 -18.862249829261067 M-73.12595188623541 -18.862249829261067 C-72.7441339734909 -18.94939727625027, -72.36231606074638 -19.036544723239476, -71.90728075967677 -19.140403561325773 M-73.12595188623541 -18.862249829261067 C-72.7120815631098 -18.95671302975823, -72.2982112399842 -19.051176230255393, -71.90728075967677 -19.140403561325773 M-71.90728075967677 -19.140403561325773 C-71.48342694979524 -19.20892895827203, -71.05957313991374 -19.277454355218286, -70.67329215284788 -19.3399052695533 M-71.90728075967677 -19.140403561325773 C-71.52463054479523 -19.202267480571084, -71.1419803299137 -19.264131399816396, -70.67329215284788 -19.3399052695533 M-70.67329215284788 -19.3399052695533 C-70.18818872875852 -19.386702613452975, -69.70308530466914 -19.43349995735265, -69.4290567896239 -19.45993515863156 M-70.67329215284788 -19.3399052695533 C-70.39352472758661 -19.3668940965987, -70.11375730232534 -19.393882923644096, -69.4290567896239 -19.45993515863156 M-69.4290567896239 -19.45993515863156 C-68.94161438239063 -19.475566487882443, -68.45417197515735 -19.491197817133322, -68.1796875 -19.5 M-69.4290567896239 -19.45993515863156 C-69.02650961901003 -19.47284406288261, -68.62396244839616 -19.485752967133664, -68.1796875 -19.5 M-68.1796875 -19.5 C-68.1796875 -19.5, -68.1796875 -19.5, -68.1796875 -19.5 M-68.1796875 -19.5 C-68.1796875 -19.5, -68.1796875 -19.5, -68.1796875 -19.5\" stroke=\"#9370DB\" stroke-width=\"1.3\" fill=\"none\" stroke-dasharray=\"0 0\" style=\"\"></path></g><g class=\"label\" style=\"\" transform=\"translate(-75.3046875, -12)\"><rect></rect><foreignObject width=\"150.609375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Proceed to payment</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-flowchart-D-5\" data-look=\"classic\" transform=\"translate(363.33934020996094, 397.921875)\"><rect class=\"basic label-container\" style=\"\" x=\"-130\" y=\"-39\" width=\"260\" height=\"78\"></rect><g class=\"label\" style=\"\" transform=\"translate(-100, -24)\"><rect></rect><foreignObject width=\"200\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;\"><span class=\"nodeLabel\"><p>Collect requirements in your UX</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-flowchart-E-7\" data-look=\"classic\" transform=\"translate(363.33934020996094, 575.1640625)\"><polygon points=\"88.2421875,0 176.484375,-88.2421875 88.2421875,-176.484375 0,-88.2421875\" class=\"label-container\" transform=\"translate(-87.7421875, 88.2421875)\"></polygon><g class=\"label\" style=\"\" transform=\"translate(-61.2421875, -12)\"><rect></rect><foreignObject width=\"122.484375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>SELFIE required?</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-flowchart-F-9\" data-look=\"classic\" transform=\"translate(451.27293395996094, 788.40625)\"><rect class=\"basic label-container\" style=\"\" x=\"-130\" y=\"-51\" width=\"260\" height=\"102\"></rect><g class=\"label\" style=\"\" transform=\"translate(-100, -36)\"><rect></rect><foreignObject width=\"200\" height=\"72\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;\"><span class=\"nodeLabel\"><p>POST /identities/share/token<br>KYC token sharing</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-flowchart-G-11\" data-look=\"classic\" transform=\"translate(445.83934020996094, 928.40625)\"><rect class=\"basic label-container\" style=\"\" x=\"-93.4765625\" y=\"-39\" width=\"186.953125\" height=\"78\"></rect><g class=\"label\" style=\"\" transform=\"translate(-63.4765625, -24)\"><rect></rect><foreignObject width=\"126.953125\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>PATCH /identities<br>Structured fields</p></span></div></foreignObject></g></g></g></g></g><defs><filter id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-drop-shadow\" height=\"130%\" width=\"130%\"><feDropShadow dx=\"4\" dy=\"4\" stdDeviation=\"0\" flood-opacity=\"0.06\" flood-color=\"#000000\"></feDropShadow></filter></defs><defs><filter id=\"diagram-3d601766d071e5dede455db14a27a02550f9ff6cec6d7a954109111a8035328b-drop-shadow-small\" height=\"150%\" width=\"150%\"><feDropShadow dx=\"2\" dy=\"2\" stdDeviation=\"0\" flood-opacity=\"0.06\" flood-color=\"#000000\"></feDropShadow></filter></defs></svg>","diagramHtmlDark":"<svg id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" class=\"flowchart\" style=\"max-width: 624.2730102539062px;\" viewBox=\"0 0 624.2730102539062 975.40625\" role=\"graphics-document document\" aria-roledescription=\"flowchart-v2\"><style>#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;fill:#ccc;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .error-icon{fill:#a44141;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .error-text{fill:#ddd;stroke:#ddd;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .edge-thickness-normal{stroke-width:1px;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .edge-thickness-thick{stroke-width:3.5px;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .edge-pattern-solid{stroke-dasharray:0;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .edge-pattern-dashed{stroke-dasharray:3;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .edge-pattern-dotted{stroke-dasharray:2;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .marker{fill:lightgrey;stroke:lightgrey;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .marker.cross{stroke:lightgrey;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 svg{font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:16px;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 p{margin:0;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .label{font-family:\"Redocly Mermaid Sans\",sans-serif;color:#ccc;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .cluster-label text{fill:#F9FFFE;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .cluster-label span{color:#F9FFFE;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .cluster-label span p{background-color:transparent;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .label text,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 span{fill:#ccc;color:#ccc;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .node rect,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .node circle,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .node ellipse,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .node polygon,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .node path{fill:#1f2020;stroke:#ccc;stroke-width:1px;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .rough-node .label text,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .node .label text,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .image-shape .label,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .icon-shape .label{text-anchor:middle;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .node .katex path{fill:#000;stroke:#000;stroke-width:1px;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .rough-node .label,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .node .label,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .image-shape .label,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .icon-shape .label{text-align:center;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .node.clickable{cursor:pointer;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .root .anchor path{fill:lightgrey!important;stroke-width:0;stroke:lightgrey;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .arrowheadPath{fill:lightgrey;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .edgePath .path{stroke:lightgrey;stroke-width:1px;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .flowchart-link{stroke:lightgrey;fill:none;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .edgeLabel{background-color:hsl(0, 0%, 34.4117647059%);text-align:center;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .edgeLabel p{background-color:hsl(0, 0%, 34.4117647059%);}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .edgeLabel rect{opacity:0.5;background-color:hsl(0, 0%, 34.4117647059%);fill:hsl(0, 0%, 34.4117647059%);}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .labelBkg{background-color:rgba(87.75, 87.75, 87.75, 0.5);}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .cluster rect{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:rgba(255, 255, 255, 0.25);stroke-width:1px;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .cluster text{fill:#F9FFFE;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .cluster span{color:#F9FFFE;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:\"Redocly Mermaid Sans\",sans-serif;font-size:12px;background:hsl(20, 1.5873015873%, 12.3529411765%);border:1px solid rgba(255, 255, 255, 0.25);border-radius:2px;pointer-events:none;z-index:100;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .flowchartTitleText{text-anchor:middle;font-size:18px;fill:#ccc;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 rect.text{fill:none;stroke-width:0;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .icon-shape,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .image-shape{background-color:hsl(0, 0%, 34.4117647059%);text-align:center;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .icon-shape p,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .image-shape p{background-color:hsl(0, 0%, 34.4117647059%);padding:2px;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .icon-shape .label rect,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .image-shape .label rect{opacity:0.5;background-color:hsl(0, 0%, 34.4117647059%);fill:hsl(0, 0%, 34.4117647059%);}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .label-icon{display:inline-block;height:1em;overflow:visible;vertical-align:-0.125em;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .node .label-icon path{fill:currentColor;stroke:revert;stroke-width:revert;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 .node .neo-node{stroke:#ccc;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 [data-look=\"neo\"].node rect,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 [data-look=\"neo\"].cluster rect,#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 [data-look=\"neo\"].node polygon{stroke:url(#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 [data-look=\"neo\"].node path{stroke:url(#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-gradient);stroke-width:1px;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 [data-look=\"neo\"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 [data-look=\"neo\"].node .neo-line path{stroke:#ccc;filter:none;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 [data-look=\"neo\"].node circle{stroke:url(#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 [data-look=\"neo\"].icon-shape .icon{fill:url(#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 [data-look=\"neo\"].icon-shape .icon-neo path{stroke:url(#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",sans-serif;}</style><g><marker id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-pointEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 0 L 10 5 L 0 10 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-pointStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"4.5\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"8\" markerHeight=\"8\" orient=\"auto\"><path d=\"M 0 5 L 10 10 L 10 0 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-pointEnd-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 11.5 14\" refX=\"11.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"10.5\" markerHeight=\"14\" orient=\"auto\"><path d=\"M 0 0 L 11.5 7 L 0 14 z\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-pointStart-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 11.5 14\" refX=\"1\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11.5\" markerHeight=\"14\" orient=\"auto\"><polygon points=\"0,7 11.5,14 11.5,0\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></polygon></marker><marker id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-circleEnd\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"11\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-circleStart\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"-1\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 1; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-circleEnd-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refY=\"5\" refX=\"12.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"14\" markerHeight=\"14\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-circleStart-margin\" class=\"marker flowchart-v2\" viewBox=\"0 0 10 10\" refX=\"-2\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"14\" markerHeight=\"14\" orient=\"auto\"><circle cx=\"5\" cy=\"5\" r=\"5\" class=\"arrowMarkerPath\" style=\"stroke-width: 0; stroke-dasharray: 1, 0;\"></circle></marker><marker id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-crossEnd\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"12\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-crossStart\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 11 11\" refX=\"-1\" refY=\"5.2\" markerUnits=\"userSpaceOnUse\" markerWidth=\"11\" markerHeight=\"11\" orient=\"auto\"><path d=\"M 1,1 l 9,9 M 10,1 l -9,9\" class=\"arrowMarkerPath\" style=\"stroke-width: 2; stroke-dasharray: 1, 0;\"></path></marker><marker id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-crossEnd-margin\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 15 15\" refX=\"17.7\" refY=\"7.5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto\"><path d=\"M 1,1 L 14,14 M 1,14 L 14,1\" class=\"arrowMarkerPath\" style=\"stroke-width: 2.5;\"></path></marker><marker id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-crossStart-margin\" class=\"marker cross flowchart-v2\" viewBox=\"0 0 15 15\" refX=\"-3.5\" refY=\"7.5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto\"><path d=\"M 1,1 L 14,14 M 1,14 L 14,1\" class=\"arrowMarkerPath\" style=\"stroke-width: 2.5; stroke-dasharray: 1, 0;\"></path></marker><g class=\"root\"><g class=\"clusters\"></g><g class=\"edgePaths\"><path d=\"M269.168,62L262.557,66.167C255.947,70.333,242.726,78.667,236.115,86.333C229.505,94,229.505,101,229.505,104.5L229.505,108\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-L_A_B_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_A_B_0\" data-points=\"W3sieCI6MjY5LjE2Nzk2NjY5NTkzMjI1LCJ5Ijo2Mn0seyJ4IjoyMjkuNTA0NTA1MTU3NDcwNywieSI6ODd9LHsieCI6MjI5LjUwNDUwNTE1NzQ3MDY3LCJ5IjoxMTEuOTk5OTk5OTk5OTk5OTd9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-pointEnd)\"></path><path d=\"M184.531,239.948L169.721,253.611C154.911,267.273,125.29,294.597,110.557,317.093C95.825,339.589,95.98,357.255,96.057,366.089L96.135,374.922\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-L_B_C_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_B_C_0\" data-points=\"W3sieCI6MTg0LjUzMTAyODkzNTkxNTIsInkiOjIzOS45NDgzOTg3Nzg0NDQ1M30seyJ4Ijo5NS42Njk2NzAxMDQ5ODA0NywieSI6MzIxLjkyMTg3NX0seyJ4Ijo5Ni4xNjk2NzAxMDQ5ODA0NywieSI6Mzc4LjkyMTg3NX1d\" data-look=\"classic\" marker-end=\"url(#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-pointEnd)\"></path><path d=\"M274.478,239.948L289.288,253.611C304.098,267.273,333.719,294.597,348.529,313.76C363.339,332.922,363.339,343.922,363.339,349.422L363.339,354.922\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-L_B_D_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_B_D_0\" data-points=\"W3sieCI6Mjc0LjQ3Nzk4MTM3OTAyNjIsInkiOjIzOS45NDgzOTg3Nzg0NDQ1M30seyJ4IjozNjMuMzM5MzQwMjA5OTYwOTQsInkiOjMyMS45MjE4NzV9LHsieCI6MzYzLjMzOTM0MDIwOTk2MDk0LCJ5IjozNTguOTIxODc1fV0=\" data-look=\"classic\" marker-end=\"url(#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-pointEnd)\"></path><path d=\"M363.339,436.922L363.339,441.089C363.339,445.255,363.339,453.589,363.339,461.255C363.339,468.922,363.339,475.922,363.339,479.422L363.339,482.922\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-L_D_E_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_D_E_0\" data-points=\"W3sieCI6MzYzLjMzOTM0MDIwOTk2MDk0LCJ5Ijo0MzYuOTIxODc1fSx7IngiOjM2My4zMzkzNDAyMDk5NjA5NCwieSI6NDYxLjkyMTg3NX0seyJ4IjozNjMuMzM5MzQwMjA5OTYwOTQsInkiOjQ4Ni45MjE4NzV9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-pointEnd)\"></path><path d=\"M399.739,627.007L408.328,639.24C416.917,651.473,434.095,675.94,442.684,693.673C451.273,711.406,451.273,722.406,451.273,727.906L451.273,733.406\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-L_E_F_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_E_F_0\" data-points=\"W3sieCI6Mzk5LjczODY1NjQwNjg0NDAzLCJ5Ijo2MjcuMDA2OTMzODAzMTE2OX0seyJ4Ijo0NTEuMjcyOTMzOTU5OTYwOTQsInkiOjcwMC40MDYyNX0seyJ4Ijo0NTEuMjcyOTMzOTU5OTYwOTQsInkiOjczNy40MDYyNX1d\" data-look=\"classic\" marker-end=\"url(#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-pointEnd)\"></path><path d=\"M326.94,627.007L318.351,639.24C309.762,651.473,292.584,675.94,283.995,702.84C275.406,729.74,275.406,759.073,275.406,786.406C275.406,813.74,275.406,839.073,287.608,856.322C299.81,873.57,324.214,882.734,336.416,887.316L348.618,891.898\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-L_E_G_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_E_G_0\" data-points=\"W3sieCI6MzI2Ljk0MDAyNDAxMzA3Nzk2LCJ5Ijo2MjcuMDA2OTMzODAzMTE2OX0seyJ4IjoyNzUuNDA1NzQ2NDU5OTYwOTQsInkiOjcwMC40MDYyNX0seyJ4IjoyNzUuNDA1NzQ2NDU5OTYwOTQsInkiOjc4OC40MDYyNX0seyJ4IjoyNzUuNDA1NzQ2NDU5OTYwOTQsInkiOjg2NC40MDYyNX0seyJ4IjozNTIuMzYyNzc3NzA5OTYwOTQsInkiOjg5My4zMDQ2MDIwODkxMTF9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-pointEnd)\"></path><path d=\"M451.273,839.406L451.273,843.573C451.273,847.74,451.273,856.073,450.976,863.742C450.678,871.411,450.084,878.416,449.786,881.918L449.489,885.421\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-L_F_G_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_F_G_0\" data-points=\"W3sieCI6NDUxLjI3MjkzMzk1OTk2MDk0LCJ5Ijo4MzkuNDA2MjV9LHsieCI6NDUxLjI3MjkzMzk1OTk2MDk0LCJ5Ijo4NjQuNDA2MjV9LHsieCI6NDQ5LjE1MDQzNjQwMTM2NzIsInkiOjg4OS40MDYyNX1d\" data-look=\"classic\" marker-end=\"url(#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-pointEnd)\"></path><path d=\"M539.316,893.305L552.142,888.488C564.968,883.672,590.621,874.039,603.447,856.556C616.273,839.073,616.273,813.74,616.273,786.406C616.273,759.073,616.273,729.74,616.273,694.199C616.273,658.659,616.273,616.911,616.273,577.164C616.273,537.417,616.273,499.669,616.273,470.129C616.273,440.589,616.273,419.255,616.273,395.922C616.273,372.589,616.273,347.255,616.273,314.012C616.273,280.768,616.273,239.615,616.273,200.461C616.273,161.307,616.273,124.154,580.827,99.519C545.381,74.884,474.488,62.769,439.042,56.711L403.596,50.653\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-L_G_A_0\" class=\"edge-thickness-normal edge-pattern-solid edge-thickness-normal edge-pattern-solid flowchart-link\" style=\";\" data-edge=\"true\" data-et=\"edge\" data-id=\"L_G_A_0\" data-points=\"W3sieCI6NTM5LjMxNTkwMjcwOTk2MDksInkiOjg5My4zMDQ2MDIwODkxMTF9LHsieCI6NjE2LjI3MjkzMzk1OTk2MDksInkiOjg2NC40MDYyNX0seyJ4Ijo2MTYuMjcyOTMzOTU5OTYwOSwieSI6Nzg4LjQwNjI1fSx7IngiOjYxNi4yNzI5MzM5NTk5NjA5LCJ5Ijo3MDAuNDA2MjV9LHsieCI6NjE2LjI3MjkzMzk1OTk2MDksInkiOjU3NS4xNjQwNjI1fSx7IngiOjYxNi4yNzI5MzM5NTk5NjA5LCJ5Ijo0NjEuOTIxODc1fSx7IngiOjYxNi4yNzI5MzM5NTk5NjA5LCJ5IjozOTcuOTIxODc1fSx7IngiOjYxNi4yNzI5MzM5NTk5NjA5LCJ5IjozMjEuOTIxODc1fSx7IngiOjYxNi4yNzI5MzM5NTk5NjA5LCJ5IjoxOTguNDYwOTM3NX0seyJ4Ijo2MTYuMjcyOTMzOTU5OTYwOSwieSI6ODd9LHsieCI6Mzk5LjY1Mjk0MjY1NzQ3MDcsInkiOjQ5Ljk3OTI2OTM1MDg3NDg5fV0=\" data-look=\"classic\" marker-end=\"url(#diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488_flowchart-v2-pointEnd)\"></path></g><g class=\"edgeLabels\"><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_A_B_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(95.66967010498047, 321.921875)\"><g class=\"label\" data-id=\"L_B_C_0\" transform=\"translate(-15.4921875, -12)\"><foreignObject width=\"30.984375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"><p>true</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(363.33934020996094, 321.921875)\"><g class=\"label\" data-id=\"L_B_D_0\" transform=\"translate(-17.4921875, -12)\"><foreignObject width=\"34.984375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"><p>false</p></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_D_E_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(451.27293395996094, 700.40625)\"><g class=\"label\" data-id=\"L_E_F_0\" transform=\"translate(-12.390625, -12)\"><foreignObject width=\"24.78125\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"><p>Yes</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(275.40574645996094, 788.40625)\"><g class=\"label\" data-id=\"L_E_G_0\" transform=\"translate(-10.8671875, -12)\"><foreignObject width=\"21.734375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"><p>No</p></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_F_G_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g><g class=\"edgeLabel\"><g class=\"label\" data-id=\"L_G_A_0\" transform=\"translate(0, 0)\"><foreignObject width=\"0\" height=\"0\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"edgeLabel\"></span></div></foreignObject></g></g></g><g class=\"nodes\"><g class=\"node default\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-flowchart-A-0\" data-look=\"classic\" transform=\"translate(312.0045051574707, 35)\"><rect class=\"basic label-container\" style=\"\" x=\"-87.6484375\" y=\"-27\" width=\"175.296875\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-57.6484375, -12)\"><rect></rect><foreignObject width=\"115.296875\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>POST /eligibility</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-flowchart-B-1\" data-look=\"classic\" transform=\"translate(229.5045051574707, 198.4609375)\"><polygon points=\"86.4609375,0 172.921875,-86.4609375 86.4609375,-172.921875 0,-86.4609375\" class=\"label-container\" transform=\"translate(-85.9609375, 86.4609375)\"></polygon><g class=\"label\" style=\"\" transform=\"translate(-59.4609375, -12)\"><rect></rect><foreignObject width=\"118.921875\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>paymentReady?</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-flowchart-C-3\" data-look=\"classic\" transform=\"translate(95.66967010498047, 397.921875)\"><g class=\"basic label-container outer-path\"><path d=\"M-68.1796875 -19.5 C-20.890911330852454 -19.5, 26.397864838295092 -19.5, 68.1796875 -19.5 C68.1796875 -19.5, 68.1796875 -19.5, 68.1796875 -19.5 C68.64345338007085 -19.485127930891654, 69.10721926014169 -19.470255861783304, 69.4290567896239 -19.45993515863156 C69.90443415001364 -19.41407607639968, 70.37981151040337 -19.368216994167806, 70.67329215284786 -19.3399052695533 C70.9828551539247 -19.289857524236123, 71.29241815500156 -19.239809778918946, 71.90728075967675 -19.140403561325776 C72.29613342030201 -19.051650479038813, 72.68498608092727 -18.96289739675185, 73.12595188623538 -18.862249829261074 C73.56939004055249 -18.73063971271413, 74.0128281948696 -18.59902959616718, 74.3242977514606 -18.50658706670804 C74.7033430019744 -18.367094910663077, 75.0823882524882 -18.22760275461811, 75.4973940951478 -18.074876768247425 C75.73935690394303 -17.967767010365474, 75.98131971273827 -17.860657252483527, 76.64042041279238 -17.568892924097174 C76.90759504104938 -17.429508091669017, 77.17476966930637 -17.290123259240858, 77.74867976407678 -16.990714730406097 C77.97874637787723 -16.85124699709877, 78.20881299167768 -16.711779263791442, 78.8176180736057 -16.342718045390892 C79.08702004410382 -16.154794892994737, 79.35642201460196 -15.966871740598584, 79.84284284457871 -15.627565626425154 C80.17966415665887 -15.358959593232766, 80.51648546873903 -15.09035356004038, 80.82014120850187 -14.848196188198123 C81.01212038347008 -14.673845780982614, 81.2040995584383 -14.499495373767102, 81.74549723676799 -14.007812326905688 C81.99280474833773 -13.752447016885617, 82.24011225990748 -13.497081706865545, 82.61510844296865 -13.10986736009568 C82.86050382958251 -12.821611975585968, 83.10589921619638 -12.533356591076256, 83.42540140812658 -12.158051136245305 C83.68296526995297 -11.812939025948465, 83.94052913177936 -11.467826915651626, 84.17304646464063 -11.156274872382312 C84.41239410710094 -10.788572619722103, 84.65174174956124 -10.420870367061895, 84.85497137860425 -10.108655082055241 C84.98878671559625 -9.871052400953738, 85.12260205258825 -9.633449719852234, 85.4683739742735 -9.019496659696287 C85.59809004779524 -8.750138457549047, 85.72780612131697 -8.48078025540181, 86.01073364880834 -7.893275190886684 C86.11986528936339 -7.62371792879898, 86.22899692991844 -7.354160666711277, 86.47982172997033 -6.734618561215508 C86.59664512430116 -6.382765110771199, 86.71346851863198 -6.030911660326891, 86.87371063421489 -5.548287939305138 C86.95676397055414 -5.231569572299935, 87.03981730689337 -4.914851205294733, 87.19078178754556 -4.339158212148133 C87.24187248760184 -4.076818265382409, 87.29296318765812 -3.8144783186166853, 87.42973227658177 -3.1121979531509023 C87.47992157619005 -2.722939656387301, 87.53011087579834 -2.3336813596237, 87.58958020250937 -1.872449005199798 C87.61210129649083 -1.521664787738555, 87.6346223904723 -1.170880570277312, 87.66966871591342 -0.6250057626472757 C87.66966871591342 -0.3373055263499329, 87.66966871591342 -0.04960529005259007, 87.66966871591342 0.625005762647271 C87.64440100921881 1.0185706901414207, 87.61913330252422 1.4121356176355704, 87.58958020250937 1.8724490051997846 C87.52877700464323 2.34402660089999, 87.46797380677711 2.815604196600196, 87.42973227658177 3.1121979531508885 C87.35984984967554 3.471029445658236, 87.28996742276931 3.829860938165583, 87.19078178754556 4.339158212148129 C87.07946291792324 4.763665307921314, 86.96814404830093 5.188172403694499, 86.87371063421489 5.548287939305125 C86.7223341138548 6.004209900056568, 86.5709575934947 6.46013186080801, 86.47982172997033 6.734618561215495 C86.34198803692964 7.0750704478591535, 86.20415434388896 7.415522334502813, 86.01073364880834 7.893275190886679 C85.8699596198694 8.185595474060069, 85.72918559093047 8.477915757233458, 85.4683739742735 9.019496659696284 C85.34301691431816 9.242080813425785, 85.21765985436281 9.464664967155286, 84.85497137860425 10.108655082055236 C84.63640188886407 10.444436512422094, 84.41783239912391 10.78021794278895, 84.17304646464065 11.156274872382301 C84.02078111625684 11.360296567557999, 83.86851576787303 11.564318262733698, 83.42540140812659 12.158051136245302 C83.12748234298793 12.508003822232197, 82.82956327784929 12.857956508219093, 82.61510844296866 13.10986736009567 C82.39530167608773 13.336835893371422, 82.17549490920678 13.563804426647174, 81.74549723676799 14.007812326905684 C81.47176556784034 14.2564081860827, 81.19803389891268 14.505004045259716, 80.8201412085019 14.848196188198111 C80.46491485380669 15.131479753097235, 80.10968849911148 15.41476331799636, 79.84284284457871 15.627565626425152 C79.46231845866663 15.893002965402248, 79.08179407275455 16.158440304379344, 78.8176180736057 16.34271804539089 C78.44400580290429 16.569203999479495, 78.07039353220289 16.795689953568097, 77.74867976407678 16.990714730406093 C77.46353356997015 17.13947531722667, 77.17838737586352 17.288235904047244, 76.64042041279238 17.56889292409717 C76.38146315972509 17.683525618336084, 76.12250590665778 17.798158312574994, 75.4973940951478 18.07487676824742 C75.10756914497381 18.21833595341379, 74.71774419479982 18.361795138580153, 74.32429775146062 18.506587066708033 C73.9441355134109 18.619417223448885, 73.56397327536116 18.732247380189737, 73.12595188623541 18.86224982926107 C72.6835186422594 18.96323233005186, 72.24108539828339 19.06421483084265, 71.90728075967677 19.140403561325773 C71.55039267681711 19.198102458854102, 71.19350459395746 19.255801356382435, 70.67329215284788 19.3399052695533 C70.38249558493067 19.36795806472623, 70.09169901701345 19.396010859899164, 69.4290567896239 19.45993515863156 C69.17501366678607 19.468081827116027, 68.92097054394824 19.476228495600495, 68.1796875 19.5 C68.1796875 19.5, 68.1796875 19.5, 68.1796875 19.5 C32.891160005250086 19.5, -2.3973674894998283 19.5, -68.1796875 19.5 C-68.43974734757879 19.491660386863934, -68.69980719515758 19.48332077372787, -69.4290567896239 19.45993515863156 C-69.749470135637 19.429025268495103, -70.06988348165011 19.398115378358646, -70.67329215284786 19.3399052695533 C-71.08169010393156 19.2738786559955, -71.49008805501526 19.207852042437697, -71.90728075967675 19.140403561325773 C-72.26986449824697 19.057646189077136, -72.63244823681718 18.9748888168285, -73.12595188623538 18.862249829261074 C-73.56363538873958 18.732347663165417, -74.00131889124378 18.60244549706976, -74.32429775146059 18.506587066708043 C-74.75432422594695 18.348333348975913, -75.18435070043328 18.190079631243783, -75.4973940951478 18.074876768247425 C-75.82764584144385 17.928684116732143, -76.1578975877399 17.78249146521686, -76.64042041279238 17.568892924097174 C-76.92268777770857 17.421634220621275, -77.20495514262477 17.274375517145373, -77.74867976407678 16.990714730406097 C-78.00944646021239 16.832636426773487, -78.270213156348 16.674558123140876, -78.81761807360569 16.3427180453909 C-79.03518640113236 16.190951798489394, -79.25275472865903 16.039185551587888, -79.84284284457871 15.627565626425156 C-80.18332035765536 15.356043870233664, -80.52379787073201 15.084522114042171, -80.82014120850187 14.848196188198125 C-81.05771142633009 14.632441202130053, -81.29528164415831 14.41668621606198, -81.74549723676797 14.007812326905697 C-81.98825457637273 13.75714544301554, -82.23101191597749 13.506478559125386, -82.61510844296865 13.109867360095677 C-82.83406289342973 12.852671003722914, -83.05301734389082 12.595474647350152, -83.42540140812658 12.158051136245307 C-83.6323045387252 11.880819790506127, -83.83920766932381 11.603588444766947, -84.17304646464063 11.156274872382316 C-84.33810725858116 10.902697167860413, -84.50316805252167 10.649119463338511, -84.85497137860425 10.108655082055249 C-85.0645571163607 9.736514381811393, -85.27414285411716 9.364373681567535, -85.4683739742735 9.019496659696289 C-85.67519593240787 8.590026438349291, -85.88201789054223 8.160556217002293, -86.01073364880834 7.893275190886686 C-86.10821119392853 7.652503769839687, -86.20568873904872 7.41173234879269, -86.47982172997033 6.73461856121551 C-86.5924265163065 6.395470885907193, -86.70503130264268 6.056323210598877, -86.87371063421489 5.5482879393051325 C-86.9844647857399 5.125934358387308, -87.09521893726493 4.703580777469484, -87.19078178754556 4.339158212148136 C-87.27145266501843 3.9249303061209093, -87.35212354249131 3.5107024000936833, -87.42973227658177 3.112197953150904 C-87.4724976160688 2.7805184250610164, -87.51526295555583 2.4488388969711288, -87.58958020250937 1.872449005199809 C-87.60779505357783 1.5887379970453233, -87.6260099046463 1.3050269888908372, -87.66966871591342 0.6250057626472781 C-87.66966871591342 0.18916832989579502, -87.66966871591342 -0.2466691028556881, -87.66966871591342 -0.6250057626472687 C-87.64206914278395 -1.0548913921131575, -87.61446956965449 -1.4847770215790463, -87.58958020250937 -1.8724490051997822 C-87.55392527971524 -2.1489815455300656, -87.51827035692114 -2.425514085860349, -87.42973227658177 -3.112197953150895 C-87.34780795890492 -3.532862009710887, -87.26588364122806 -3.953526066270878, -87.19078178754556 -4.339158212148126 C-87.1095302570999 -4.649005512373463, -87.02827872665425 -4.958852812598799, -86.87371063421489 -5.548287939305123 C-86.74972557240073 -5.92171119115244, -86.62574051058658 -6.295134442999758, -86.47982172997033 -6.734618561215485 C-86.36910781824915 -7.0080840636746595, -86.25839390652797 -7.281549566133833, -86.01073364880834 -7.893275190886676 C-85.84873569691976 -8.2296674041842, -85.6867377450312 -8.566059617481724, -85.4683739742735 -9.019496659696282 C-85.2484819265343 -9.409937256941573, -85.02858987879509 -9.800377854186866, -84.85497137860425 -10.108655082055243 C-84.68296410946932 -10.372904437865524, -84.51095684033439 -10.637153793675802, -84.17304646464063 -11.156274872382308 C-83.96262489977887 -11.43822059949816, -83.7522033349171 -11.720166326614013, -83.42540140812659 -12.158051136245302 C-83.23100603966408 -12.38639899745119, -83.03661067120156 -12.61474685865708, -82.61510844296866 -13.10986736009567 C-82.31966730777538 -13.414934588351043, -82.02422617258208 -13.720001816606416, -81.74549723676799 -14.007812326905677 C-81.46227857008655 -14.265024026430472, -81.17905990340512 -14.52223572595527, -80.8201412085019 -14.848196188198107 C-80.45763305778186 -15.137286791650308, -80.09512490706182 -15.426377395102508, -79.84284284457871 -15.627565626425149 C-79.54425475311137 -15.83584775336261, -79.24566666164404 -16.044129880300073, -78.81761807360571 -16.342718045390885 C-78.43834553769665 -16.572635285511776, -78.0590730017876 -16.802552525632663, -77.74867976407678 -16.99071473040609 C-77.31787690326692 -17.215464306948192, -76.88707404245707 -17.440213883490298, -76.6404204127924 -17.56889292409717 C-76.27289219064696 -17.731586765703607, -75.90536396850152 -17.894280607310044, -75.49739409514781 -18.07487676824742 C-75.25037059875635 -18.16578369837965, -75.00334710236488 -18.256690628511876, -74.32429775146062 -18.506587066708033 C-73.96764101130587 -18.612440915056528, -73.61098427115114 -18.718294763405023, -73.12595188623541 -18.862249829261067 C-72.647902840457 -18.97136140439843, -72.16985379467859 -19.08047297953579, -71.90728075967677 -19.140403561325773 C-71.54837534185596 -19.198428605925958, -71.18946992403515 -19.25645365052614, -70.67329215284788 -19.3399052695533 C-70.28056889115365 -19.377790810290115, -69.88784562945942 -19.415676351026935, -69.4290567896239 -19.45993515863156 C-69.01332294825848 -19.473266933747315, -68.59758910689307 -19.48659870886307, -68.1796875 -19.5 C-68.1796875 -19.5, -68.1796875 -19.5, -68.1796875 -19.5\" stroke=\"none\" stroke-width=\"0\" fill=\"#1f2020\" style=\"\"></path><path d=\"M-68.1796875 -19.5 C-37.44896904494987 -19.5, -6.718250589899739 -19.5, 68.1796875 -19.5 M-68.1796875 -19.5 C-26.92129552499666 -19.5, 14.337096450006683 -19.5, 68.1796875 -19.5 M68.1796875 -19.5 C68.1796875 -19.5, 68.1796875 -19.5, 68.1796875 -19.5 M68.1796875 -19.5 C68.1796875 -19.5, 68.1796875 -19.5, 68.1796875 -19.5 M68.1796875 -19.5 C68.5240496905597 -19.488956974809092, 68.8684118811194 -19.477913949618184, 69.4290567896239 -19.45993515863156 M68.1796875 -19.5 C68.55667618248756 -19.48791070671658, 68.93366486497513 -19.47582141343316, 69.4290567896239 -19.45993515863156 M69.4290567896239 -19.45993515863156 C69.84435702117803 -19.419871644765138, 70.25965725273214 -19.379808130898713, 70.67329215284786 -19.3399052695533 M69.4290567896239 -19.45993515863156 C69.92471248719994 -19.412119849599588, 70.42036818477598 -19.36430454056762, 70.67329215284786 -19.3399052695533 M70.67329215284786 -19.3399052695533 C71.05973948746745 -19.277427461435842, 71.44618682208704 -19.21494965331839, 71.90728075967675 -19.140403561325776 M70.67329215284786 -19.3399052695533 C70.9695492318742 -19.292008722524283, 71.26580631090052 -19.244112175495268, 71.90728075967675 -19.140403561325776 M71.90728075967675 -19.140403561325776 C72.34633159195599 -19.04019307393248, 72.78538242423521 -18.939982586539177, 73.12595188623538 -18.862249829261074 M71.90728075967675 -19.140403561325776 C72.26420406413631 -19.058938146225113, 72.62112736859586 -18.97747273112445, 73.12595188623538 -18.862249829261074 M73.12595188623538 -18.862249829261074 C73.41958203673099 -18.775101941890092, 73.7132121872266 -18.687954054519107, 74.3242977514606 -18.50658706670804 M73.12595188623538 -18.862249829261074 C73.42940195089703 -18.77218744291139, 73.73285201555868 -18.68212505656171, 74.3242977514606 -18.50658706670804 M74.3242977514606 -18.50658706670804 C74.72524334749359 -18.35903538106744, 75.12618894352657 -18.211483695426843, 75.4973940951478 -18.074876768247425 M74.3242977514606 -18.50658706670804 C74.74664249955177 -18.35116029529844, 75.16898724764293 -18.195733523888833, 75.4973940951478 -18.074876768247425 M75.4973940951478 -18.074876768247425 C75.81705626068435 -17.933371810005617, 76.13671842622092 -17.79186685176381, 76.64042041279238 -17.568892924097174 M75.4973940951478 -18.074876768247425 C75.9158209885546 -17.88965159472902, 76.3342478819614 -17.704426421210616, 76.64042041279238 -17.568892924097174 M76.64042041279238 -17.568892924097174 C77.07300101209844 -17.343215902520296, 77.50558161140452 -17.117538880943417, 77.74867976407678 -16.990714730406097 M76.64042041279238 -17.568892924097174 C76.89798171553475 -17.434523357432365, 77.15554301827713 -17.30015379076756, 77.74867976407678 -16.990714730406097 M77.74867976407678 -16.990714730406097 C78.09672699181299 -16.77972645559987, 78.44477421954919 -16.568738180793645, 78.8176180736057 -16.342718045390892 M77.74867976407678 -16.990714730406097 C78.16338501648333 -16.739317969318673, 78.57809026888987 -16.487921208231253, 78.8176180736057 -16.342718045390892 M78.8176180736057 -16.342718045390892 C79.14076887273453 -16.117302036891257, 79.46391967186334 -15.891886028391623, 79.84284284457871 -15.627565626425154 M78.8176180736057 -16.342718045390892 C79.1765409848263 -16.092348960045804, 79.5354638960469 -15.841979874700717, 79.84284284457871 -15.627565626425154 M79.84284284457871 -15.627565626425154 C80.1728359159632 -15.364404933480452, 80.50282898734768 -15.101244240535749, 80.82014120850187 -14.848196188198123 M79.84284284457871 -15.627565626425154 C80.21559268700229 -15.330307546382247, 80.58834252942584 -15.033049466339342, 80.82014120850187 -14.848196188198123 M80.82014120850187 -14.848196188198123 C81.12578398370631 -14.570619506622132, 81.43142675891076 -14.293042825046138, 81.74549723676799 -14.007812326905688 M80.82014120850187 -14.848196188198123 C81.13478444734811 -14.562445523681868, 81.44942768619435 -14.276694859165612, 81.74549723676799 -14.007812326905688 M81.74549723676799 -14.007812326905688 C82.07976634542891 -13.662652028209074, 82.41403545408983 -13.317491729512462, 82.61510844296865 -13.10986736009568 M81.74549723676799 -14.007812326905688 C81.98661105800147 -13.75884251066924, 82.22772487923496 -13.509872694432792, 82.61510844296865 -13.10986736009568 M82.61510844296865 -13.10986736009568 C82.93343013673947 -12.735948585574967, 83.25175183051032 -12.362029811054253, 83.42540140812658 -12.158051136245305 M82.61510844296865 -13.10986736009568 C82.83139145827579 -12.855809023463697, 83.04767447358294 -12.601750686831714, 83.42540140812658 -12.158051136245305 M83.42540140812658 -12.158051136245305 C83.65194956679902 -11.854497242586069, 83.87849772547146 -11.550943348926832, 84.17304646464063 -11.156274872382312 M83.42540140812658 -12.158051136245305 C83.62722913339807 -11.887620371265529, 83.82905685866956 -11.61718960628575, 84.17304646464063 -11.156274872382312 M84.17304646464063 -11.156274872382312 C84.35067626202567 -10.883387803319625, 84.52830605941071 -10.61050073425694, 84.85497137860425 -10.108655082055241 M84.17304646464063 -11.156274872382312 C84.32989921942814 -10.915306920166568, 84.48675197421565 -10.674338967950822, 84.85497137860425 -10.108655082055241 M84.85497137860425 -10.108655082055241 C85.0743454239419 -9.719134250527322, 85.29371946927958 -9.329613418999402, 85.4683739742735 -9.019496659696287 M84.85497137860425 -10.108655082055241 C85.09733752975544 -9.67830943845223, 85.33970368090664 -9.247963794849218, 85.4683739742735 -9.019496659696287 M85.4683739742735 -9.019496659696287 C85.65873102303173 -8.624216174961465, 85.84908807178996 -8.22893569022664, 86.01073364880834 -7.893275190886684 M85.4683739742735 -9.019496659696287 C85.6128370765165 -8.719515936873494, 85.7573001787595 -8.4195352140507, 86.01073364880834 -7.893275190886684 M86.01073364880834 -7.893275190886684 C86.11734957845627 -7.62993178337753, 86.2239655081042 -7.366588375868375, 86.47982172997033 -6.734618561215508 M86.01073364880834 -7.893275190886684 C86.18986700630154 -7.450812334570632, 86.36900036379473 -7.008349478254579, 86.47982172997033 -6.734618561215508 M86.47982172997033 -6.734618561215508 C86.61288174137465 -6.333863007099461, 86.74594175277898 -5.933107452983412, 86.87371063421489 -5.548287939305138 M86.47982172997033 -6.734618561215508 C86.57172437808593 -6.457822427789744, 86.66362702620155 -6.1810262943639795, 86.87371063421489 -5.548287939305138 M86.87371063421489 -5.548287939305138 C86.98878881665543 -5.10944495445958, 87.10386699909597 -4.670601969614022, 87.19078178754556 -4.339158212148133 M86.87371063421489 -5.548287939305138 C86.96371617142532 -5.20505781727515, 87.05372170863576 -4.861827695245163, 87.19078178754556 -4.339158212148133 M87.19078178754556 -4.339158212148133 C87.27487225401809 -3.9073714393380365, 87.35896272049064 -3.47558466652794, 87.42973227658177 -3.1121979531509023 M87.19078178754556 -4.339158212148133 C87.26543136079036 -3.9558484307289485, 87.34008093403517 -3.572538649309764, 87.42973227658177 -3.1121979531509023 M87.42973227658177 -3.1121979531509023 C87.46788392065353 -2.8163013356246154, 87.5060355647253 -2.520404718098329, 87.58958020250937 -1.872449005199798 M87.42973227658177 -3.1121979531509023 C87.47757933700773 -2.7411056009579897, 87.52542639743368 -2.370013248765077, 87.58958020250937 -1.872449005199798 M87.58958020250937 -1.872449005199798 C87.62019557544066 -1.3955898595106675, 87.65081094837196 -0.9187307138215371, 87.66966871591342 -0.6250057626472757 M87.58958020250937 -1.872449005199798 C87.61371627904393 -1.496510130883717, 87.63785235557849 -1.120571256567636, 87.66966871591342 -0.6250057626472757 M87.66966871591342 -0.6250057626472757 C87.66966871591342 -0.3086672416271414, 87.66966871591342 0.007671279392992947, 87.66966871591342 0.625005762647271 M87.66966871591342 -0.6250057626472757 C87.66966871591342 -0.2472150764282643, 87.66966871591342 0.13057560979074712, 87.66966871591342 0.625005762647271 M87.66966871591342 0.625005762647271 C87.65051601392668 0.9233245558735703, 87.63136331193994 1.2216433490998697, 87.58958020250937 1.8724490051997846 M87.66966871591342 0.625005762647271 C87.64370664861296 1.0293859170554178, 87.61774458131251 1.4337660714635645, 87.58958020250937 1.8724490051997846 M87.58958020250937 1.8724490051997846 C87.54773089097158 2.1970240014055213, 87.5058815794338 2.5215989976112585, 87.42973227658177 3.1121979531508885 M87.58958020250937 1.8724490051997846 C87.55438279982128 2.145433109935284, 87.51918539713319 2.418417214670783, 87.42973227658177 3.1121979531508885 M87.42973227658177 3.1121979531508885 C87.354859888507 3.4966518416300625, 87.27998750043221 3.8811057301092364, 87.19078178754556 4.339158212148129 M87.42973227658177 3.1121979531508885 C87.35894245850726 3.4756887075301535, 87.28815264043276 3.839179461909418, 87.19078178754556 4.339158212148129 M87.19078178754556 4.339158212148129 C87.10401340832856 4.67004364775602, 87.01724502911155 5.0009290833639115, 86.87371063421489 5.548287939305125 M87.19078178754556 4.339158212148129 C87.10230931869712 4.67654208007778, 87.01383684984869 5.013925948007431, 86.87371063421489 5.548287939305125 M86.87371063421489 5.548287939305125 C86.76122230186127 5.887084873772413, 86.64873396950763 6.2258818082397, 86.47982172997033 6.734618561215495 M86.87371063421489 5.548287939305125 C86.77616857504574 5.842069080305972, 86.67862651587662 6.135850221306818, 86.47982172997033 6.734618561215495 M86.47982172997033 6.734618561215495 C86.36786627777632 7.011150692646112, 86.2559108255823 7.28768282407673, 86.01073364880834 7.893275190886679 M86.47982172997033 6.734618561215495 C86.30494582839465 7.166565419102967, 86.13006992681898 7.598512276990439, 86.01073364880834 7.893275190886679 M86.01073364880834 7.893275190886679 C85.82844222824271 8.271807226102794, 85.64615080767706 8.65033926131891, 85.4683739742735 9.019496659696284 M86.01073364880834 7.893275190886679 C85.88237550235269 8.159813628426203, 85.75401735589705 8.426352065965727, 85.4683739742735 9.019496659696284 M85.4683739742735 9.019496659696284 C85.24964570089666 9.407870857716254, 85.03091742751982 9.796245055736224, 84.85497137860425 10.108655082055236 M85.4683739742735 9.019496659696284 C85.31407261427985 9.293474349071992, 85.1597712542862 9.567452038447701, 84.85497137860425 10.108655082055236 M84.85497137860425 10.108655082055236 C84.60182101221675 10.49756202521798, 84.34867064582923 10.886468968380726, 84.17304646464065 11.156274872382301 M84.85497137860425 10.108655082055236 C84.64346111506329 10.433591645312442, 84.43195085152233 10.758528208569649, 84.17304646464065 11.156274872382301 M84.17304646464065 11.156274872382301 C83.9755751964142 11.420868381803126, 83.77810392818775 11.685461891223952, 83.42540140812659 12.158051136245302 M84.17304646464065 11.156274872382301 C83.99385541371812 11.39637455597792, 83.8146643627956 11.636474239573538, 83.42540140812659 12.158051136245302 M83.42540140812659 12.158051136245302 C83.22264029807278 12.396225873548511, 83.01987918801896 12.634400610851719, 82.61510844296866 13.10986736009567 M83.42540140812659 12.158051136245302 C83.22919291396502 12.388528798067075, 83.03298441980346 12.61900645988885, 82.61510844296866 13.10986736009567 M82.61510844296866 13.10986736009567 C82.37684278522447 13.355896213690848, 82.13857712748029 13.601925067286025, 81.74549723676799 14.007812326905684 M82.61510844296866 13.10986736009567 C82.37241620740909 13.360467018714026, 82.12972397184953 13.611066677332383, 81.74549723676799 14.007812326905684 M81.74549723676799 14.007812326905684 C81.50493988232591 14.226280151411158, 81.26438252788384 14.444747975916634, 80.8201412085019 14.848196188198111 M81.74549723676799 14.007812326905684 C81.55434240849922 14.18141408425978, 81.36318758023044 14.355015841613874, 80.8201412085019 14.848196188198111 M80.8201412085019 14.848196188198111 C80.60420154493526 15.020402323496711, 80.38826188136865 15.192608458795311, 79.84284284457871 15.627565626425152 M80.8201412085019 14.848196188198111 C80.52382823699332 15.084497897756863, 80.22751526548475 15.320799607315616, 79.84284284457871 15.627565626425152 M79.84284284457871 15.627565626425152 C79.49957132434845 15.86701697895317, 79.15629980411819 16.10646833148119, 78.8176180736057 16.34271804539089 M79.84284284457871 15.627565626425152 C79.60586036597206 15.792874344694992, 79.36887788736543 15.958183062964832, 78.8176180736057 16.34271804539089 M78.8176180736057 16.34271804539089 C78.5500768285155 16.504903120411445, 78.28253558342529 16.667088195432, 77.74867976407678 16.990714730406093 M78.8176180736057 16.34271804539089 C78.55056836349405 16.50460514901886, 78.28351865338242 16.666492252646833, 77.74867976407678 16.990714730406093 M77.74867976407678 16.990714730406093 C77.50599247939493 17.117324531375992, 77.26330519471307 17.24393433234589, 76.64042041279238 17.56889292409717 M77.74867976407678 16.990714730406093 C77.3561071522727 17.195519610529523, 76.96353454046863 17.40032449065295, 76.64042041279238 17.56889292409717 M76.64042041279238 17.56889292409717 C76.29946418160259 17.71982413353765, 75.9585079504128 17.87075534297813, 75.4973940951478 18.07487676824742 M76.64042041279238 17.56889292409717 C76.35098037192992 17.697019444253225, 76.06154033106748 17.82514596440928, 75.4973940951478 18.07487676824742 M75.4973940951478 18.07487676824742 C75.21677486212836 18.17814724001433, 74.93615562910892 18.281417711781234, 74.32429775146062 18.506587066708033 M75.4973940951478 18.07487676824742 C75.09041536041192 18.224648704700403, 74.68343662567607 18.374420641153385, 74.32429775146062 18.506587066708033 M74.32429775146062 18.506587066708033 C74.06842868567425 18.582527662349296, 73.81255961988788 18.658468257990556, 73.12595188623541 18.86224982926107 M74.32429775146062 18.506587066708033 C73.91785711130423 18.627216515255995, 73.51141647114784 18.747845963803957, 73.12595188623541 18.86224982926107 M73.12595188623541 18.86224982926107 C72.67192044227103 18.96587954351388, 72.21788899830663 19.069509257766686, 71.90728075967677 19.140403561325773 M73.12595188623541 18.86224982926107 C72.66974349241366 18.966376418112898, 72.2135350985919 19.070503006964724, 71.90728075967677 19.140403561325773 M71.90728075967677 19.140403561325773 C71.62820899346998 19.18552172025222, 71.34913722726318 19.23063987917866, 70.67329215284788 19.3399052695533 M71.90728075967677 19.140403561325773 C71.60995362094852 19.18847310730896, 71.31262648222028 19.236542653292144, 70.67329215284788 19.3399052695533 M70.67329215284788 19.3399052695533 C70.3593713507556 19.37018883178614, 70.04545054866331 19.40047239401898, 69.4290567896239 19.45993515863156 M70.67329215284788 19.3399052695533 C70.33288318871249 19.372744112921765, 69.99247422457708 19.40558295629023, 69.4290567896239 19.45993515863156 M69.4290567896239 19.45993515863156 C68.9382975590661 19.475672851950655, 68.4475383285083 19.491410545269748, 68.1796875 19.5 M69.4290567896239 19.45993515863156 C68.99611371787583 19.473818800269953, 68.56317064612777 19.487702441908343, 68.1796875 19.5 M68.1796875 19.5 C68.1796875 19.5, 68.1796875 19.5, 68.1796875 19.5 M68.1796875 19.5 C68.1796875 19.5, 68.1796875 19.5, 68.1796875 19.5 M68.1796875 19.5 C18.303683471315303 19.5, -31.572320557369395 19.5, -68.1796875 19.5 M68.1796875 19.5 C20.287650964592522 19.5, -27.604385570814955 19.5, -68.1796875 19.5 M-68.1796875 19.5 C-68.56468106334157 19.487654005768146, -68.94967462668315 19.475308011536296, -69.4290567896239 19.45993515863156 M-68.1796875 19.5 C-68.43994699733612 19.49165398448481, -68.70020649467224 19.483307968969623, -69.4290567896239 19.45993515863156 M-69.4290567896239 19.45993515863156 C-69.70023050940651 19.43377535601824, -69.97140422918913 19.407615553404927, -70.67329215284786 19.3399052695533 M-69.4290567896239 19.45993515863156 C-69.70961152726926 19.43287038050735, -69.99016626491462 19.40580560238314, -70.67329215284786 19.3399052695533 M-70.67329215284786 19.3399052695533 C-71.0186612281757 19.284068675831474, -71.36403030350353 19.228232082109653, -71.90728075967675 19.140403561325773 M-70.67329215284786 19.3399052695533 C-71.14762251020099 19.263219215863305, -71.62195286755411 19.186533162173312, -71.90728075967675 19.140403561325773 M-71.90728075967675 19.140403561325773 C-72.38967168975404 19.03030097943064, -72.87206261983131 18.920198397535504, -73.12595188623538 18.862249829261074 M-71.90728075967675 19.140403561325773 C-72.38913871824313 19.030422626700037, -72.87099667680951 18.920441692074302, -73.12595188623538 18.862249829261074 M-73.12595188623538 18.862249829261074 C-73.51772722231004 18.745972965984823, -73.90950255838469 18.62969610270857, -74.32429775146059 18.506587066708043 M-73.12595188623538 18.862249829261074 C-73.36867877469412 18.79020976286596, -73.61140566315285 18.718169696470845, -74.32429775146059 18.506587066708043 M-74.32429775146059 18.506587066708043 C-74.6913027220732 18.371525844965845, -75.0583076926858 18.236464623223647, -75.4973940951478 18.074876768247425 M-74.32429775146059 18.506587066708043 C-74.68529591567564 18.373736405246458, -75.04629407989067 18.240885743784876, -75.4973940951478 18.074876768247425 M-75.4973940951478 18.074876768247425 C-75.74865642665691 17.963650387520584, -75.99991875816602 17.852424006793743, -76.64042041279238 17.568892924097174 M-75.4973940951478 18.074876768247425 C-75.88455564338213 17.90349183558336, -76.27171719161646 17.7321069029193, -76.64042041279238 17.568892924097174 M-76.64042041279238 17.568892924097174 C-77.01627008542506 17.37281239062791, -77.39211975805775 17.176731857158646, -77.74867976407678 16.990714730406097 M-76.64042041279238 17.568892924097174 C-77.07876183251997 17.34021048619637, -77.51710325224757 17.111528048295565, -77.74867976407678 16.990714730406097 M-77.74867976407678 16.990714730406097 C-78.11953751150288 16.76589858451436, -78.49039525892898 16.541082438622624, -78.81761807360569 16.3427180453909 M-77.74867976407678 16.990714730406097 C-78.1243688314943 16.76296980994358, -78.5000578989118 16.535224889481064, -78.81761807360569 16.3427180453909 M-78.81761807360569 16.3427180453909 C-79.1043912643677 16.142677481726658, -79.39116445512974 15.942636918062417, -79.84284284457871 15.627565626425156 M-78.81761807360569 16.3427180453909 C-79.11973792109166 16.131972318342097, -79.42185776857762 15.921226591293294, -79.84284284457871 15.627565626425156 M-79.84284284457871 15.627565626425156 C-80.07404271669499 15.44318988089941, -80.30524258881127 15.258814135373663, -80.82014120850187 14.848196188198125 M-79.84284284457871 15.627565626425156 C-80.22952163581024 15.319199580372798, -80.61620042704176 15.01083353432044, -80.82014120850187 14.848196188198125 M-80.82014120850187 14.848196188198125 C-81.04299241741856 14.645808616579863, -81.26584362633525 14.443421044961601, -81.74549723676797 14.007812326905697 M-80.82014120850187 14.848196188198125 C-81.08270583760905 14.609741939122378, -81.34527046671624 14.37128769004663, -81.74549723676797 14.007812326905697 M-81.74549723676797 14.007812326905697 C-82.02605668450924 13.718111662753792, -82.30661613225053 13.428410998601885, -82.61510844296865 13.109867360095677 M-81.74549723676797 14.007812326905697 C-82.04890615473691 13.694517708767336, -82.35231507270585 13.381223090628975, -82.61510844296865 13.109867360095677 M-82.61510844296865 13.109867360095677 C-82.89878241601717 12.776647769846543, -83.1824563890657 12.443428179597406, -83.42540140812658 12.158051136245307 M-82.61510844296865 13.109867360095677 C-82.82232537125644 12.866458565151598, -83.02954229954422 12.62304977020752, -83.42540140812658 12.158051136245307 M-83.42540140812658 12.158051136245307 C-83.64936535187174 11.857959855161809, -83.8733292956169 11.557868574078311, -84.17304646464063 11.156274872382316 M-83.42540140812658 12.158051136245307 C-83.71335276091213 11.772222556420573, -84.00130411369767 11.386393976595839, -84.17304646464063 11.156274872382316 M-84.17304646464063 11.156274872382316 C-84.32024754729159 10.930134480405176, -84.46744862994254 10.703994088428034, -84.85497137860425 10.108655082055249 M-84.17304646464063 11.156274872382316 C-84.34188194456226 10.896898236548319, -84.5107174244839 10.63752160071432, -84.85497137860425 10.108655082055249 M-84.85497137860425 10.108655082055249 C-84.99180704407682 9.86568950189505, -85.12864270954941 9.622723921734853, -85.4683739742735 9.019496659696289 M-84.85497137860425 10.108655082055249 C-84.98274918267236 9.881772652026589, -85.1105269867405 9.65489022199793, -85.4683739742735 9.019496659696289 M-85.4683739742735 9.019496659696289 C-85.61698402880353 8.7109047017189, -85.76559408333357 8.40231274374151, -86.01073364880834 7.893275190886686 M-85.4683739742735 9.019496659696289 C-85.67084229653034 8.599066856401873, -85.87331061878717 8.178637053107456, -86.01073364880834 7.893275190886686 M-86.01073364880834 7.893275190886686 C-86.1972772792539 7.432508817110413, -86.38382090969947 6.971742443334139, -86.47982172997033 6.73461856121551 M-86.01073364880834 7.893275190886686 C-86.15231298654135 7.543571489435888, -86.29389232427435 7.19386778798509, -86.47982172997033 6.73461856121551 M-86.47982172997033 6.73461856121551 C-86.59495598192238 6.387852538487769, -86.71009023387445 6.041086515760028, -86.87371063421489 5.5482879393051325 M-86.47982172997033 6.73461856121551 C-86.60148512087092 6.368187812251821, -86.7231485117715 6.0017570632881325, -86.87371063421489 5.5482879393051325 M-86.87371063421489 5.5482879393051325 C-86.94416596225123 5.279611237970198, -87.0146212902876 5.010934536635265, -87.19078178754556 4.339158212148136 M-86.87371063421489 5.5482879393051325 C-86.9829763890666 5.131610259977858, -87.0922421439183 4.714932580650584, -87.19078178754556 4.339158212148136 M-87.19078178754556 4.339158212148136 C-87.2406938997076 4.082870065124737, -87.29060601186963 3.826581918101339, -87.42973227658177 3.112197953150904 M-87.19078178754556 4.339158212148136 C-87.27677043167598 3.8976246982447753, -87.36275907580641 3.4560911843414144, -87.42973227658177 3.112197953150904 M-87.42973227658177 3.112197953150904 C-87.48921572383495 2.6508560825906216, -87.5486991710881 2.1895142120303395, -87.58958020250937 1.872449005199809 M-87.42973227658177 3.112197953150904 C-87.47762814038705 2.7407270915852706, -87.52552400419233 2.3692562300196367, -87.58958020250937 1.872449005199809 M-87.58958020250937 1.872449005199809 C-87.6133156816603 1.5027497584901266, -87.63705116081123 1.1330505117804441, -87.66966871591342 0.6250057626472781 M-87.58958020250937 1.872449005199809 C-87.6109979631224 1.5388500955466435, -87.63241572373543 1.2052511858934782, -87.66966871591342 0.6250057626472781 M-87.66966871591342 0.6250057626472781 C-87.66966871591342 0.2501680808580623, -87.66966871591342 -0.12466960093115353, -87.66966871591342 -0.6250057626472687 M-87.66966871591342 0.6250057626472781 C-87.66966871591342 0.2599315399510005, -87.66966871591342 -0.10514268274527716, -87.66966871591342 -0.6250057626472687 M-87.66966871591342 -0.6250057626472687 C-87.6443028867938 -1.0200990261141012, -87.61893705767417 -1.4151922895809337, -87.58958020250937 -1.8724490051997822 M-87.66966871591342 -0.6250057626472687 C-87.64089681011947 -1.073151419652332, -87.61212490432553 -1.5212970766573952, -87.58958020250937 -1.8724490051997822 M-87.58958020250937 -1.8724490051997822 C-87.54392123949894 -2.2265709059265677, -87.49826227648852 -2.580692806653353, -87.42973227658177 -3.112197953150895 M-87.58958020250937 -1.8724490051997822 C-87.52712052742872 -2.3568739110673813, -87.46466085234806 -2.84129881693498, -87.42973227658177 -3.112197953150895 M-87.42973227658177 -3.112197953150895 C-87.3532199670713 -3.5050724916048424, -87.27670765756082 -3.8979470300587895, -87.19078178754556 -4.339158212148126 M-87.42973227658177 -3.112197953150895 C-87.35859813436792 -3.4774567392127373, -87.28746399215407 -3.842715525274579, -87.19078178754556 -4.339158212148126 M-87.19078178754556 -4.339158212148126 C-87.094427415901 -4.706599191477666, -86.99807304425644 -5.074040170807207, -86.87371063421489 -5.548287939305123 M-87.19078178754556 -4.339158212148126 C-87.09745563933156 -4.6950512630966115, -87.00412949111755 -5.050944314045097, -86.87371063421489 -5.548287939305123 M-86.87371063421489 -5.548287939305123 C-86.72743050933555 -5.988860368868898, -86.5811503844562 -6.429432798432674, -86.47982172997033 -6.734618561215485 M-86.87371063421489 -5.548287939305123 C-86.721708367582 -6.006094548131079, -86.56970610094912 -6.463901156957036, -86.47982172997033 -6.734618561215485 M-86.47982172997033 -6.734618561215485 C-86.35543311226033 -7.041860851849495, -86.23104449455033 -7.349103142483505, -86.01073364880834 -7.893275190886676 M-86.47982172997033 -6.734618561215485 C-86.30582551418827 -7.164392578185162, -86.1318292984062 -7.594166595154839, -86.01073364880834 -7.893275190886676 M-86.01073364880834 -7.893275190886676 C-85.80256300430116 -8.32554598834409, -85.59439235979399 -8.757816785801502, -85.4683739742735 -9.019496659696282 M-86.01073364880834 -7.893275190886676 C-85.8483402106004 -8.23048863998842, -85.68594677239246 -8.567702089090165, -85.4683739742735 -9.019496659696282 M-85.4683739742735 -9.019496659696282 C-85.26822704587522 -9.374877798141624, -85.06808011747694 -9.730258936586965, -84.85497137860425 -10.108655082055243 M-85.4683739742735 -9.019496659696282 C-85.27171430057041 -9.368685824307477, -85.07505462686733 -9.717874988918672, -84.85497137860425 -10.108655082055243 M-84.85497137860425 -10.108655082055243 C-84.61823490769314 -10.47234587401816, -84.38149843678202 -10.836036665981078, -84.17304646464063 -11.156274872382308 M-84.85497137860425 -10.108655082055243 C-84.59837653744246 -10.50285366344226, -84.34178169628068 -10.897052244829277, -84.17304646464063 -11.156274872382308 M-84.17304646464063 -11.156274872382308 C-83.93273791423363 -11.478266437368381, -83.69242936382663 -11.800258002354456, -83.42540140812659 -12.158051136245302 M-84.17304646464063 -11.156274872382308 C-83.93595660210234 -11.473953688852811, -83.69886673956404 -11.791632505323312, -83.42540140812659 -12.158051136245302 M-83.42540140812659 -12.158051136245302 C-83.16440486079237 -12.464632531868332, -82.90340831345814 -12.771213927491361, -82.61510844296866 -13.10986736009567 M-83.42540140812659 -12.158051136245302 C-83.13165061640997 -12.503107531089208, -82.83789982469334 -12.848163925933115, -82.61510844296866 -13.10986736009567 M-82.61510844296866 -13.10986736009567 C-82.3558662684473 -13.37755618946734, -82.09662409392593 -13.64524501883901, -81.74549723676799 -14.007812326905677 M-82.61510844296866 -13.10986736009567 C-82.30499806457634 -13.430081786321315, -81.994887686184 -13.750296212546958, -81.74549723676799 -14.007812326905677 M-81.74549723676799 -14.007812326905677 C-81.39947759629288 -14.322058209207173, -81.05345795581778 -14.63630409150867, -80.8201412085019 -14.848196188198107 M-81.74549723676799 -14.007812326905677 C-81.41964812641741 -14.303739867431057, -81.09379901606684 -14.599667407956437, -80.8201412085019 -14.848196188198107 M-80.8201412085019 -14.848196188198107 C-80.43657245579033 -15.154082061292396, -80.05300370307876 -15.459967934386686, -79.84284284457871 -15.627565626425149 M-80.8201412085019 -14.848196188198107 C-80.43100042159726 -15.158525610283307, -80.04185963469263 -15.468855032368507, -79.84284284457871 -15.627565626425149 M-79.84284284457871 -15.627565626425149 C-79.57950989801267 -15.81125529045009, -79.31617695144664 -15.994944954475033, -78.81761807360571 -16.342718045390885 M-79.84284284457871 -15.627565626425149 C-79.61592710097628 -15.785852226137992, -79.38901135737383 -15.944138825850834, -78.81761807360571 -16.342718045390885 M-78.81761807360571 -16.342718045390885 C-78.5714320174202 -16.491957479400405, -78.32524596123466 -16.64119691340992, -77.74867976407678 -16.99071473040609 M-78.81761807360571 -16.342718045390885 C-78.57735398524021 -16.488367547706563, -78.3370898968747 -16.63401705002224, -77.74867976407678 -16.99071473040609 M-77.74867976407678 -16.99071473040609 C-77.31669019988428 -17.216083409342797, -76.88470063569179 -17.441452088279508, -76.6404204127924 -17.56889292409717 M-77.74867976407678 -16.99071473040609 C-77.47567040601292 -17.133143537637167, -77.20266104794906 -17.275572344868245, -76.6404204127924 -17.56889292409717 M-76.6404204127924 -17.56889292409717 C-76.37077971635058 -17.688254861804893, -76.10113901990877 -17.807616799512616, -75.49739409514781 -18.07487676824742 M-76.6404204127924 -17.56889292409717 C-76.28076405877921 -17.728102123192127, -75.92110770476604 -17.887311322287083, -75.49739409514781 -18.07487676824742 M-75.49739409514781 -18.07487676824742 C-75.13730030294322 -18.207394612449235, -74.77720651073864 -18.33991245665105, -74.32429775146062 -18.506587066708033 M-75.49739409514781 -18.07487676824742 C-75.20171028797076 -18.18369114255973, -74.90602648079368 -18.29250551687204, -74.32429775146062 -18.506587066708033 M-74.32429775146062 -18.506587066708033 C-73.96730412866263 -18.61254090005671, -73.61031050586463 -18.71849473340539, -73.12595188623541 -18.862249829261067 M-74.32429775146062 -18.506587066708033 C-73.99344906885639 -18.604781219044796, -73.66260038625215 -18.70297537138156, -73.12595188623541 -18.862249829261067 M-73.12595188623541 -18.862249829261067 C-72.84904937963458 -18.92545101943498, -72.57214687303376 -18.988652209608897, -71.90728075967677 -19.140403561325773 M-73.12595188623541 -18.862249829261067 C-72.73242720009027 -18.95206927088513, -72.33890251394513 -19.041888712509188, -71.90728075967677 -19.140403561325773 M-71.90728075967677 -19.140403561325773 C-71.51726231211047 -19.203458719290058, -71.12724386454417 -19.266513877254344, -70.67329215284788 -19.3399052695533 M-71.90728075967677 -19.140403561325773 C-71.49857159471652 -19.206480489529632, -71.08986242975628 -19.272557417733495, -70.67329215284788 -19.3399052695533 M-70.67329215284788 -19.3399052695533 C-70.3466265969306 -19.37141830285983, -70.01996104101332 -19.402931336166358, -69.4290567896239 -19.45993515863156 M-70.67329215284788 -19.3399052695533 C-70.18611518699505 -19.386902645533098, -69.69893822114223 -19.433900021512894, -69.4290567896239 -19.45993515863156 M-69.4290567896239 -19.45993515863156 C-69.12627893599551 -19.46964465507608, -68.82350108236714 -19.479354151520603, -68.1796875 -19.5 M-69.4290567896239 -19.45993515863156 C-69.08383233268408 -19.47100583502698, -68.73860787574425 -19.482076511422395, -68.1796875 -19.5 M-68.1796875 -19.5 C-68.1796875 -19.5, -68.1796875 -19.5, -68.1796875 -19.5 M-68.1796875 -19.5 C-68.1796875 -19.5, -68.1796875 -19.5, -68.1796875 -19.5\" stroke=\"#ccc\" stroke-width=\"1.3\" fill=\"none\" stroke-dasharray=\"0 0\" style=\"\"></path></g><g class=\"label\" style=\"\" transform=\"translate(-75.3046875, -12)\"><rect></rect><foreignObject width=\"150.609375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>Proceed to payment</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-flowchart-D-5\" data-look=\"classic\" transform=\"translate(363.33934020996094, 397.921875)\"><rect class=\"basic label-container\" style=\"\" x=\"-130\" y=\"-39\" width=\"260\" height=\"78\"></rect><g class=\"label\" style=\"\" transform=\"translate(-100, -24)\"><rect></rect><foreignObject width=\"200\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;\"><span class=\"nodeLabel\"><p>Collect requirements in your UX</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-flowchart-E-7\" data-look=\"classic\" transform=\"translate(363.33934020996094, 575.1640625)\"><polygon points=\"88.2421875,0 176.484375,-88.2421875 88.2421875,-176.484375 0,-88.2421875\" class=\"label-container\" transform=\"translate(-87.7421875, 88.2421875)\"></polygon><g class=\"label\" style=\"\" transform=\"translate(-61.2421875, -12)\"><rect></rect><foreignObject width=\"122.484375\" height=\"24\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>SELFIE required?</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-flowchart-F-9\" data-look=\"classic\" transform=\"translate(451.27293395996094, 788.40625)\"><rect class=\"basic label-container\" style=\"\" x=\"-130\" y=\"-51\" width=\"260\" height=\"102\"></rect><g class=\"label\" style=\"\" transform=\"translate(-100, -36)\"><rect></rect><foreignObject width=\"200\" height=\"72\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;\"><span class=\"nodeLabel\"><p>POST /identities/share/token<br>KYC token sharing</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-flowchart-G-11\" data-look=\"classic\" transform=\"translate(445.83934020996094, 928.40625)\"><rect class=\"basic label-container\" style=\"\" x=\"-93.4765625\" y=\"-39\" width=\"186.953125\" height=\"78\"></rect><g class=\"label\" style=\"\" transform=\"translate(-63.4765625, -24)\"><rect></rect><foreignObject width=\"126.953125\" height=\"48\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"display: table-cell; white-space: nowrap; line-height: 1.5; max-width: 200px; text-align: center;\"><span class=\"nodeLabel\"><p>PATCH /identities<br>Structured fields</p></span></div></foreignObject></g></g></g></g></g><defs><filter id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-drop-shadow\" height=\"130%\" width=\"130%\"><feDropShadow dx=\"4\" dy=\"4\" stdDeviation=\"0\" flood-opacity=\"0.06\" flood-color=\"#FFFFFF\"></feDropShadow></filter></defs><defs><filter id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-drop-shadow-small\" height=\"150%\" width=\"150%\"><feDropShadow dx=\"2\" dy=\"2\" stdDeviation=\"0\" flood-opacity=\"0.06\" flood-color=\"#FFFFFF\"></feDropShadow></filter></defs><linearGradient id=\"diagram-5a80bd67852ff7ad00a8162852cc51754046cc0b3e359f121eac1755c3c74488-gradient\" gradientUnits=\"objectBoundingBox\" x1=\"0%\" y1=\"0%\" x2=\"100%\" y2=\"0%\"><stop offset=\"0%\" stop-color=\"#cccccc\" stop-opacity=\"1\"></stop><stop offset=\"100%\" stop-color=\"hsl(180, 0%, 18.3529411765%)\" stop-opacity=\"1\"></stop></linearGradient></svg>"},"children":["flowchart TD\n    A[POST /eligibility] --> B{paymentReady?}\n    B -->|true| C([Proceed to payment])\n    B -->|false| D[Collect requirements in your UX]\n    D --> E{SELFIE required?}\n    E -->|Yes| F[POST /identities/share/token\\nKYC token sharing]\n    E -->|No| G[PATCH /identities\\nStructured fields]\n    F --> G\n    G --> A\n"]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"step-5--execute-payment","__idx":9},"children":["Step 5 — Execute payment"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Once ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["paymentReady: true"]}," is confirmed, proceed to your payment method guide for the execution step:"]},{"$$mdtype":"Tag","name":"Cards","attributes":{"columns":3,"cardMinWidth":240},"children":[{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Bank Transfer","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled","to":"/products/native-api/docs/guides/bank-transfer"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Fully API-driven. No SDK required. Banxa returns funding instructions for the user to complete the transfer."]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Apple Pay","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled","to":"/products/native-api/docs/guides/apple-pay"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Native payment sheet via React Native SDK, or Embedded Payment Button for web apps. Requires platform setup."]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Google Pay","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled","to":"/products/native-api/docs/guides/google-pay"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Native payment sheet via React Native SDK, or Embedded Payment Button for web apps. Requires app-level approval for the SDK path."]}]},{"$$mdtype":"Tag","name":"Card","attributes":{"title":"Cards","imagePosition":"start","iconPosition":"auto","layout":"vertical","align":"start","variant":"filled","to":"/products/native-api/docs/guides/cards"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Primer card input drawer via React Native SDK. Requires 3DS SDK setup."]}]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"tracking-transaction-status","__idx":10},"children":["Tracking transaction status"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Transactions are asynchronous. Configure a webhook endpoint to receive status updates:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"{\n  \"order_id\": \"b7f1ffbb2f1bd7a5e2ba152b4049d234\",\n  \"status\": \"COMPLETED\",\n  \"status_date\": \"2026-04-17 03:45:00\",\n  \"external_reason\": \"...\",\n  \"fiat_currency\": \"AUD\",\n  \"fiat_amount\": \"500.00\",\n  \"crypto_coin\": \"USDT\",\n  \"crypto_amount\": \"324.51\",\n  \"transaction_hash\": \"0x...\"\n}\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Acknowledge every webhook with a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["200"]}," response immediately, then process asynchronously. You can also poll directly using ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /eapi/v0/ramps/{id}"]},". See ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/products/native-api/docs/transaction-lifecycle/webhooks"},"children":["Webhooks"]}," for the full payload schema and status values."]}]},"headings":[{"value":"Integration Guide","id":"integration-guide","depth":1},{"value":"Prerequisites","id":"prerequisites","depth":2},{"value":"Two integration approaches","id":"two-integration-approaches","depth":2},{"value":"Full control","id":"full-control","depth":3},{"value":"Quick start","id":"quick-start","depth":3},{"value":"Step 1 — Establish an identityReference","id":"step-1--establish-an-identityreference","depth":2},{"value":"Step 2 — Get pricing","id":"step-2--get-pricing","depth":2},{"value":"Step 3 — Check eligibility","id":"step-3--check-eligibility","depth":2},{"value":"Step 4 — Handle requirements (if any)","id":"step-4--handle-requirements-if-any","depth":2},{"value":"Step 5 — Execute payment","id":"step-5--execute-payment","depth":2},{"value":"Tracking transaction status","id":"tracking-transaction-status","depth":2}],"frontmatter":{"title":"Integration Guide","description":"The common steps every Banxa Native integration shares — identity, pricing, eligibility, and payment execution. Read this before following a payment method guide.","seo":{"title":"Integration Guide"}},"lastModified":"2026-06-02T04:24:27.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/products/native-api/docs/guides/foundations","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}