{"templateId":"markdown","versions":[{"version":"production","label":"September '26","link":"/docs/payments/pro-code-payment-experiences","default":true,"active":true,"folderId":"a2557b8d"}],"sharedDataIds":{"sidebar":"sidebar-docs/@production/sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":[]},"redocly_category":"Accept & Collect","type":"markdown"},"seo":{"title":"Pro-code payment experiences","description":"FinDock's managed components for Payment Experiences can embedded in custom Lighting Web Components (LWCs) for custom pro-code solutions with maximum control over the user experience.","siteUrl":"https://docs.findock.com","keywords":"payment experiences, lightning web component, lwc"},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"pro-code-payment-experiences","__idx":0},"children":["Pro-code payment experiences"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["If pro-code development, when you need full control over every aspect of the user experience, managed LWCs of FinDock Payment Experiences, ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Pay Button"]}," and ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Payment Method Selector"]},", can be implemented in a custom LWC component. This approach simplifies some of the Payment API handling you would otherwise need to develop when building complete LWCs from scratch."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"quick-start-with-findock-labs","__idx":1},"children":["Quick start with FinDock Labs"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["If you need some helping getting started, we have LWC templates and scripts available through ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://github.com/FinDockLabs/experience-cloud-lwc"},"children":["FinDock Labs"]},"."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The repository contains building blocks to help you build custom Lightning Web Components (LWC) for digital payment experiences using Experience Cloud and FinDock's managed LWCS for Payment Experiences. You can deploy the repository content directly to your org as a development baseline."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"using-pay-button-in-lwc","__idx":2},"children":["Using Pay Button in LWC"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When building a custom LWC that leverage the Pay Button LWC, always keep in mind that your custom LWC must pass a complete ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/api/payment-api-v2/payment-intent"},"children":["payment intent"]}," request to the Pay Button component."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The Pay Button properties you can manipulate with your custom LWC are:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["button-label"]},": the label (default \"Pay\") on the payment form button"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["payment-intent"]},": the JSON payload that represents the ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/api/getting-started-with-the-payment-api-v2"},"children":["Payment Intent callout to the Payment API"]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["show-error"]},": boolean (default true) to hide the small red error message above the pay button. Useful when implementing your own error handling."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["onResult"]},": an event handler that is called when the pay button returns a result from the Payment API callout. The result is an object with fields ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["paymentIntentId"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["redirectUrl"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["errorMessage"]},", and ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["statusCode"]},"."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When the callout encounters an error, ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["errorMessage"]}," and ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["statusCode"]}," contain the specific error details returned from the Payment API. When the callout is successful, the payer is redirected automatically. You do not need to handle ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["paymentIntentId"]}," and ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["redirectUrl"]}," yourself."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["customComponent.html"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"html","header":{"controls":{"copy":{}}},"source":"<template>\n    <c-pay-button\n        button-label={buttonLabel}\n        payment-intent={paymentIntent}\n        show-error={showError}\n        onresult={handleResult}\n    ></c-pay-button>\n    <template lwc:if={resultText}>\n        <p>{resultText}</p>\n    </template>\n</template>\n","lang":"html"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["customComponent.js"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"javascript","header":{"controls":{"copy":{}}},"source":"import { LightningElement } from 'lwc';\n\n/**\n * Example Pay Button Wrapper\n *\n * A thin wrapper that renders the Pay Button with a hardcoded button label and\n * an example one-time payment intent payload, used to exercise the direct\n * payment intent path without Flow configuration.\n */\nexport default class CustomComponent extends LightningElement {\n    buttonLabel = 'Pay now';\n    showError = false;\n    resultText;\n\n    handleResult(event) {\n        this.resultText = JSON.stringify(event.detail);\n    }\n\n    paymentIntent = {\n        SuccessURL: 'https://example.com/success',\n        FailureURL: 'https://example.com/failure',\n        Payer: {\n            Contact: {\n                SalesforceFields: {\n                    FirstName: 'Test',\n                    LastName: 'Payment',\n                    Email: 'test@findock.com',\n                    MailingStreet: 'Any Street',\n                    MailingCity: 'Any City',\n                    MailingPostalCode: '00000',\n                    MobilePhone: '012-3456789'\n                }\n            }\n        },\n        OneTime: {\n            Amount: 10,\n            CurrencyISOCode: 'EUR'\n        },\n        PaymentMethod: {\n            Name: 'CreditCard',\n            Processor: 'DummyExtension-PSP',\n            Target: 'Account NL'\n        }\n    };\n}\n","lang":"javascript"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"using-payment-method-selector-in-lwc","__idx":3},"children":["Using Payment Method Selector in LWC"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["There are multiple ways to build your custom LWC for payment method selection. However, the configuration that needs to be passed to the Pay Button LWC must use a specific flat JSON structure. You can use the provided script to automatically build a configuration file based on an existing Salesforce org with FinDock fully configured."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"building-configuration-files","__idx":4},"children":["Building configuration files"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Which methods appear in your custom LWC, and how they're configured, is defined statically in ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["paymentMethodConfiguration.js"]}," configuration file. The configuration files contains an array for every payment method and processor combination you want to offer to payers. What the payer sees is rendered at runtime based on the configuration file."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You can either manually edit the configuration file or use the ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://github.com/FinDockLabs/experience-cloud-lwc#generating-the-config-from-your-org"},"children":["script from FinDock Labs"]},". If you need to build a configuration file without access to a Salesforce org, the following table describes each of the fields you need to modify."]},{"$$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":{"width":"35%","data-label":"Field"},"children":["Field "]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Description"},"children":["Description"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["paymentProcessor"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["String. Name of the FinDock payment extension package for the processor (e.g. ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PaymentHub-Stripe"]},"). Maps to ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PaymentMethod.Processor"]},". Source: ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PaymentMethods[].Processors[].Name"]},"."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["paymentMethod"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["String.l Name of the payment method. Maps to ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PaymentMethod.Name"]}," in the PaymentIntent. Source: ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PaymentMethods[].Name"]}," from ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /PaymentMethods"]},"."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["target"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["String. Merchant account name. Maps to ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PaymentMethod.Target"]},". Find it in FinDock Setup → Processors & Methods → Accounts tab. If empty, FinDock uses the configured default merchant account for the payment processor."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["enabledOneTime"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Boolean. Show this payment method for one-time payments."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["enabledRecurring"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Boolean. Show this method for recurring payments. If the method-processor combination does not support recurring payments, this setting is ignored."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["isDefaultOneTime"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Boolean. Show this payment method pre-selected for one-time payments. Exactly one entry may be ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["true"]},"."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["isDefaultRecurring"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Boolean. Show this payment method pre-selected for recurring payments. Exactly one entry may be ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["true"]}," for a payment method where ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["enabledRecurring"]}," is also ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["true"]},"."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["displayLabel"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["String. Name of the payment method shown to the payer. Use a fixed value or a Custom Label reference (",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["labels.<name>"]},") so the label follows the interface language. Defaults to ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["paymentMethod"]}," value if omitted."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["redirectInstruction"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["String. Text shown to payer before being redirected to hosted payment page of PSP. Use a fixed value or a Custom Label reference (",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["labels.<name>"]},") to keep it translatable. Can be omitted when there is no redirect."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["parameters"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Array of processor-specific parameters. Use ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["null"]}," or omit array when none. See next table for details."]}]}]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["In addition to the above fields, the 'parameters' array can have one or more parameters, each with the following subset of fields."]},{"$$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":{"width":"35%","data-label":"Field"},"children":["Field "]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Description"},"children":["Description"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["name"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Parameter key (maps to ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PaymentMethod.Parameters[name]"]},"). Source: ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Parameters[].Name"]}," from ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GET /PaymentMethods"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["value"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Value sent to the processor. Leave empty for payer-filled fields."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["visibleToCustomer"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Boolean. If ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["true"]},", the parameter is rendered for the payer to fill in. If ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["false"]}," (default), the parameter is silently sent with ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["value"]}," in the PaymentMethod bloc."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["displayLabel"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["String. Label shown to the payer when ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["visibleToCustomer"]}," is ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["true"]},". Use a fixed value or a Custom Label reference (",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["labels.<name>"]},") to support localization. Defaults to ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["name"]}," if empty."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["required"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Boolean. An information field which indicates if the processor requires the parameter."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["description"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["String. An informational field with an explanation of the parameter for internal guidance."]}]}]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["For details on payment processors and related API parameters for supported methods, please refer to the processor-specific configuration article \"Payment method parameters\" section, such as ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/docs/payment-processors/stripe#payment-method-parameters"},"children":["for Stripe"]},"."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Below you can see an example configuration file with one payment processor, Stripe, and two payment methods."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"import {labels} from './paymentFormLabels';\n\nexport const PAYMENT_METHOD_CONFIG = [\n    {\n        paymentProcessor: 'PaymentHub-Stripe',\n        paymentMethod: 'CreditCard',\n        target: 'Stripe-Main-Account',\n        enabledOneTime: true,\n        enabledRecurring: true,\n        isDefaultOneTime: true,\n        isDefaultRecurring: false,\n        displayLabel: 'CreditCard',\n        parameters: [\n            {\n                name: 'locale',\n                value: 'nl-NL',\n                visibleToCustomer: false,\n                description: 'Expected input: language tags as outlined on https://www.oracle.com/java/technologies/javase/jdk13locales.html. Examples: nl-NL, en-US.'\n            },\n            {\n                name: 'description',\n                value: '',\n                visibleToCustomer: true,\n                displayLabel: 'description',\n                required: false,\n                description: \"Description of the payment for the payer's bank.\"\n            }\n        ]\n    },\n    {\n        paymentProcessor: 'PaymentHub-Stripe',\n        paymentMethod: 'Ideal',\n        target: 'Stripe-Main-Account',\n        enabledOneTime: true,\n        enabledRecurring: false,\n        isDefaultOneTime: false,\n        isDefaultRecurring: false,\n        displayLabel: 'iDEAL | Wero',\n        redirectInstruction: 'You will be redirected to your bank to complete the payment.'\n    }\n];\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"handling-the-payment-method-block","__idx":5},"children":["Handling the Payment Method block"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The output of the payer's choices is a payment method, processor and target (merchant account) selection, along with any required and optional parameters for the given method-processor combination. The details build the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PaymentMethod"]}," block of the Payment Intent request to the Payment API. This output feeds into the Pay Button, or, alternatively, directly into a callout to the PaymentIntent endpoint of the Payment API."]},{"$$mdtype":"Tag","name":"Diagram","attributes":{"data-language":"mermaid","diagramType":"mermaid","diagramSource":"flowchart TB\n    paySelect([\"Custom Selector\"])\n    pms[\"Payment Method Selector\"]\n    payform([\"Custom Pay Form\"])\n    pb[\"Pay Button\"]\n\n  %% ================= Edges =================\n  paySelect -->|\"Config file\"| pms\n  pms -->|\"PaymentMethod<br/>block\"| payform\n  payform -->|\"PaymentIntent<br/>(incl. PaymentMethod block)\"| pb\n  pb -->|\"RedirectURL<br/>+ PaymentIntent Id\"| payform\n\n  %% ================= Styling =================\n  style payform fill:#00A1E0, stroke:#24315E\n  style paySelect fill:#00A1E0, stroke:#24315E\n  style pms fill:#8282FC, stroke:#24315E\n  style pb fill:#8282FC, stroke:#24315E\n","diagramHtml":"<svg id=\"diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" class=\"flowchart\" style=\"max-width: 369.3094177246094px;\" viewBox=\"0 0 369.3094177246094 496\" role=\"graphics-document document\" aria-roledescription=\"flowchart-v2\"><style>\n    #diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 foreignObject {\n      overflow: visible;\n    }\n  </style><style>#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;font-size:16px;fill:#333;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .error-icon{fill:#552222;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .error-text{fill:#552222;stroke:#552222;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .edge-thickness-normal{stroke-width:1px;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .edge-thickness-thick{stroke-width:3.5px;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .edge-pattern-solid{stroke-dasharray:0;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .edge-pattern-dashed{stroke-dasharray:3;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .edge-pattern-dotted{stroke-dasharray:2;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .marker{fill:#333333;stroke:#333333;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .marker.cross{stroke:#333333;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 svg{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;font-size:16px;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 p{margin:0;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .label{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;color:#333;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .cluster-label text{fill:#333;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .cluster-label span{color:#333;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .cluster-label span p{background-color:transparent;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .label text,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 span{fill:#333;color:#333;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .node rect,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .node circle,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .node ellipse,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .node polygon,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .node path{fill:#ECECFF;stroke:#9370DB;stroke-width:1px;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .rough-node .label text,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .node .label text,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .image-shape .label,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .icon-shape .label{text-anchor:middle;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .node .katex path{fill:#000;stroke:#000;stroke-width:1px;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .rough-node .label,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .node .label,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .image-shape .label,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .icon-shape .label{text-align:center;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .node.clickable{cursor:pointer;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .root .anchor path{fill:#333333!important;stroke-width:0;stroke:#333333;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .arrowheadPath{fill:#333333;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .edgePath .path{stroke:#333333;stroke-width:1px;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .flowchart-link{stroke:#333333;fill:none;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .edgeLabel{background-color:rgba(232,232,232, 0.8);text-align:center;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .edgeLabel p{background-color:rgba(232,232,232, 0.8);}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .edgeLabel rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .labelBkg{background-color:rgba(232, 232, 232, 0.5);}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .cluster rect{fill:#ffffde;stroke:#aaaa33;stroke-width:1px;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .cluster text{fill:#333;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .cluster span{color:#333;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",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-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .flowchartTitleText{text-anchor:middle;font-size:18px;fill:#333;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 rect.text{fill:none;stroke-width:0;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .icon-shape,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .image-shape{background-color:rgba(232,232,232, 0.8);text-align:center;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .icon-shape p,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .image-shape p{background-color:rgba(232,232,232, 0.8);padding:2px;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .icon-shape .label rect,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .image-shape .label rect{opacity:0.5;background-color:rgba(232,232,232, 0.8);fill:rgba(232,232,232, 0.8);}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .label-icon{display:inline-block;height:1em;overflow:visible;vertical-align:-0.125em;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .node .label-icon path{fill:currentColor;stroke:revert;stroke-width:revert;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 .node .neo-node{stroke:#9370DB;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 [data-look=\"neo\"].node rect,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 [data-look=\"neo\"].cluster rect,#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 [data-look=\"neo\"].node polygon{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 [data-look=\"neo\"].swimlane.cluster rect{filter:none;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 [data-look=\"neo\"].node path{stroke:#9370DB;stroke-width:1px;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 [data-look=\"neo\"].node .outer-path{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 [data-look=\"neo\"].node .neo-line path{stroke:#9370DB;filter:none;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 [data-look=\"neo\"].node circle{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 [data-look=\"neo\"].icon-shape .icon{fill:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 [data-look=\"neo\"].icon-shape .icon-neo path{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;}</style><g><marker id=\"diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_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-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_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-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_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-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_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-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_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-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_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-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_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-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_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-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_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-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_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-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_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-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_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=\"M202.188,47.5L202.104,53.583C202.021,59.667,201.854,71.833,201.771,83.417C201.688,95,201.688,106,201.688,111.5L201.688,117\" id=\"diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37-L_paySelect_pms_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_paySelect_pms_0\" data-points=\"W3sieCI6MjAyLjE4NzUsInkiOjQ3LjUwMDAwMDAwMDAwMDAxfSx7IngiOjIwMS42ODc1LCJ5Ijo4NH0seyJ4IjoyMDEuNjg3NSwieSI6MTIxfV0=\" data-look=\"classic\" marker-end=\"url(#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_flowchart-v2-pointEnd)\"></path><path d=\"M201.688,175L201.688,183.167C201.688,191.333,201.688,207.667,201.764,223.417C201.841,239.167,201.994,254.333,202.07,261.917L202.147,269.5\" id=\"diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37-L_pms_payform_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_pms_payform_0\" data-points=\"W3sieCI6MjAxLjY4NzUsInkiOjE3NX0seyJ4IjoyMDEuNjg3NSwieSI6MjI0fSx7IngiOjIwMi4xODc1LCJ5IjoyNzMuNTAwMDAwMDAwMDAwMDZ9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_flowchart-v2-pointEnd)\"></path><path d=\"M179.493,312.5L167.578,322.583C155.662,332.667,131.831,352.833,130.253,372.627C128.676,392.42,149.351,411.841,159.689,421.551L170.027,431.261\" id=\"diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37-L_payform_pb_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_payform_pb_0\" data-points=\"W3sieCI6MTc5LjQ5MzAxMjQyMjM2MDI0LCJ5IjozMTIuNX0seyJ4IjoxMDgsInkiOjM3M30seyJ4IjoxNzIuOTQyNDcxNTkwOTA5MSwieSI6NDM0fV0=\" data-look=\"classic\" marker-end=\"url(#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_flowchart-v2-pointEnd)\"></path><path d=\"M230.433,434L241.256,423.833C252.08,413.667,273.728,393.333,273.308,373.518C272.889,353.702,250.403,334.403,239.16,324.754L227.917,315.105\" id=\"diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37-L_pb_payform_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_pb_payform_0\" data-points=\"W3sieCI6MjMwLjQzMjUyODQwOTA5MDksInkiOjQzNH0seyJ4IjoyOTUuMzc1LCJ5IjozNzN9LHsieCI6MjI0Ljg4MTk4NzU3NzYzOTc2LCJ5IjozMTIuNX1d\" data-look=\"classic\" marker-end=\"url(#diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37_flowchart-v2-pointEnd)\"></path></g><g class=\"edgeLabels\"><g class=\"edgeLabel\" transform=\"translate(201.6875, 84)\"><g class=\"label\" data-id=\"L_paySelect_pms_0\" transform=\"translate(-35.578125, -12)\"><foreignObject width=\"71.15625\" 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>Config file</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(201.6875, 224)\"><g class=\"label\" data-id=\"L_pms_payform_0\" transform=\"translate(-58.2578125, -24)\"><foreignObject width=\"116.515625\" height=\"48\"><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>PaymentMethod<br>block</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(108, 373)\"><g class=\"label\" data-id=\"L_payform_pb_0\" transform=\"translate(-100, -36)\"><foreignObject width=\"200\" height=\"72\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;\"><span class=\"edgeLabel\"><p>PaymentIntent<br>(incl. PaymentMethod block)</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(293.93442, 371.76363)\"><g class=\"label\" data-id=\"L_pb_payform_0\" transform=\"translate(-67.375, -24)\"><foreignObject width=\"134.75\" height=\"48\"><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>RedirectURL<br>+ PaymentIntent Id</p></span></div></foreignObject></g></g></g><g class=\"nodes\"><g class=\"node default\" id=\"diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37-flowchart-paySelect-0\" data-look=\"classic\" transform=\"translate(201.6875, 27.5)\"><g class=\"basic label-container outer-path\"><path d=\"M-52.0078125 -19.5 C-20.744713185602528 -19.5, 10.518386128794944 -19.5, 52.0078125 -19.5 C52.0078125 -19.5, 52.0078125 -19.5, 52.0078125 -19.5 C52.41160170763835 -19.487051266039053, 52.8153909152767 -19.474102532078103, 53.2571817896239 -19.45993515863156 C53.555399648350026 -19.431166440459698, 53.85361750707616 -19.402397722287837, 54.501417152847864 -19.3399052695533 C54.816134304525264 -19.289024241138062, 55.13085145620266 -19.23814321272282, 55.73540575967676 -19.140403561325776 C56.102701350930246 -19.056570739449896, 56.469996942183734 -18.972737917574015, 56.95407688623539 -18.862249829261074 C57.280005281955056 -18.765515992244538, 57.60593367767472 -18.668782155228005, 58.152422751460605 -18.50658706670804 C58.479795859865774 -18.386110736611098, 58.80716896827094 -18.265634406514152, 59.3255190951478 -18.074876768247425 C59.588632414850494 -17.95840430659436, 59.85174573455319 -17.841931844941293, 60.46854541279238 -17.568892924097174 C60.82278963410151 -17.384083940744453, 61.17703385541064 -17.199274957391737, 61.57680476407678 -16.990714730406097 C61.869948874401885 -16.81300904802101, 62.16309298472699 -16.635303365635924, 62.6457430736057 -16.342718045390892 C62.94700539008256 -16.132570494852125, 63.248267706559425 -15.922422944313356, 63.67096784457871 -15.627565626425154 C63.94248420344078 -15.411038555586412, 64.21400056230284 -15.19451148474767, 64.64826620850187 -14.848196188198123 C64.91357693366061 -14.607248007346078, 65.17888765881933 -14.366299826494034, 65.57362223676799 -14.007812326905688 C65.76949728656741 -13.805555256347118, 65.96537233636683 -13.603298185788548, 66.44323344296865 -13.10986736009568 C66.64615580501084 -12.871503207031424, 66.84907816705302 -12.633139053967167, 67.25352640812658 -12.158051136245305 C67.50372044144238 -11.822813924747464, 67.75391447475818 -11.487576713249624, 68.00117146464063 -11.156274872382312 C68.25865649036422 -10.76070872846035, 68.5161415160878 -10.365142584538392, 68.68309637860425 -10.108655082055241 C68.87448711807134 -9.76882144371751, 69.06587785753844 -9.428987805379778, 69.2964989742735 -9.019496659696287 C69.49948227472568 -8.597997493160477, 69.70246557517785 -8.176498326624667, 69.83885864880834 -7.893275190886684 C69.9699680000008 -7.569432558614451, 70.10107735119325 -7.245589926342216, 70.30794672997033 -6.734618561215508 C70.39087904390908 -6.484839645101763, 70.47381135784785 -6.235060728988019, 70.70183563421489 -5.548287939305138 C70.79600655974976 -5.189173386303355, 70.89017748528464 -4.830058833301573, 71.01890678754556 -4.339158212148133 C71.08224358206861 -4.013937158508532, 71.14558037659165 -3.688716104868931, 71.25785727658177 -3.1121979531509023 C71.31954732787689 -2.6337420973845527, 71.38123737917199 -2.155286241618203, 71.41770520250937 -1.872449005199798 C71.44412630895948 -1.4609189455060476, 71.47054741540958 -1.0493888858122973, 71.49779371591342 -0.6250057626472757 C71.49779371591342 -0.2454793237877677, 71.49779371591342 0.13404711507174027, 71.49779371591342 0.625005762647271 C71.48144840547796 0.8795971663765714, 71.46510309504251 1.1341885701058716, 71.41770520250937 1.8724490051997846 C71.36061930351595 2.315195964906915, 71.30353340452253 2.7579429246140448, 71.25785727658177 3.1121979531508885 C71.17296132908189 3.548120700797996, 71.08806538158198 3.9840434484451035, 71.01890678754556 4.339158212148129 C70.91448724521186 4.737355182782471, 70.81006770287816 5.135552153416814, 70.70183563421489 5.548287939305125 C70.62158428764064 5.789992208871061, 70.54133294106641 6.031696478436996, 70.30794672997033 6.734618561215495 C70.18192573164399 7.045892863531808, 70.05590473331765 7.3571671658481215, 69.83885864880834 7.893275190886679 C69.64963021920917 8.286212073789132, 69.46040178961 8.679148956691584, 69.2964989742735 9.019496659696284 C69.05559307014273 9.447249486848492, 68.81468716601196 9.8750023140007, 68.68309637860425 10.108655082055236 C68.5340082843184 10.33769443063715, 68.38492019003256 10.566733779219065, 68.00117146464065 11.156274872382301 C67.84747588040456 11.362212953302897, 67.69378029616846 11.568151034223495, 67.25352640812659 12.158051136245302 C67.04468195738457 12.403371711672772, 66.83583750664255 12.648692287100241, 66.44323344296866 13.10986736009567 C66.2409139638114 13.318778833063702, 66.03859448465413 13.527690306031735, 65.57362223676799 14.007812326905684 C65.30514443213507 14.251636765539864, 65.03666662750213 14.495461204174045, 64.6482662085019 14.848196188198111 C64.29161373172983 15.132617047502835, 63.934961254957756 15.417037906807558, 63.67096784457871 15.627565626425152 C63.27055378734949 15.90687713910309, 62.87013973012027 16.186188651781027, 62.64574307360571 16.34271804539089 C62.34819790764931 16.523091673563144, 62.0506527416929 16.7034653017354, 61.57680476407678 16.990714730406093 C61.268329841428965 17.151645899963846, 60.95985491878114 17.312577069521595, 60.46854541279239 17.56889292409717 C60.193780358648226 17.690523262951054, 59.91901530450406 17.812153601804933, 59.325519095147804 18.07487676824742 C59.02059647876207 18.187091109751137, 58.71567386237635 18.299305451254853, 58.15242275146062 18.506587066708033 C57.798892847770645 18.611512886406885, 57.44536294408067 18.716438706105738, 56.95407688623541 18.86224982926107 C56.579982655392094 18.94763439625806, 56.20588842454878 19.03301896325505, 55.735405759676766 19.140403561325773 C55.35628157061652 19.201697420061038, 54.977157381556275 19.2629912787963, 54.50141715284788 19.3399052695533 C54.12844346691889 19.375885592468382, 53.7554697809899 19.41186591538347, 53.2571817896239 19.45993515863156 C52.941703782671865 19.47005192427382, 52.62622577571983 19.480168689916084, 52.00781250000001 19.5 C52.00781250000001 19.5, 52.0078125 19.5, 52.0078125 19.5 C14.62236544873219 19.5, -22.76308160253562 19.5, -52.00781249999999 19.5 C-52.34422035509718 19.4892120548652, -52.680628210194364 19.4784241097304, -53.25718178962389 19.45993515863156 C-53.7451894336725 19.41285764812525, -54.23319707772111 19.36578013761894, -54.50141715284787 19.3399052695533 C-54.871715266789614 19.28003834219596, -55.24201338073135 19.22017141483862, -55.73540575967676 19.140403561325773 C-56.01011240408873 19.077703562367127, -56.284819048500694 19.015003563408477, -56.954076886235384 18.862249829261074 C-57.36185703606264 18.741222821274032, -57.769637185889884 18.62019581328699, -58.15242275146059 18.506587066708043 C-58.51886751235911 18.371732007319153, -58.885312273257625 18.236876947930263, -59.3255190951478 18.074876768247425 C-59.571388811056735 17.966037538480524, -59.817258526965674 17.85719830871362, -60.46854541279238 17.568892924097174 C-60.860169632018206 17.36458281977435, -61.251793851244024 17.16027271545152, -61.57680476407678 16.990714730406097 C-61.98247158518148 16.744797119489572, -62.388138406286174 16.498879508573047, -62.645743073605686 16.3427180453909 C-62.86161785499441 16.192133142962795, -63.077492636383134 16.041548240534695, -63.67096784457871 15.627565626425156 C-63.88895955845675 15.453723035610558, -64.10695127233478 15.279880444795959, -64.64826620850187 14.848196188198125 C-64.98631247230485 14.541191515626272, -65.32435873610783 14.234186843054417, -65.57362223676797 14.007812326905697 C-65.7804994852741 13.794194582885133, -65.98737673378024 13.580576838864571, -66.44323344296865 13.109867360095677 C-66.6819412193805 12.829467623065053, -66.92064899579235 12.549067886034429, -67.25352640812658 12.158051136245307 C-67.45692973782661 11.885509204871799, -67.66033306752665 11.61296727349829, -68.00117146464063 11.156274872382316 C-68.14029242217983 10.94254772239423, -68.27941337971903 10.728820572406145, -68.68309637860425 10.108655082055249 C-68.92561830626335 9.678032841488362, -69.16814023392244 9.247410600921473, -69.2964989742735 9.019496659696289 C-69.4787300199397 8.641089994250668, -69.6609610656059 8.262683328805046, -69.83885864880834 7.893275190886686 C-69.97996460088646 7.544740761155722, -70.1210705529646 7.196206331424757, -70.30794672997033 6.73461856121551 C-70.42812977176972 6.372646387883028, -70.54831281356911 6.010674214550547, -70.70183563421489 5.5482879393051325 C-70.818911981541 5.101825085740718, -70.93598832886713 4.655362232176304, -71.01890678754556 4.339158212148136 C-71.09358093535728 3.955722245521704, -71.16825508316899 3.572286278895272, -71.25785727658177 3.112197953150904 C-71.2949322084012 2.8246521032328147, -71.33200714022063 2.5371062533147253, -71.41770520250937 1.872449005199809 C-71.44728675824872 1.4116923967573891, -71.47686831398806 0.9509357883149692, -71.49779371591342 0.6250057626472781 C-71.49779371591342 0.2097548392316148, -71.49779371591342 -0.20549608418404852, -71.49779371591342 -0.6250057626472687 C-71.46941029063971 -1.0671005219736656, -71.44102686536601 -1.5091952813000624, -71.41770520250937 -1.8724490051997822 C-71.36141901751067 -2.308993541085223, -71.30513283251199 -2.7455380769706634, -71.25785727658177 -3.112197953150895 C-71.17118716910531 -3.557230637308871, -71.08451706162883 -4.002263321466847, -71.01890678754556 -4.339158212148126 C-70.93879367149142 -4.64466424490669, -70.85868055543729 -4.950170277665253, -70.70183563421489 -5.548287939305123 C-70.593306026358 -5.875161826325342, -70.4847764185011 -6.202035713345561, -70.30794672997033 -6.734618561215485 C-70.12328584454363 -7.190734518394782, -69.93862495911692 -7.646850475574079, -69.83885864880834 -7.893275190886676 C-69.7252232524401 -8.129241522853302, -69.61158785607186 -8.36520785481993, -69.2964989742735 -9.019496659696282 C-69.15830225585496 -9.264878927183581, -69.02010553743644 -9.510261194670882, -68.68309637860425 -10.108655082055243 C-68.54619785844932 -10.318967971413104, -68.40929933829437 -10.529280860770964, -68.00117146464063 -11.156274872382308 C-67.77874884915448 -11.454300914016637, -67.55632623366833 -11.752326955650966, -67.25352640812659 -12.158051136245302 C-66.98904427778375 -12.468726896005553, -66.7245621474409 -12.779402655765804, -66.44323344296866 -13.10986736009567 C-66.21884927601884 -13.34156243475407, -65.99446510906903 -13.573257509412473, -65.57362223676799 -14.007812326905677 C-65.26372637784432 -14.28925154658504, -64.95383051892065 -14.570690766264406, -64.6482662085019 -14.848196188198107 C-64.32759863742506 -15.10392004280944, -64.00693106634823 -15.359643897420773, -63.67096784457872 -15.627565626425149 C-63.35969805663141 -15.844693955845248, -63.04842826868409 -16.06182228526535, -62.645743073605715 -16.342718045390885 C-62.23937719455164 -16.58905942934444, -61.833011315497565 -16.835400813297998, -61.57680476407679 -16.99071473040609 C-61.30496935050454 -17.13253109154784, -61.033133936932295 -17.27434745268959, -60.46854541279239 -17.56889292409717 C-60.14576841213754 -17.711776727447543, -59.82299141148269 -17.854660530797915, -59.325519095147804 -18.07487676824742 C-58.88939443008739 -18.23537467648186, -58.45326976502698 -18.395872584716304, -58.15242275146062 -18.506587066708033 C-57.87000127891665 -18.590408277298522, -57.58757980637267 -18.67422948788901, -56.95407688623541 -18.862249829261067 C-56.47136950585964 -18.9724246388718, -55.98866212548387 -19.082599448482537, -55.735405759676766 -19.140403561325773 C-55.43538812055986 -19.188908086546654, -55.13537048144295 -19.237412611767535, -54.50141715284788 -19.3399052695533 C-54.242907933306036 -19.364843343059675, -53.9843987137642 -19.389781416566056, -53.2571817896239 -19.45993515863156 C-52.78184864986703 -19.475178167243733, -52.30651551011015 -19.490421175855907, -52.00781250000001 -19.5 C-52.00781250000001 -19.5, -52.0078125 -19.5, -52.0078125 -19.5\" stroke=\"none\" stroke-width=\"0\" fill=\"#00A1E0\" style=\"fill:#00A1E0 !important;stroke:#24315E !important\"></path><path d=\"M-52.0078125 -19.5 C-12.803794285211197 -19.5, 26.400223929577606 -19.5, 52.0078125 -19.5 M-52.0078125 -19.5 C-21.736861091646176 -19.5, 8.534090316707648 -19.5, 52.0078125 -19.5 M52.0078125 -19.5 C52.0078125 -19.5, 52.0078125 -19.5, 52.0078125 -19.5 M52.0078125 -19.5 C52.0078125 -19.5, 52.0078125 -19.5, 52.0078125 -19.5 M52.0078125 -19.5 C52.26326239483196 -19.491808219075796, 52.518712289663924 -19.483616438151593, 53.2571817896239 -19.45993515863156 M52.0078125 -19.5 C52.379467310762955 -19.488081753601037, 52.75112212152592 -19.476163507202074, 53.2571817896239 -19.45993515863156 M53.2571817896239 -19.45993515863156 C53.71543567213255 -19.415727957716875, 54.17368955464121 -19.37152075680219, 54.501417152847864 -19.3399052695533 M53.2571817896239 -19.45993515863156 C53.55744206118154 -19.4309694113502, 53.85770233273919 -19.402003664068847, 54.501417152847864 -19.3399052695533 M54.501417152847864 -19.3399052695533 C54.919710121476705 -19.27227890629581, 55.338003090105545 -19.204652543038318, 55.73540575967676 -19.140403561325776 M54.501417152847864 -19.3399052695533 C54.804584256264185 -19.290891563368948, 55.1077513596805 -19.2418778571846, 55.73540575967676 -19.140403561325776 M55.73540575967676 -19.140403561325776 C56.19578486790617 -19.035325034126856, 56.65616397613558 -18.930246506927936, 56.95407688623539 -18.862249829261074 M55.73540575967676 -19.140403561325776 C56.144538260805405 -19.04702173778224, 56.55367076193405 -18.953639914238707, 56.95407688623539 -18.862249829261074 M56.95407688623539 -18.862249829261074 C57.28377776344938 -18.764396339539186, 57.61347864066336 -18.666542849817294, 58.152422751460605 -18.50658706670804 M56.95407688623539 -18.862249829261074 C57.40038389061592 -18.729788253074204, 57.84669089499645 -18.597326676887338, 58.152422751460605 -18.50658706670804 M58.152422751460605 -18.50658706670804 C58.61701120678934 -18.33561422053846, 59.08159966211807 -18.164641374368884, 59.3255190951478 -18.074876768247425 M58.152422751460605 -18.50658706670804 C58.46479171374216 -18.391632401081395, 58.777160676023705 -18.27667773545475, 59.3255190951478 -18.074876768247425 M59.3255190951478 -18.074876768247425 C59.56264516655962 -17.969908090528396, 59.79977123797145 -17.864939412809367, 60.46854541279238 -17.568892924097174 M59.3255190951478 -18.074876768247425 C59.71528567112812 -17.90233866707561, 60.105052247108446 -17.7298005659038, 60.46854541279238 -17.568892924097174 M60.46854541279238 -17.568892924097174 C60.70476253277636 -17.44565860390582, 60.94097965276033 -17.322424283714465, 61.57680476407678 -16.990714730406097 M60.46854541279238 -17.568892924097174 C60.79126219669814 -17.400531784643505, 61.1139789806039 -17.232170645189832, 61.57680476407678 -16.990714730406097 M61.57680476407678 -16.990714730406097 C61.92732386426549 -16.77822799199283, 62.277842964454194 -16.56574125357956, 62.6457430736057 -16.342718045390892 M61.57680476407678 -16.990714730406097 C61.83160891384402 -16.836250957421807, 62.08641306361125 -16.681787184437514, 62.6457430736057 -16.342718045390892 M62.6457430736057 -16.342718045390892 C62.94803583373276 -16.13185170196893, 63.25032859385983 -15.920985358546966, 63.67096784457871 -15.627565626425154 M62.6457430736057 -16.342718045390892 C62.91425640693326 -16.155414767816442, 63.182769740260824 -15.968111490241993, 63.67096784457871 -15.627565626425154 M63.67096784457871 -15.627565626425154 C63.87975290515369 -15.461065096620407, 64.08853796572866 -15.294564566815662, 64.64826620850187 -14.848196188198123 M63.67096784457871 -15.627565626425154 C64.02814472088806 -15.342726572444306, 64.3853215971974 -15.05788751846346, 64.64826620850187 -14.848196188198123 M64.64826620850187 -14.848196188198123 C64.99016598689475 -14.537691855634135, 65.33206576528762 -14.227187523070144, 65.57362223676799 -14.007812326905688 M64.64826620850187 -14.848196188198123 C64.98970364383815 -14.538111743365201, 65.33114107917444 -14.228027298532279, 65.57362223676799 -14.007812326905688 M65.57362223676799 -14.007812326905688 C65.8806166278683 -13.690815413386348, 66.18761101896864 -13.373818499867006, 66.44323344296865 -13.10986736009568 M65.57362223676799 -14.007812326905688 C65.84237068658261 -13.730307487814013, 66.11111913639724 -13.452802648722338, 66.44323344296865 -13.10986736009568 M66.44323344296865 -13.10986736009568 C66.74145150948705 -12.75956345007447, 67.03966957600545 -12.409259540053258, 67.25352640812658 -12.158051136245305 M66.44323344296865 -13.10986736009568 C66.74749392324252 -12.752465687054219, 67.05175440351637 -12.395064014012759, 67.25352640812658 -12.158051136245305 M67.25352640812658 -12.158051136245305 C67.45893737924153 -11.882819148275704, 67.66434835035649 -11.607587160306101, 68.00117146464063 -11.156274872382312 M67.25352640812658 -12.158051136245305 C67.44003886518755 -11.908141435417996, 67.62655132224852 -11.658231734590688, 68.00117146464063 -11.156274872382312 M68.00117146464063 -11.156274872382312 C68.15955782830912 -10.912950885093748, 68.31794419197759 -10.669626897805184, 68.68309637860425 -10.108655082055241 M68.00117146464063 -11.156274872382312 C68.23968098861374 -10.789860194784755, 68.47819051258685 -10.423445517187197, 68.68309637860425 -10.108655082055241 M68.68309637860425 -10.108655082055241 C68.88361554940127 -9.752612989537322, 69.08413472019828 -9.396570897019403, 69.2964989742735 -9.019496659696287 M68.68309637860425 -10.108655082055241 C68.82732320961182 -9.852565739051006, 68.97155004061938 -9.596476396046768, 69.2964989742735 -9.019496659696287 M69.2964989742735 -9.019496659696287 C69.50473759128722 -8.587084715874665, 69.71297620830094 -8.154672772053043, 69.83885864880834 -7.893275190886684 M69.2964989742735 -9.019496659696287 C69.49988627295745 -8.59715858218801, 69.7032735716414 -8.174820504679733, 69.83885864880834 -7.893275190886684 M69.83885864880834 -7.893275190886684 C70.02625247495274 -7.430408817296854, 70.21364630109714 -6.967542443707025, 70.30794672997033 -6.734618561215508 M69.83885864880834 -7.893275190886684 C69.9556328395156 -7.604840682164354, 70.07240703022286 -7.316406173442024, 70.30794672997033 -6.734618561215508 M70.30794672997033 -6.734618561215508 C70.41378413728546 -6.415853153283145, 70.5196215446006 -6.09708774535078, 70.70183563421489 -5.548287939305138 M70.30794672997033 -6.734618561215508 C70.43326873114336 -6.3571686610315945, 70.5585907323164 -5.979718760847681, 70.70183563421489 -5.548287939305138 M70.70183563421489 -5.548287939305138 C70.80760741522606 -5.144934296529647, 70.91337919623724 -4.7415806537541565, 71.01890678754556 -4.339158212148133 M70.70183563421489 -5.548287939305138 C70.82700638102497 -5.070957632373421, 70.95217712783507 -4.593627325441705, 71.01890678754556 -4.339158212148133 M71.01890678754556 -4.339158212148133 C71.07430144325019 -4.054718362769489, 71.12969609895482 -3.770278513390846, 71.25785727658177 -3.1121979531509023 M71.01890678754556 -4.339158212148133 C71.11304653178023 -3.8557705219451193, 71.2071862760149 -3.3723828317421054, 71.25785727658177 -3.1121979531509023 M71.25785727658177 -3.1121979531509023 C71.30667742318042 -2.733558536760211, 71.35549756977906 -2.3549191203695194, 71.41770520250937 -1.872449005199798 M71.25785727658177 -3.1121979531509023 C71.31172931324869 -2.694377074999267, 71.3656013499156 -2.2765561968476318, 71.41770520250937 -1.872449005199798 M71.41770520250937 -1.872449005199798 C71.43693971153489 -1.572856001310971, 71.45617422056043 -1.2732629974221439, 71.49779371591342 -0.6250057626472757 M71.41770520250937 -1.872449005199798 C71.4484173158404 -1.3940830496972534, 71.47912942917144 -0.9157170941947087, 71.49779371591342 -0.6250057626472757 M71.49779371591342 -0.6250057626472757 C71.49779371591342 -0.37118910419720597, 71.49779371591342 -0.11737244574713623, 71.49779371591342 0.625005762647271 M71.49779371591342 -0.6250057626472757 C71.49779371591342 -0.1612412702983294, 71.49779371591342 0.3025232220506169, 71.49779371591342 0.625005762647271 M71.49779371591342 0.625005762647271 C71.46953145843912 1.0652132356929573, 71.44126920096484 1.5054207087386438, 71.41770520250937 1.8724490051997846 M71.49779371591342 0.625005762647271 C71.46818059416982 1.0862540370854807, 71.43856747242621 1.5475023115236906, 71.41770520250937 1.8724490051997846 M71.41770520250937 1.8724490051997846 C71.35462055740152 2.3617210551840087, 71.29153591229368 2.850993105168233, 71.25785727658177 3.1121979531508885 M71.41770520250937 1.8724490051997846 C71.37684758892154 2.1893325879386016, 71.3359899753337 2.506216170677419, 71.25785727658177 3.1121979531508885 M71.25785727658177 3.1121979531508885 C71.20607881780752 3.378069395575564, 71.15430035903326 3.6439408380002387, 71.01890678754556 4.339158212148129 M71.25785727658177 3.1121979531508885 C71.17531887404449 3.5360152056823075, 71.0927804715072 3.959832458213727, 71.01890678754556 4.339158212148129 M71.01890678754556 4.339158212148129 C70.93366868289752 4.664208047599371, 70.84843057824946 4.989257883050613, 70.70183563421489 5.548287939305125 M71.01890678754556 4.339158212148129 C70.94518384169952 4.620295756385939, 70.87146089585347 4.901433300623749, 70.70183563421489 5.548287939305125 M70.70183563421489 5.548287939305125 C70.57517921942376 5.929756880696772, 70.44852280463265 6.311225822088417, 70.30794672997033 6.734618561215495 M70.70183563421489 5.548287939305125 C70.5697912620138 5.945984549961159, 70.43774688981271 6.343681160617193, 70.30794672997033 6.734618561215495 M70.30794672997033 6.734618561215495 C70.15977245106043 7.100611894877738, 70.01159817215053 7.466605228539982, 69.83885864880834 7.893275190886679 M70.30794672997033 6.734618561215495 C70.13808275259557 7.154185869427744, 69.9682187752208 7.573753177639994, 69.83885864880834 7.893275190886679 M69.83885864880834 7.893275190886679 C69.65168233275047 8.281950816112435, 69.4645060166926 8.67062644133819, 69.2964989742735 9.019496659696284 M69.83885864880834 7.893275190886679 C69.65498019899294 8.275102726296915, 69.47110174917754 8.65693026170715, 69.2964989742735 9.019496659696284 M69.2964989742735 9.019496659696284 C69.06492510418356 9.430679515438083, 68.83335123409363 9.841862371179884, 68.68309637860425 10.108655082055236 M69.2964989742735 9.019496659696284 C69.10583698300094 9.358036331820866, 68.91517499172838 9.696576003945449, 68.68309637860425 10.108655082055236 M68.68309637860425 10.108655082055236 C68.48912921572486 10.406640731714152, 68.29516205284547 10.704626381373068, 68.00117146464065 11.156274872382301 M68.68309637860425 10.108655082055236 C68.50770031449898 10.378110536958827, 68.3323042503937 10.647565991862416, 68.00117146464065 11.156274872382301 M68.00117146464065 11.156274872382301 C67.82928726599194 11.386584039598938, 67.65740306734324 11.616893206815575, 67.25352640812659 12.158051136245302 M68.00117146464065 11.156274872382301 C67.81107204887603 11.410990771093841, 67.6209726331114 11.665706669805381, 67.25352640812659 12.158051136245302 M67.25352640812659 12.158051136245302 C66.96217913406161 12.500284222491558, 66.67083185999662 12.842517308737817, 66.44323344296866 13.10986736009567 M67.25352640812659 12.158051136245302 C67.0596246893181 12.38581912847812, 66.8657229705096 12.613587120710937, 66.44323344296866 13.10986736009567 M66.44323344296866 13.10986736009567 C66.21208144776209 13.348550773078212, 65.9809294525555 13.587234186060753, 65.57362223676799 14.007812326905684 M66.44323344296866 13.10986736009567 C66.12123795157746 13.442354141278583, 65.79924246018625 13.774840922461497, 65.57362223676799 14.007812326905684 M65.57362223676799 14.007812326905684 C65.28665197358804 14.268431127108624, 64.9996817104081 14.529049927311565, 64.6482662085019 14.848196188198111 M65.57362223676799 14.007812326905684 C65.29281005948044 14.262838516435165, 65.0119978821929 14.517864705964646, 64.6482662085019 14.848196188198111 M64.6482662085019 14.848196188198111 C64.35169592397102 15.084703098044761, 64.05512563944015 15.32121000789141, 63.67096784457871 15.627565626425152 M64.6482662085019 14.848196188198111 C64.44426595012877 15.010880965575819, 64.24026569175562 15.173565742953526, 63.67096784457871 15.627565626425152 M63.67096784457871 15.627565626425152 C63.416595246464794 15.805004939257127, 63.16222264835087 15.982444252089104, 62.64574307360571 16.34271804539089 M63.67096784457871 15.627565626425152 C63.373158858701615 15.835304283029801, 63.07534987282451 16.04304293963445, 62.64574307360571 16.34271804539089 M62.64574307360571 16.34271804539089 C62.39585502673719 16.49420164790775, 62.14596697986866 16.645685250424613, 61.57680476407678 16.990714730406093 M62.64574307360571 16.34271804539089 C62.40655070297841 16.487717866115553, 62.1673583323511 16.63271768684022, 61.57680476407678 16.990714730406093 M61.57680476407678 16.990714730406093 C61.290416868850485 17.140123111905453, 61.00402897362418 17.289531493404812, 60.46854541279239 17.56889292409717 M61.57680476407678 16.990714730406093 C61.174934089609735 17.2003704038651, 60.773063415142694 17.410026077324105, 60.46854541279239 17.56889292409717 M60.46854541279239 17.56889292409717 C60.18108518747456 17.696143038640763, 59.89362496215673 17.82339315318435, 59.325519095147804 18.07487676824742 M60.46854541279239 17.56889292409717 C60.141359712482284 17.713728328005494, 59.81417401217219 17.858563731913815, 59.325519095147804 18.07487676824742 M59.325519095147804 18.07487676824742 C58.920475285927985 18.22393663422424, 58.515431476708166 18.372996500201065, 58.15242275146062 18.506587066708033 M59.325519095147804 18.07487676824742 C58.89027381213623 18.235051055758973, 58.45502852912465 18.395225343270525, 58.15242275146062 18.506587066708033 M58.15242275146062 18.506587066708033 C57.83159776338198 18.601806239125047, 57.510772775303344 18.69702541154206, 56.95407688623541 18.86224982926107 M58.15242275146062 18.506587066708033 C57.80614136836218 18.60936156354358, 57.45985998526373 18.712136060379127, 56.95407688623541 18.86224982926107 M56.95407688623541 18.86224982926107 C56.58342890778342 18.946847811638637, 56.21278092933142 19.031445794016207, 55.735405759676766 19.140403561325773 M56.95407688623541 18.86224982926107 C56.62627865752763 18.937067635880272, 56.29848042881984 19.011885442499473, 55.735405759676766 19.140403561325773 M55.735405759676766 19.140403561325773 C55.422433270619734 19.19100252621861, 55.1094607815627 19.24160149111145, 54.50141715284788 19.3399052695533 M55.735405759676766 19.140403561325773 C55.42432734829105 19.190696306429505, 55.113248936905336 19.240989051533237, 54.50141715284788 19.3399052695533 M54.50141715284788 19.3399052695533 C54.0930706855123 19.379297962148684, 53.68472421817672 19.41869065474407, 53.2571817896239 19.45993515863156 M54.50141715284788 19.3399052695533 C54.194636035750804 19.36950007496138, 53.88785491865372 19.39909488036946, 53.2571817896239 19.45993515863156 M53.2571817896239 19.45993515863156 C52.87000858504996 19.47235104971532, 52.48283538047601 19.48476694079908, 52.00781250000001 19.5 M53.2571817896239 19.45993515863156 C53.00091280859753 19.468153206055764, 52.74464382757116 19.476371253479968, 52.00781250000001 19.5 M52.00781250000001 19.5 C52.00781250000001 19.5, 52.00781250000001 19.5, 52.0078125 19.5 M52.00781250000001 19.5 C52.00781250000001 19.5, 52.0078125 19.5, 52.0078125 19.5 M52.0078125 19.5 C25.22972881485686 19.5, -1.548354870286282 19.5, -52.00781249999999 19.5 M52.0078125 19.5 C14.968227069688844 19.5, -22.071358360622312 19.5, -52.00781249999999 19.5 M-52.00781249999999 19.5 C-52.44960595321944 19.48583254385404, -52.89139940643889 19.471665087708086, -53.25718178962389 19.45993515863156 M-52.00781249999999 19.5 C-52.389560040654175 19.48775809939773, -52.771307581308356 19.475516198795464, -53.25718178962389 19.45993515863156 M-53.25718178962389 19.45993515863156 C-53.639877984056014 19.423016917014206, -54.022574178488135 19.386098675396852, -54.50141715284787 19.3399052695533 M-53.25718178962389 19.45993515863156 C-53.69228162172464 19.417961601112907, -54.127381453825386 19.375988043594255, -54.50141715284787 19.3399052695533 M-54.50141715284787 19.3399052695533 C-54.91101896045869 19.27368402580824, -55.32062076806952 19.207462782063182, -55.73540575967676 19.140403561325773 M-54.50141715284787 19.3399052695533 C-54.90162977254022 19.27520199689666, -55.30184239223257 19.21049872424002, -55.73540575967676 19.140403561325773 M-55.73540575967676 19.140403561325773 C-56.059982188760024 19.06632110944666, -56.3845586178433 18.992238657567547, -56.954076886235384 18.862249829261074 M-55.73540575967676 19.140403561325773 C-56.036844533376396 19.07160212830066, -56.338283307076026 19.00280069527555, -56.954076886235384 18.862249829261074 M-56.954076886235384 18.862249829261074 C-57.37037887627917 18.738693583829818, -57.786680866322946 18.615137338398565, -58.15242275146059 18.506587066708043 M-56.954076886235384 18.862249829261074 C-57.35352634652144 18.743695326201177, -57.7529758068075 18.62514082314128, -58.15242275146059 18.506587066708043 M-58.15242275146059 18.506587066708043 C-58.47448213348682 18.3880662370381, -58.79654151551305 18.269545407368152, -59.3255190951478 18.074876768247425 M-58.15242275146059 18.506587066708043 C-58.54925843572061 18.360547866591507, -58.94609411998062 18.214508666474966, -59.3255190951478 18.074876768247425 M-59.3255190951478 18.074876768247425 C-59.59544599310999 17.9553881376165, -59.865372891072184 17.83589950698557, -60.46854541279238 17.568892924097174 M-59.3255190951478 18.074876768247425 C-59.6341805750289 17.938241487221543, -59.94284205491001 17.80160620619566, -60.46854541279238 17.568892924097174 M-60.46854541279238 17.568892924097174 C-60.798488849585844 17.39676164446088, -61.12843228637931 17.22463036482459, -61.57680476407678 16.990714730406097 M-60.46854541279238 17.568892924097174 C-60.798463799693884 17.39677471297347, -61.12838218659539 17.224656501849772, -61.57680476407678 16.990714730406097 M-61.57680476407678 16.990714730406097 C-61.79098144886344 16.860879565446517, -62.005158133650106 16.731044400486937, -62.645743073605686 16.3427180453909 M-61.57680476407678 16.990714730406097 C-61.97981860692751 16.74640537049776, -62.382832449778235 16.502096010589426, -62.645743073605686 16.3427180453909 M-62.645743073605686 16.3427180453909 C-62.939955910079505 16.13748790693518, -63.23416874655332 15.932257768479467, -63.67096784457871 15.627565626425156 M-62.645743073605686 16.3427180453909 C-62.97779895333765 16.111090238157242, -63.309854833069615 15.879462430923583, -63.67096784457871 15.627565626425156 M-63.67096784457871 15.627565626425156 C-63.903828511737665 15.44186544104849, -64.13668917889662 15.256165255671824, -64.64826620850187 14.848196188198125 M-63.67096784457871 15.627565626425156 C-63.900651769575184 15.444398808386408, -64.13033569457166 15.26123199034766, -64.64826620850187 14.848196188198125 M-64.64826620850187 14.848196188198125 C-64.86448587849495 14.651831204769383, -65.08070554848803 14.45546622134064, -65.57362223676797 14.007812326905697 M-64.64826620850187 14.848196188198125 C-64.92245647090525 14.599183846560173, -65.19664673330863 14.350171504922223, -65.57362223676797 14.007812326905697 M-65.57362223676797 14.007812326905697 C-65.91315212250106 13.657219843964237, -66.25268200823416 13.306627361022779, -66.44323344296865 13.109867360095677 M-65.57362223676797 14.007812326905697 C-65.9111217650898 13.659316354686812, -66.24862129341163 13.310820382467925, -66.44323344296865 13.109867360095677 M-66.44323344296865 13.109867360095677 C-66.62539674653884 12.895887978336523, -66.80756005010902 12.681908596577369, -67.25352640812658 12.158051136245307 M-66.44323344296865 13.109867360095677 C-66.73601431410978 12.765950289149787, -67.02879518525091 12.422033218203898, -67.25352640812658 12.158051136245307 M-67.25352640812658 12.158051136245307 C-67.49929048651204 11.82874966077692, -67.74505456489752 11.49944818530853, -68.00117146464063 11.156274872382316 M-67.25352640812658 12.158051136245307 C-67.51715220779592 11.804816581492814, -67.78077800746526 11.451582026740322, -68.00117146464063 11.156274872382316 M-68.00117146464063 11.156274872382316 C-68.1984669730705 10.853175990171954, -68.39576248150037 10.550077107961592, -68.68309637860425 10.108655082055249 M-68.00117146464063 11.156274872382316 C-68.22044545416922 10.819411141155769, -68.43971944369783 10.48254740992922, -68.68309637860425 10.108655082055249 M-68.68309637860425 10.108655082055249 C-68.82645525709162 9.854106876640323, -68.96981413557901 9.599558671225395, -69.2964989742735 9.019496659696289 M-68.68309637860425 10.108655082055249 C-68.81756488764577 9.869892627838967, -68.9520333966873 9.631130173622683, -69.2964989742735 9.019496659696289 M-69.2964989742735 9.019496659696289 C-69.50742703315024 8.581500032301276, -69.71835509202697 8.143503404906264, -69.83885864880834 7.893275190886686 M-69.2964989742735 9.019496659696289 C-69.44622452192264 8.708588356389349, -69.59595006957177 8.39768005308241, -69.83885864880834 7.893275190886686 M-69.83885864880834 7.893275190886686 C-69.96564277310284 7.580115952674981, -70.09242689739735 7.2669567144632765, -70.30794672997033 6.73461856121551 M-69.83885864880834 7.893275190886686 C-70.02544868855442 7.4323941852408755, -70.2120387283005 6.971513179595065, -70.30794672997033 6.73461856121551 M-70.30794672997033 6.73461856121551 C-70.44029759554743 6.33599884134399, -70.57264846112454 5.937379121472469, -70.70183563421489 5.5482879393051325 M-70.30794672997033 6.73461856121551 C-70.4308073785857 6.364581862772005, -70.55366802720107 5.9945451643285, -70.70183563421489 5.5482879393051325 M-70.70183563421489 5.5482879393051325 C-70.81461500709943 5.118211311606978, -70.92739437998397 4.6881346839088245, -71.01890678754556 4.339158212148136 M-70.70183563421489 5.5482879393051325 C-70.79151683074954 5.2062946688420295, -70.8811980272842 4.864301398378926, -71.01890678754556 4.339158212148136 M-71.01890678754556 4.339158212148136 C-71.09870049477443 3.9294343899338484, -71.17849420200331 3.5197105677195606, -71.25785727658177 3.112197953150904 M-71.01890678754556 4.339158212148136 C-71.08551691412991 3.9971292901927247, -71.15212704071426 3.6551003682373135, -71.25785727658177 3.112197953150904 M-71.25785727658177 3.112197953150904 C-71.29968685425233 2.787776008922444, -71.3415164319229 2.463354064693984, -71.41770520250937 1.872449005199809 M-71.25785727658177 3.112197953150904 C-71.30984481690903 2.7089928564736745, -71.3618323572363 2.3057877597964445, -71.41770520250937 1.872449005199809 M-71.41770520250937 1.872449005199809 C-71.43784829864767 1.5587040236311944, -71.45799139478598 1.2449590420625798, -71.49779371591342 0.6250057626472781 M-71.41770520250937 1.872449005199809 C-71.44445557027356 1.4557904347642634, -71.47120593803776 1.0391318643287177, -71.49779371591342 0.6250057626472781 M-71.49779371591342 0.6250057626472781 C-71.49779371591342 0.3396357985656659, -71.49779371591342 0.05426583448405364, -71.49779371591342 -0.6250057626472687 M-71.49779371591342 0.6250057626472781 C-71.49779371591342 0.2724687089578212, -71.49779371591342 -0.08006834473163571, -71.49779371591342 -0.6250057626472687 M-71.49779371591342 -0.6250057626472687 C-71.4674643478992 -1.097410150894054, -71.43713497988496 -1.5698145391408391, -71.41770520250937 -1.8724490051997822 M-71.49779371591342 -0.6250057626472687 C-71.47505600041822 -0.9791640350385766, -71.45231828492302 -1.3333223074298846, -71.41770520250937 -1.8724490051997822 M-71.41770520250937 -1.8724490051997822 C-71.36247757272692 -2.300783595863433, -71.30724994294447 -2.7291181865270837, -71.25785727658177 -3.112197953150895 M-71.41770520250937 -1.8724490051997822 C-71.3772656037172 -2.186090547729778, -71.33682600492504 -2.4997320902597737, -71.25785727658177 -3.112197953150895 M-71.25785727658177 -3.112197953150895 C-71.1681154412464 -3.5730033106544505, -71.07837360591103 -4.033808668158006, -71.01890678754556 -4.339158212148126 M-71.25785727658177 -3.112197953150895 C-71.18751468742099 -3.473392281580034, -71.11717209826021 -3.8345866100091723, -71.01890678754556 -4.339158212148126 M-71.01890678754556 -4.339158212148126 C-70.90122121685701 -4.787944298432577, -70.78353564616845 -5.236730384717028, -70.70183563421489 -5.548287939305123 M-71.01890678754556 -4.339158212148126 C-70.9245626076204 -4.698933459228971, -70.83021842769526 -5.058708706309815, -70.70183563421489 -5.548287939305123 M-70.70183563421489 -5.548287939305123 C-70.58363424494763 -5.904291690944266, -70.46543285568038 -6.260295442583409, -70.30794672997033 -6.734618561215485 M-70.70183563421489 -5.548287939305123 C-70.56180889344344 -5.970026172277361, -70.421782152672 -6.391764405249599, -70.30794672997033 -6.734618561215485 M-70.30794672997033 -6.734618561215485 C-70.17739455061619 -7.057084968274896, -70.04684237126204 -7.379551375334308, -69.83885864880834 -7.893275190886676 M-70.30794672997033 -6.734618561215485 C-70.15485039102377 -7.112769478329817, -70.00175405207723 -7.490920395444149, -69.83885864880834 -7.893275190886676 M-69.83885864880834 -7.893275190886676 C-69.64695434952111 -8.291768574450835, -69.45505005023388 -8.690261958014993, -69.2964989742735 -9.019496659696282 M-69.83885864880834 -7.893275190886676 C-69.69989611087841 -8.181833874220157, -69.5609335729485 -8.47039255755364, -69.2964989742735 -9.019496659696282 M-69.2964989742735 -9.019496659696282 C-69.16086069677038 -9.26033615626803, -69.02522241926727 -9.50117565283978, -68.68309637860425 -10.108655082055243 M-69.2964989742735 -9.019496659696282 C-69.07379109137645 -9.414937057398555, -68.8510832084794 -9.81037745510083, -68.68309637860425 -10.108655082055243 M-68.68309637860425 -10.108655082055243 C-68.4853547825993 -10.412439274572218, -68.28761318659436 -10.716223467089193, -68.00117146464063 -11.156274872382308 M-68.68309637860425 -10.108655082055243 C-68.49622792274323 -10.395735211464201, -68.3093594668822 -10.682815340873159, -68.00117146464063 -11.156274872382308 M-68.00117146464063 -11.156274872382308 C-67.71168317128081 -11.544162812558406, -67.42219487792099 -11.932050752734504, -67.25352640812659 -12.158051136245302 M-68.00117146464063 -11.156274872382308 C-67.77742024339405 -11.456081124697146, -67.55366902214746 -11.755887377011982, -67.25352640812659 -12.158051136245302 M-67.25352640812659 -12.158051136245302 C-67.01589628782342 -12.4371849970903, -66.77826616752024 -12.716318857935297, -66.44323344296866 -13.10986736009567 M-67.25352640812659 -12.158051136245302 C-67.00808152967689 -12.446364656681544, -66.7626366512272 -12.734678177117788, -66.44323344296866 -13.10986736009567 M-66.44323344296866 -13.10986736009567 C-66.10743138500813 -13.456610554801612, -65.77162932704758 -13.803353749507554, -65.57362223676799 -14.007812326905677 M-66.44323344296866 -13.10986736009567 C-66.17715412747667 -13.384616098859217, -65.91107481198469 -13.659364837622766, -65.57362223676799 -14.007812326905677 M-65.57362223676799 -14.007812326905677 C-65.26961511614684 -14.283903550266173, -64.96560799552569 -14.559994773626668, -64.6482662085019 -14.848196188198107 M-65.57362223676799 -14.007812326905677 C-65.28158389191717 -14.27303382478802, -64.98954554706633 -14.538255322670363, -64.6482662085019 -14.848196188198107 M-64.6482662085019 -14.848196188198107 C-64.34137781981758 -15.092931511530848, -64.03448943113327 -15.33766683486359, -63.67096784457872 -15.627565626425149 M-64.6482662085019 -14.848196188198107 C-64.32464907442437 -15.106272240811318, -64.00103194034686 -15.364348293424527, -63.67096784457872 -15.627565626425149 M-63.67096784457872 -15.627565626425149 C-63.40012908562792 -15.81649102024832, -63.129290326677115 -16.00541641407149, -62.645743073605715 -16.342718045390885 M-63.67096784457872 -15.627565626425149 C-63.27128695561989 -15.906365712656005, -62.87160606666106 -16.18516579888686, -62.645743073605715 -16.342718045390885 M-62.645743073605715 -16.342718045390885 C-62.38603963462193 -16.500151796289664, -62.126336195638146 -16.657585547188447, -61.57680476407679 -16.99071473040609 M-62.645743073605715 -16.342718045390885 C-62.268881439258635 -16.571173782816874, -61.892019804911556 -16.799629520242863, -61.57680476407679 -16.99071473040609 M-61.57680476407679 -16.99071473040609 C-61.167431665104615 -17.20428441392389, -60.75805856613244 -17.41785409744169, -60.46854541279239 -17.56889292409717 M-61.57680476407679 -16.99071473040609 C-61.19408784873651 -17.190377899997234, -60.811370933396226 -17.390041069588374, -60.46854541279239 -17.56889292409717 M-60.46854541279239 -17.56889292409717 C-60.102395566447555 -17.730976599624743, -59.73624572010272 -17.89306027515232, -59.325519095147804 -18.07487676824742 M-60.46854541279239 -17.56889292409717 C-60.170389465943636 -17.700877717285195, -59.87223351909488 -17.83286251047322, -59.325519095147804 -18.07487676824742 M-59.325519095147804 -18.07487676824742 C-59.078600654567936 -18.165745036869858, -58.83168221398806 -18.256613305492294, -58.15242275146062 -18.506587066708033 M-59.325519095147804 -18.07487676824742 C-58.91765115304466 -18.224975941231303, -58.509783210941514 -18.37507511421519, -58.15242275146062 -18.506587066708033 M-58.15242275146062 -18.506587066708033 C-57.83672757643971 -18.600283737536447, -57.52103240141881 -18.693980408364865, -56.95407688623541 -18.862249829261067 M-58.15242275146062 -18.506587066708033 C-57.707346873382214 -18.638683251070745, -57.26227099530381 -18.770779435433457, -56.95407688623541 -18.862249829261067 M-56.95407688623541 -18.862249829261067 C-56.47970807180126 -18.970521415609856, -56.005339257367105 -19.078793001958644, -55.735405759676766 -19.140403561325773 M-56.95407688623541 -18.862249829261067 C-56.692620276434305 -18.921925594284343, -56.431163666633196 -18.981601359307618, -55.735405759676766 -19.140403561325773 M-55.735405759676766 -19.140403561325773 C-55.27452923793523 -19.21491450321014, -54.8136527161937 -19.289425445094505, -54.50141715284788 -19.3399052695533 M-55.735405759676766 -19.140403561325773 C-55.42242566853436 -19.19100375526482, -55.10944557739195 -19.241603949203867, -54.50141715284788 -19.3399052695533 M-54.50141715284788 -19.3399052695533 C-54.13268932333593 -19.37547599980622, -53.763961493823984 -19.411046730059144, -53.2571817896239 -19.45993515863156 M-54.50141715284788 -19.3399052695533 C-54.00882881402053 -19.387424674175822, -53.51624047519319 -19.434944078798342, -53.2571817896239 -19.45993515863156 M-53.2571817896239 -19.45993515863156 C-52.99528623378041 -19.468333639358686, -52.73339067793693 -19.47673212008581, -52.00781250000001 -19.5 M-53.2571817896239 -19.45993515863156 C-52.963254588388516 -19.469360831880586, -52.66932738715314 -19.478786505129616, -52.00781250000001 -19.5 M-52.00781250000001 -19.5 C-52.00781250000001 -19.5, -52.00781250000001 -19.5, -52.0078125 -19.5 M-52.00781250000001 -19.5 C-52.00781250000001 -19.5, -52.0078125 -19.5, -52.0078125 -19.5\" stroke=\"#24315E\" stroke-width=\"1.3\" fill=\"none\" stroke-dasharray=\"0 0\" style=\"fill:#00A1E0 !important;stroke:#24315E !important\"></path></g><g class=\"label\" style=\"\" transform=\"translate(-59.1328125, -12)\"><rect></rect><foreignObject width=\"118.265625\" 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>Custom Selector</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37-flowchart-pms-1\" data-look=\"classic\" transform=\"translate(201.6875, 148)\"><rect class=\"basic label-container\" style=\"fill:#8282FC !important;stroke:#24315E !important\" x=\"-122.046875\" y=\"-27\" width=\"244.09375\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-92.046875, -12)\"><rect></rect><foreignObject width=\"184.09375\" 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>Payment Method Selector</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37-flowchart-payform-2\" data-look=\"classic\" transform=\"translate(201.6875, 292.5)\"><g class=\"basic label-container outer-path\"><path d=\"M-57.3359375 -19.5 C-27.038920009687438 -19.5, 3.258097480625125 -19.5, 57.3359375 -19.5 C57.3359375 -19.5, 57.3359375 -19.5, 57.3359375 -19.5 C57.811569220832226 -19.484747416473894, 58.28720094166445 -19.469494832947785, 58.5853067896239 -19.45993515863156 C58.860324443109576 -19.433404536356914, 59.13534209659525 -19.406873914082272, 59.829542152847864 -19.3399052695533 C60.16291924817709 -19.286007446158457, 60.49629634350632 -19.232109622763616, 61.06353075967676 -19.140403561325776 C61.3691725779076 -19.070642810813847, 61.674814396138444 -19.000882060301915, 62.28220188623539 -18.862249829261074 C62.66330581320794 -18.749140184190956, 63.04440974018049 -18.63603053912084, 63.480547751460605 -18.50658706670804 C63.77346475071892 -18.398790903285917, 64.06638174997724 -18.290994739863798, 64.6536440951478 -18.074876768247425 C64.94742218751774 -17.944829921372726, 65.2412002798877 -17.814783074498028, 65.79667041279238 -17.568892924097174 C66.11141642208109 -17.40469013265569, 66.4261624313698 -17.240487341214212, 66.90492976407678 -16.990714730406097 C67.13810177016647 -16.849364490043726, 67.37127377625615 -16.708014249681355, 67.9738680736057 -16.342718045390892 C68.27026006279203 -16.135967824336923, 68.56665205197837 -15.929217603282954, 68.99909284457871 -15.627565626425154 C69.3604751733894 -15.339372835986273, 69.7218575022001 -15.051180045547392, 69.97639120850187 -14.848196188198123 C70.23067322147695 -14.617263991947535, 70.48495523445204 -14.386331795696947, 70.90174723676799 -14.007812326905688 C71.08160584325199 -13.82209354904473, 71.26146444973601 -13.636374771183775, 71.77135844296865 -13.10986736009568 C72.06916589156133 -12.760045785254842, 72.366973340154 -12.410224210414002, 72.58165140812658 -12.158051136245305 C72.77083595190668 -11.904561082646472, 72.96002049568678 -11.651071029047637, 73.32929646464063 -11.156274872382312 C73.49989500893489 -10.894189696222906, 73.67049355322912 -10.6321045200635, 74.01122137860425 -10.108655082055241 C74.1430362795142 -9.874604377783506, 74.27485118042418 -9.640553673511771, 74.6246239742735 -9.019496659696287 C74.75487781823159 -8.749021765731532, 74.88513166218966 -8.478546871766778, 75.16698364880834 -7.893275190886684 C75.27028343888522 -7.638122712231229, 75.37358322896209 -7.382970233575772, 75.63607172997033 -6.734618561215508 C75.72669651294058 -6.461671154007393, 75.81732129591084 -6.188723746799276, 76.02996063421489 -5.548287939305138 C76.10923039567842 -5.245997983112734, 76.18850015714196 -4.943708026920331, 76.34703178754556 -4.339158212148133 C76.40557454856089 -4.038553507351333, 76.46411730957622 -3.7379488025545324, 76.58598227658177 -3.1121979531509023 C76.64485270142681 -2.6556105633330898, 76.70372312627185 -2.1990231735152768, 76.74583020250937 -1.872449005199798 C76.77066796264006 -1.485580842485168, 76.79550572277076 -1.0987126797705378, 76.82591871591342 -0.6250057626472757 C76.82591871591342 -0.24619652004232617, 76.82591871591342 0.13261272256262335, 76.82591871591342 0.625005762647271 C76.799940628265 1.0296354469061793, 76.7739625406166 1.4342651311650876, 76.74583020250937 1.8724490051997846 C76.71095231877767 2.1429549840056947, 76.67607443504596 2.413460962811605, 76.58598227658177 3.1121979531508885 C76.49747953144073 3.5666408443883424, 76.40897678629969 4.021083735625797, 76.34703178754556 4.339158212148129 C76.2440812332177 4.731753294852783, 76.14113067888982 5.124348377557438, 76.02996063421489 5.548287939305125 C75.88853871675256 5.9742282221790655, 75.74711679929024 6.4001685050530055, 75.63607172997033 6.734618561215495 C75.46989384495858 7.145081150025371, 75.30371595994681 7.555543738835248, 75.16698364880834 7.893275190886679 C74.97766609401393 8.286397144164042, 74.78834853921951 8.679519097441405, 74.6246239742735 9.019496659696284 C74.41805111832376 9.386287683204966, 74.21147826237402 9.75307870671365, 74.01122137860425 10.108655082055236 C73.76752241580972 10.483042131241929, 73.5238234530152 10.857429180428623, 73.32929646464065 11.156274872382301 C73.13470148075065 11.417014422827178, 72.94010649686064 11.677753973272054, 72.58165140812659 12.158051136245302 C72.29259735729109 12.497590471998116, 72.00354330645558 12.837129807750928, 71.77135844296866 13.10986736009567 C71.49905381792517 13.391044242078568, 71.22674919288167 13.672221124061467, 70.90174723676799 14.007812326905684 C70.62190114220273 14.261961145667936, 70.34205504763747 14.51610996443019, 69.9763912085019 14.848196188198111 C69.70122684638548 15.067632444554754, 69.42606248426905 15.287068700911398, 68.99909284457871 15.627565626425152 C68.5970310188768 15.908026551058889, 68.19496919317488 16.188487475692625, 67.9738680736057 16.34271804539089 C67.69369122015814 16.51256290045275, 67.41351436671057 16.682407755514614, 66.90492976407678 16.990714730406093 C66.546086671808 17.177922941792744, 66.18724357953923 17.365131153179398, 65.79667041279238 17.56889292409717 C65.37500660057863 17.755550985551622, 64.95334278836489 17.942209047006077, 64.6536440951478 18.07487676824742 C64.2371030573402 18.22816772062376, 63.820562019532616 18.381458673000097, 63.48054775146062 18.506587066708033 C63.05331601358965 18.633387203922982, 62.62608427571868 18.760187341137932, 62.28220188623541 18.86224982926107 C61.83516934470289 18.96428208970591, 61.388136803170376 19.06631435015075, 61.063530759676766 19.140403561325773 C60.750175096507945 19.191064474837447, 60.43681943333913 19.24172538834912, 59.82954215284788 19.3399052695533 C59.377531437994286 19.383510199592806, 58.92552072314069 19.427115129632313, 58.5853067896239 19.45993515863156 C58.153859310348935 19.473770839530335, 57.72241183107396 19.487606520429107, 57.33593750000001 19.5 C57.33593750000001 19.5, 57.3359375 19.5, 57.3359375 19.5 C27.00950020212743 19.5, -3.316937095745139 19.5, -57.33593749999999 19.5 C-57.58802102462071 19.49191617201623, -57.84010454924143 19.483832344032457, -58.58530678962389 19.45993515863156 C-58.91661294753227 19.42797445203209, -59.247919105440644 19.39601374543262, -59.82954215284787 19.3399052695533 C-60.14232150582168 19.2893375294046, -60.45510085879548 19.238769789255908, -61.06353075967676 19.140403561325773 C-61.33315651468645 19.078863242217295, -61.60278226969614 19.017322923108814, -62.282201886235384 18.862249829261074 C-62.625304924283135 18.760418648553102, -62.96840796233088 18.65858746784513, -63.48054775146059 18.506587066708043 C-63.827243227909904 18.378999926556844, -64.17393870435922 18.25141278640564, -64.6536440951478 18.074876768247425 C-64.97704245790281 17.93171790632736, -65.30044082065784 17.788559044407293, -65.79667041279238 17.568892924097174 C-66.12470480057166 17.39775759410877, -66.45273918835096 17.226622264120373, -66.90492976407678 16.990714730406097 C-67.24276155380187 16.78591911415478, -67.58059334352697 16.581123497903466, -67.97386807360569 16.3427180453909 C-68.19857117612575 16.185974888313435, -68.42327427864582 16.02923173123597, -68.99909284457871 15.627565626425156 C-69.32475054162843 15.36786227914327, -69.65040823867817 15.108158931861386, -69.97639120850187 14.848196188198125 C-70.1730182624487 14.669624700270361, -70.36964531639556 14.491053212342596, -70.90174723676797 14.007812326905697 C-71.09750707011621 13.805674226792426, -71.29326690346444 13.603536126679156, -71.77135844296865 13.109867360095677 C-71.94811389986621 12.90224034275337, -72.1248693567638 12.694613325411064, -72.58165140812658 12.158051136245307 C-72.74486788855616 11.939355921796931, -72.90808436898573 11.720660707348554, -73.32929646464063 11.156274872382316 C-73.53289303854318 10.84349586153292, -73.73648961244574 10.530716850683525, -74.01122137860425 10.108655082055249 C-74.20228167228207 9.769408183677623, -74.3933419659599 9.430161285299995, -74.6246239742735 9.019496659696289 C-74.7949583163868 8.665793753726959, -74.96529265850009 8.312090847757629, -75.16698364880834 7.893275190886686 C-75.3479558608957 7.446270328171243, -75.52892807298304 6.9992654654557995, -75.63607172997033 6.73461856121551 C-75.71736378019287 6.489779858074483, -75.79865583041541 6.244941154933456, -76.02996063421489 5.5482879393051325 C-76.13790167644629 5.136661963333143, -76.24584271867771 4.725035987361154, -76.34703178754556 4.339158212148136 C-76.4356585623698 3.884078454701193, -76.52428533719403 3.42899869725425, -76.58598227658177 3.112197953150904 C-76.62196389834891 2.8331316000999016, -76.65794552011604 2.554065247048899, -76.74583020250937 1.872449005199809 C-76.77348682549541 1.44167477816791, -76.80114344848145 1.0109005511360112, -76.82591871591342 0.6250057626472781 C-76.82591871591342 0.1565160642206424, -76.82591871591342 -0.31197363420599333, -76.82591871591342 -0.6250057626472687 C-76.7945642588393 -1.113376740438826, -76.76320980176519 -1.601747718230383, -76.74583020250937 -1.8724490051997822 C-76.69572795852474 -2.2610321157374234, -76.6456257145401 -2.6496152262750643, -76.58598227658177 -3.112197953150895 C-76.53754446816245 -3.3609158620496644, -76.48910665974314 -3.6096337709484336, -76.34703178754556 -4.339158212148126 C-76.27485344229704 -4.6144055248734395, -76.20267509704853 -4.889652837598753, -76.02996063421489 -5.548287939305123 C-75.90746076409536 -5.917238030401387, -75.78496089397584 -6.286188121497652, -75.63607172997033 -6.734618561215485 C-75.47637462738172 -7.129073492142787, -75.3166775247931 -7.52352842307009, -75.16698364880834 -7.893275190886676 C-74.9825315702443 -8.276293878667145, -74.79807949168027 -8.659312566447614, -74.6246239742735 -9.019496659696282 C-74.42474136219309 -9.37440847775431, -74.22485875011269 -9.729320295812338, -74.01122137860425 -10.108655082055243 C-73.74357579083805 -10.519830577767591, -73.47593020307185 -10.931006073479937, -73.32929646464063 -11.156274872382308 C-73.10065612300103 -11.462632100615746, -72.87201578136144 -11.768989328849182, -72.58165140812659 -12.158051136245302 C-72.29138988730747 -12.49900883494786, -72.00112836648835 -12.839966533650417, -71.77135844296866 -13.10986736009567 C-71.53232452575158 -13.35668950467188, -71.2932906085345 -13.603511649248093, -70.90174723676799 -14.007812326905677 C-70.57971475091294 -14.300273710046572, -70.2576822650579 -14.592735093187466, -69.9763912085019 -14.848196188198107 C-69.72270950389901 -15.050500596865238, -69.46902779929611 -15.252805005532366, -68.99909284457871 -15.627565626425149 C-68.68211506851611 -15.848675601259654, -68.3651372924535 -16.06978557609416, -67.97386807360571 -16.342718045390885 C-67.72014623811333 -16.49652571310137, -67.46642440262096 -16.65033338081186, -66.90492976407678 -16.99071473040609 C-66.53593342830058 -17.183219882427107, -66.16693709252438 -17.375725034448124, -65.7966704127924 -17.56889292409717 C-65.42495899108874 -17.73343854405782, -65.0532475693851 -17.897984164018467, -64.65364409514781 -18.07487676824742 C-64.31813083908538 -18.198348747928932, -63.982617583022964 -18.321820727610444, -63.48054775146062 -18.506587066708033 C-63.166764334090374 -18.59971633790075, -62.852980916720135 -18.69284560909347, -62.28220188623541 -18.862249829261067 C-61.90402195990283 -18.948566929591827, -61.52584203357025 -19.034884029922587, -61.063530759676766 -19.140403561325773 C-60.63374313925727 -19.209888290742423, -60.203955518837766 -19.27937302015907, -59.82954215284788 -19.3399052695533 C-59.43002664250165 -19.3784460503487, -59.03051113215542 -19.4169868311441, -58.5853067896239 -19.45993515863156 C-58.156190265259475 -19.47369609034328, -57.72707374089506 -19.487457022055004, -57.33593750000001 -19.5 C-57.33593750000001 -19.5, -57.3359375 -19.5, -57.3359375 -19.5\" stroke=\"none\" stroke-width=\"0\" fill=\"#00A1E0\" style=\"fill:#00A1E0 !important;stroke:#24315E !important\"></path><path d=\"M-57.3359375 -19.5 C-20.092796649119315 -19.5, 17.15034420176137 -19.5, 57.3359375 -19.5 M-57.3359375 -19.5 C-12.955893622804261 -19.5, 31.424150254391478 -19.5, 57.3359375 -19.5 M57.3359375 -19.5 C57.3359375 -19.5, 57.3359375 -19.5, 57.3359375 -19.5 M57.3359375 -19.5 C57.3359375 -19.5, 57.3359375 -19.5, 57.3359375 -19.5 M57.3359375 -19.5 C57.8129124596491 -19.48470434141949, 58.289887419298196 -19.46940868283898, 58.5853067896239 -19.45993515863156 M57.3359375 -19.5 C57.76799932382554 -19.486144618267236, 58.20006114765109 -19.472289236534476, 58.5853067896239 -19.45993515863156 M58.5853067896239 -19.45993515863156 C58.96368887665 -19.42343309376719, 59.34207096367609 -19.386931028902822, 59.829542152847864 -19.3399052695533 M58.5853067896239 -19.45993515863156 C59.07957455073564 -19.412253742161063, 59.57384231184739 -19.364572325690563, 59.829542152847864 -19.3399052695533 M59.829542152847864 -19.3399052695533 C60.194588384007524 -19.280887425875207, 60.55963461516719 -19.22186958219712, 61.06353075967676 -19.140403561325776 M59.829542152847864 -19.3399052695533 C60.30592821134059 -19.262886866045257, 60.78231426983332 -19.18586846253721, 61.06353075967676 -19.140403561325776 M61.06353075967676 -19.140403561325776 C61.46437839601315 -19.048912704107277, 61.865226032349554 -18.957421846888778, 62.28220188623539 -18.862249829261074 M61.06353075967676 -19.140403561325776 C61.32769061405788 -19.080110798367432, 61.591850468439 -19.01981803540909, 62.28220188623539 -18.862249829261074 M62.28220188623539 -18.862249829261074 C62.66876032669442 -18.747521313219494, 63.05531876715345 -18.632792797177917, 63.480547751460605 -18.50658706670804 M62.28220188623539 -18.862249829261074 C62.70984034096912 -18.73532898061616, 63.13747879570286 -18.60840813197124, 63.480547751460605 -18.50658706670804 M63.480547751460605 -18.50658706670804 C63.90559333361711 -18.350166363396156, 64.33063891577362 -18.193745660084268, 64.6536440951478 -18.074876768247425 M63.480547751460605 -18.50658706670804 C63.84260502585415 -18.37334664291046, 64.20466230024769 -18.240106219112878, 64.6536440951478 -18.074876768247425 M64.6536440951478 -18.074876768247425 C64.97006375517016 -17.934807171011247, 65.28648341519252 -17.794737573775066, 65.79667041279238 -17.568892924097174 M64.6536440951478 -18.074876768247425 C64.8850185614816 -17.97245415548113, 65.1163930278154 -17.87003154271484, 65.79667041279238 -17.568892924097174 M65.79667041279238 -17.568892924097174 C66.12636340101758 -17.39689230331852, 66.4560563892428 -17.224891682539866, 66.90492976407678 -16.990714730406097 M65.79667041279238 -17.568892924097174 C66.1217244925668 -17.399312418885938, 66.44677857234122 -17.229731913674698, 66.90492976407678 -16.990714730406097 M66.90492976407678 -16.990714730406097 C67.17094026179039 -16.829457603440904, 67.436950759504 -16.66820047647571, 67.9738680736057 -16.342718045390892 M66.90492976407678 -16.990714730406097 C67.2641060166422 -16.77297997534699, 67.62328226920764 -16.555245220287876, 67.9738680736057 -16.342718045390892 M67.9738680736057 -16.342718045390892 C68.36550634319013 -16.069528142276237, 68.75714461277457 -15.796338239161583, 68.99909284457871 -15.627565626425154 M67.9738680736057 -16.342718045390892 C68.2506380918845 -16.149655261820588, 68.52740811016331 -15.956592478250284, 68.99909284457871 -15.627565626425154 M68.99909284457871 -15.627565626425154 C69.22643385362032 -15.446267221512795, 69.45377486266193 -15.264968816600435, 69.97639120850187 -14.848196188198123 M68.99909284457871 -15.627565626425154 C69.34613275136648 -15.350810535881678, 69.69317265815425 -15.074055445338201, 69.97639120850187 -14.848196188198123 M69.97639120850187 -14.848196188198123 C70.17122729329988 -14.67125121106488, 70.3660633780979 -14.494306233931635, 70.90174723676799 -14.007812326905688 M69.97639120850187 -14.848196188198123 C70.33096134063874 -14.526184975603034, 70.68553147277561 -14.204173763007944, 70.90174723676799 -14.007812326905688 M70.90174723676799 -14.007812326905688 C71.12755051300852 -13.774651905393583, 71.35335378924906 -13.54149148388148, 71.77135844296865 -13.10986736009568 M70.90174723676799 -14.007812326905688 C71.20091253740517 -13.698899592069827, 71.50007783804234 -13.389986857233966, 71.77135844296865 -13.10986736009568 M71.77135844296865 -13.10986736009568 C71.97964694643774 -12.865199831969282, 72.18793544990685 -12.62053230384288, 72.58165140812658 -12.158051136245305 M71.77135844296865 -13.10986736009568 C72.00540815784457 -12.834939247196374, 72.23945787272048 -12.560011134297067, 72.58165140812658 -12.158051136245305 M72.58165140812658 -12.158051136245305 C72.83814427781905 -11.814374057838515, 73.09463714751153 -11.470696979431724, 73.32929646464063 -11.156274872382312 M72.58165140812658 -12.158051136245305 C72.73379536878267 -11.95419208956611, 72.88593932943874 -11.750333042886915, 73.32929646464063 -11.156274872382312 M73.32929646464063 -11.156274872382312 C73.48721228489403 -10.913673766137913, 73.64512810514742 -10.671072659893513, 74.01122137860425 -10.108655082055241 M73.32929646464063 -11.156274872382312 C73.49625554201631 -10.899780894743532, 73.663214619392 -10.643286917104751, 74.01122137860425 -10.108655082055241 M74.01122137860425 -10.108655082055241 C74.2456343983582 -9.692431028589898, 74.48004741811216 -9.276206975124552, 74.6246239742735 -9.019496659696287 M74.01122137860425 -10.108655082055241 C74.21317238806012 -9.750070615009154, 74.41512339751597 -9.391486147963068, 74.6246239742735 -9.019496659696287 M74.6246239742735 -9.019496659696287 C74.79433676115588 -8.667084426463125, 74.96404954803825 -8.314672193229963, 75.16698364880834 -7.893275190886684 M74.6246239742735 -9.019496659696287 C74.75198572140545 -8.755027266671958, 74.8793474685374 -8.490557873647628, 75.16698364880834 -7.893275190886684 M75.16698364880834 -7.893275190886684 C75.27865196557272 -7.617452289518646, 75.39032028233709 -7.341629388150608, 75.63607172997033 -6.734618561215508 M75.16698364880834 -7.893275190886684 C75.278377590654 -7.618130000872559, 75.38977153249965 -7.342984810858434, 75.63607172997033 -6.734618561215508 M75.63607172997033 -6.734618561215508 C75.74856271258547 -6.395813644582802, 75.86105369520061 -6.057008727950095, 76.02996063421489 -5.548287939305138 M75.63607172997033 -6.734618561215508 C75.75075639235371 -6.3892066306362505, 75.86544105473709 -6.043794700056992, 76.02996063421489 -5.548287939305138 M76.02996063421489 -5.548287939305138 C76.09502827870898 -5.300156810353637, 76.16009592320307 -5.052025681402135, 76.34703178754556 -4.339158212148133 M76.02996063421489 -5.548287939305138 C76.09400534685871 -5.304057692840187, 76.15805005950254 -5.059827446375237, 76.34703178754556 -4.339158212148133 M76.34703178754556 -4.339158212148133 C76.41280676194044 -4.001417620176124, 76.47858173633534 -3.6636770282041136, 76.58598227658177 -3.1121979531509023 M76.34703178754556 -4.339158212148133 C76.43897083044925 -3.8670706581612935, 76.53090987335294 -3.394983104174454, 76.58598227658177 -3.1121979531509023 M76.58598227658177 -3.1121979531509023 C76.64496755735678 -2.654719763421188, 76.70395283813177 -2.197241573691474, 76.74583020250937 -1.872449005199798 M76.58598227658177 -3.1121979531509023 C76.6238851785996 -2.8182305298752874, 76.66178808061741 -2.524263106599672, 76.74583020250937 -1.872449005199798 M76.74583020250937 -1.872449005199798 C76.77400046704031 -1.433674396502017, 76.80217073157127 -0.9948997878042356, 76.82591871591342 -0.6250057626472757 M76.74583020250937 -1.872449005199798 C76.76189050941042 -1.622296761569394, 76.77795081631149 -1.37214451793899, 76.82591871591342 -0.6250057626472757 M76.82591871591342 -0.6250057626472757 C76.82591871591342 -0.15091850589906242, 76.82591871591342 0.32316875084915087, 76.82591871591342 0.625005762647271 M76.82591871591342 -0.6250057626472757 C76.82591871591342 -0.1620149066770778, 76.82591871591342 0.3009759492931201, 76.82591871591342 0.625005762647271 M76.82591871591342 0.625005762647271 C76.80601218289745 0.9350660826352726, 76.78610564988148 1.2451264026232742, 76.74583020250937 1.8724490051997846 M76.82591871591342 0.625005762647271 C76.80139648142402 1.0069593588109214, 76.77687424693464 1.3889129549745718, 76.74583020250937 1.8724490051997846 M76.74583020250937 1.8724490051997846 C76.70023597741206 2.226068811456307, 76.65464175231477 2.57968861771283, 76.58598227658177 3.1121979531508885 M76.74583020250937 1.8724490051997846 C76.7085481269974 2.1616014206920777, 76.67126605148543 2.4507538361843704, 76.58598227658177 3.1121979531508885 M76.58598227658177 3.1121979531508885 C76.49361963567458 3.5864605933583196, 76.40125699476737 4.060723233565751, 76.34703178754556 4.339158212148129 M76.58598227658177 3.1121979531508885 C76.4967451749868 3.5704116095730027, 76.40750807339182 4.028625265995117, 76.34703178754556 4.339158212148129 M76.34703178754556 4.339158212148129 C76.22426289148812 4.807329221191253, 76.1014939954307 5.275500230234377, 76.02996063421489 5.548287939305125 M76.34703178754556 4.339158212148129 C76.23867619114775 4.752365062825536, 76.13032059474993 5.1655719135029425, 76.02996063421489 5.548287939305125 M76.02996063421489 5.548287939305125 C75.89129498935623 5.9659267682492585, 75.75262934449755 6.3835655971933924, 75.63607172997033 6.734618561215495 M76.02996063421489 5.548287939305125 C75.8898687789617 5.970222286721782, 75.74977692370851 6.392156634138438, 75.63607172997033 6.734618561215495 M75.63607172997033 6.734618561215495 C75.46292895230395 7.162284569539321, 75.28978617463757 7.5899505778631475, 75.16698364880834 7.893275190886679 M75.63607172997033 6.734618561215495 C75.54104204171067 6.96934372849088, 75.44601235345101 7.204068895766266, 75.16698364880834 7.893275190886679 M75.16698364880834 7.893275190886679 C74.97241928279277 8.29729225992855, 74.7778549167772 8.70130932897042, 74.6246239742735 9.019496659696284 M75.16698364880834 7.893275190886679 C75.02529619977773 8.18749221042451, 74.8836087507471 8.481709229962343, 74.6246239742735 9.019496659696284 M74.6246239742735 9.019496659696284 C74.49598970763286 9.247899825748705, 74.3673554409922 9.476302991801125, 74.01122137860425 10.108655082055236 M74.6246239742735 9.019496659696284 C74.46995716762314 9.294123236616493, 74.31529036097275 9.568749813536703, 74.01122137860425 10.108655082055236 M74.01122137860425 10.108655082055236 C73.75323687740995 10.504988554428174, 73.49525237621563 10.901322026801111, 73.32929646464065 11.156274872382301 M74.01122137860425 10.108655082055236 C73.80063091450567 10.432178586368202, 73.59004045040712 10.75570209068117, 73.32929646464065 11.156274872382301 M73.32929646464065 11.156274872382301 C73.07169774041714 11.501433695115253, 72.81409901619362 11.846592517848203, 72.58165140812659 12.158051136245302 M73.32929646464065 11.156274872382301 C73.13070187123432 11.422373535207123, 72.932107277828 11.688472198031947, 72.58165140812659 12.158051136245302 M72.58165140812659 12.158051136245302 C72.27697256953562 12.515944236771308, 71.97229373094463 12.873837337297314, 71.77135844296866 13.10986736009567 M72.58165140812659 12.158051136245302 C72.36490562587616 12.412653065261047, 72.14815984362573 12.667254994276792, 71.77135844296866 13.10986736009567 M71.77135844296866 13.10986736009567 C71.46602381700652 13.425150429840583, 71.16068919104437 13.740433499585496, 70.90174723676799 14.007812326905684 M71.77135844296866 13.10986736009567 C71.56577792764789 13.32214612063857, 71.36019741232712 13.534424881181469, 70.90174723676799 14.007812326905684 M70.90174723676799 14.007812326905684 C70.62410731074486 14.259957561769992, 70.34646738472173 14.512102796634302, 69.9763912085019 14.848196188198111 M70.90174723676799 14.007812326905684 C70.63015804568224 14.254462444393548, 70.35856885459647 14.501112561881412, 69.9763912085019 14.848196188198111 M69.9763912085019 14.848196188198111 C69.6777290149634 15.086371339810304, 69.37906682142491 15.324546491422495, 68.99909284457871 15.627565626425152 M69.9763912085019 14.848196188198111 C69.73151680064 15.043477012086306, 69.48664239277811 15.238757835974504, 68.99909284457871 15.627565626425152 M68.99909284457871 15.627565626425152 C68.72952295162915 15.815605914254174, 68.4599530586796 16.003646202083196, 67.9738680736057 16.34271804539089 M68.99909284457871 15.627565626425152 C68.77849568272643 15.78144465703608, 68.55789852087415 15.935323687647005, 67.9738680736057 16.34271804539089 M67.9738680736057 16.34271804539089 C67.74423038157965 16.481925763797946, 67.51459268955361 16.621133482205003, 66.90492976407678 16.990714730406093 M67.9738680736057 16.34271804539089 C67.66063778605766 16.532600086448003, 67.34740749850961 16.722482127505117, 66.90492976407678 16.990714730406093 M66.90492976407678 16.990714730406093 C66.51562383750345 17.19381538293705, 66.12631791093013 17.39691603546801, 65.79667041279238 17.56889292409717 M66.90492976407678 16.990714730406093 C66.60455821963332 17.14741837274509, 66.30418667518987 17.304122015084083, 65.79667041279238 17.56889292409717 M65.79667041279238 17.56889292409717 C65.39719043241891 17.745730861255925, 64.99771045204544 17.922568798414677, 64.6536440951478 18.07487676824742 M65.79667041279238 17.56889292409717 C65.49574163211315 17.702105168568757, 65.19481285143391 17.835317413040343, 64.6536440951478 18.07487676824742 M64.6536440951478 18.07487676824742 C64.3573948700988 18.18389922156327, 64.0611456450498 18.292921674879118, 63.48054775146062 18.506587066708033 M64.6536440951478 18.07487676824742 C64.26292673045349 18.218664370206657, 63.87220936575917 18.362451972165893, 63.48054775146062 18.506587066708033 M63.48054775146062 18.506587066708033 C63.095189504314796 18.6209593716742, 62.709831257168965 18.735331676640364, 62.28220188623541 18.86224982926107 M63.48054775146062 18.506587066708033 C63.16523183012842 18.600171177032383, 62.84991590879623 18.693755287356733, 62.28220188623541 18.86224982926107 M62.28220188623541 18.86224982926107 C62.03739904028246 18.91812448136197, 61.792596194329505 18.97399913346287, 61.063530759676766 19.140403561325773 M62.28220188623541 18.86224982926107 C61.91895087354666 18.94515950247289, 61.555699860857914 19.02806917568471, 61.063530759676766 19.140403561325773 M61.063530759676766 19.140403561325773 C60.691801989289125 19.200501786122377, 60.32007321890149 19.26060001091898, 59.82954215284788 19.3399052695533 M61.063530759676766 19.140403561325773 C60.61642474861188 19.21268819383584, 60.169318737546995 19.284972826345914, 59.82954215284788 19.3399052695533 M59.82954215284788 19.3399052695533 C59.47587428600435 19.374023183319853, 59.12220641916082 19.408141097086407, 58.5853067896239 19.45993515863156 M59.82954215284788 19.3399052695533 C59.50563843078835 19.371151872069163, 59.181734708728825 19.402398474585027, 58.5853067896239 19.45993515863156 M58.5853067896239 19.45993515863156 C58.2032161933796 19.472188060358885, 57.821125597135314 19.48444096208621, 57.33593750000001 19.5 M58.5853067896239 19.45993515863156 C58.11926900233388 19.474880083382427, 57.65323121504386 19.489825008133295, 57.33593750000001 19.5 M57.33593750000001 19.5 C57.33593750000001 19.5, 57.33593750000001 19.5, 57.3359375 19.5 M57.33593750000001 19.5 C57.33593750000001 19.5, 57.33593750000001 19.5, 57.3359375 19.5 M57.3359375 19.5 C14.337744156389583 19.5, -28.660449187220834 19.5, -57.33593749999999 19.5 M57.3359375 19.5 C17.69065490445321 19.5, -21.954627691093577 19.5, -57.33593749999999 19.5 M-57.33593749999999 19.5 C-57.77092048883015 19.48605094219124, -58.20590347766031 19.472101884382486, -58.58530678962389 19.45993515863156 M-57.33593749999999 19.5 C-57.76325739673461 19.48629668263944, -58.19057729346923 19.472593365278886, -58.58530678962389 19.45993515863156 M-58.58530678962389 19.45993515863156 C-59.00821266245989 19.419137937697794, -59.43111853529589 19.378340716764033, -59.82954215284787 19.3399052695533 M-58.58530678962389 19.45993515863156 C-58.96204274823844 19.423591893795294, -59.338778706852985 19.38724862895903, -59.82954215284787 19.3399052695533 M-59.82954215284787 19.3399052695533 C-60.28429790048818 19.26638388695831, -60.73905364812848 19.192862504363315, -61.06353075967676 19.140403561325773 M-59.82954215284787 19.3399052695533 C-60.23274372788561 19.27471876577611, -60.63594530292336 19.209532261998923, -61.06353075967676 19.140403561325773 M-61.06353075967676 19.140403561325773 C-61.5017523556224 19.040382341714345, -61.93997395156804 18.940361122102914, -62.282201886235384 18.862249829261074 M-61.06353075967676 19.140403561325773 C-61.395246415409645 19.064691627551692, -61.72696207114253 18.988979693777612, -62.282201886235384 18.862249829261074 M-62.282201886235384 18.862249829261074 C-62.68080941652578 18.743945206604508, -63.079416946816174 18.625640583947945, -63.48054775146059 18.506587066708043 M-62.282201886235384 18.862249829261074 C-62.66476445849637 18.748707265925933, -63.047327030757366 18.635164702590792, -63.48054775146059 18.506587066708043 M-63.48054775146059 18.506587066708043 C-63.76594354827191 18.401558775311653, -64.05133934508324 18.29653048391526, -64.6536440951478 18.074876768247425 M-63.48054775146059 18.506587066708043 C-63.86923731597985 18.363545713958008, -64.25792688049911 18.220504361207972, -64.6536440951478 18.074876768247425 M-64.6536440951478 18.074876768247425 C-64.9266763077407 17.954013506945365, -65.19970852033362 17.833150245643306, -65.79667041279238 17.568892924097174 M-64.6536440951478 18.074876768247425 C-65.10598970378864 17.874636785657845, -65.55833531242949 17.67439680306827, -65.79667041279238 17.568892924097174 M-65.79667041279238 17.568892924097174 C-66.09464625164748 17.41343911982911, -66.39262209050256 17.257985315561044, -66.90492976407678 16.990714730406097 M-65.79667041279238 17.568892924097174 C-66.10119406570188 17.410023129431003, -66.40571771861136 17.251153334764833, -66.90492976407678 16.990714730406097 M-66.90492976407678 16.990714730406097 C-67.27398839777891 16.766989217826605, -67.64304703148102 16.54326370524711, -67.97386807360569 16.3427180453909 M-66.90492976407678 16.990714730406097 C-67.21827991046963 16.800760030212896, -67.53163005686247 16.610805330019694, -67.97386807360569 16.3427180453909 M-67.97386807360569 16.3427180453909 C-68.19652622868057 16.18740135512685, -68.41918438375544 16.0320846648628, -68.99909284457871 15.627565626425156 M-67.97386807360569 16.3427180453909 C-68.3574670031198 16.075136037891884, -68.74106593263389 15.807554030392872, -68.99909284457871 15.627565626425156 M-68.99909284457871 15.627565626425156 C-69.3758949342944 15.327075987001612, -69.75269702401009 15.02658634757807, -69.97639120850187 14.848196188198125 M-68.99909284457871 15.627565626425156 C-69.38727929891289 15.31799725916904, -69.77546575324705 15.008428891912923, -69.97639120850187 14.848196188198125 M-69.97639120850187 14.848196188198125 C-70.2403932303268 14.60843653708744, -70.50439525215174 14.368676885976758, -70.90174723676797 14.007812326905697 M-69.97639120850187 14.848196188198125 C-70.28523775562037 14.567709925736951, -70.59408430273886 14.287223663275775, -70.90174723676797 14.007812326905697 M-70.90174723676797 14.007812326905697 C-71.0893159698652 13.814132210303434, -71.27688470296242 13.620452093701173, -71.77135844296865 13.109867360095677 M-70.90174723676797 14.007812326905697 C-71.13614305595158 13.765779399343971, -71.3705388751352 13.523746471782246, -71.77135844296865 13.109867360095677 M-71.77135844296865 13.109867360095677 C-72.04620883643263 12.78701244850245, -72.3210592298966 12.464157536909225, -72.58165140812658 12.158051136245307 M-71.77135844296865 13.109867360095677 C-72.07134724323122 12.757483445460968, -72.37133604349377 12.40509953082626, -72.58165140812658 12.158051136245307 M-72.58165140812658 12.158051136245307 C-72.7541024411011 11.92698246267176, -72.9265534740756 11.695913789098213, -73.32929646464063 11.156274872382316 M-72.58165140812658 12.158051136245307 C-72.87966926500404 11.758734358014788, -73.17768712188152 11.359417579784271, -73.32929646464063 11.156274872382316 M-73.32929646464063 11.156274872382316 C-73.59004450521795 10.755695861402849, -73.85079254579527 10.355116850423382, -74.01122137860425 10.108655082055249 M-73.32929646464063 11.156274872382316 C-73.49265128008959 10.905318008942837, -73.65600609553853 10.654361145503357, -74.01122137860425 10.108655082055249 M-74.01122137860425 10.108655082055249 C-74.16918109348062 9.828181613136671, -74.32714080835699 9.547708144218094, -74.6246239742735 9.019496659696289 M-74.01122137860425 10.108655082055249 C-74.16657343015552 9.832811783424924, -74.32192548170678 9.5569684847946, -74.6246239742735 9.019496659696289 M-74.6246239742735 9.019496659696289 C-74.74042735634109 8.7790284590375, -74.85623073840868 8.53856025837871, -75.16698364880834 7.893275190886686 M-74.6246239742735 9.019496659696289 C-74.79495987969538 8.66579050748324, -74.96529578511725 8.312084355270192, -75.16698364880834 7.893275190886686 M-75.16698364880834 7.893275190886686 C-75.293552455421 7.5806477915120345, -75.42012126203365 7.268020392137384, -75.63607172997033 6.73461856121551 M-75.16698364880834 7.893275190886686 C-75.26949240929731 7.64007657060687, -75.37200116978629 7.386877950327054, -75.63607172997033 6.73461856121551 M-75.63607172997033 6.73461856121551 C-75.7530860425822 6.382190095327409, -75.87010035519407 6.0297616294393075, -76.02996063421489 5.5482879393051325 M-75.63607172997033 6.73461856121551 C-75.71517445062275 6.496373769917386, -75.79427717127517 6.258128978619262, -76.02996063421489 5.5482879393051325 M-76.02996063421489 5.5482879393051325 C-76.13516407718457 5.147101615801142, -76.24036752015424 4.745915292297151, -76.34703178754556 4.339158212148136 M-76.02996063421489 5.5482879393051325 C-76.12905875754966 5.170383845631292, -76.22815688088444 4.792479751957452, -76.34703178754556 4.339158212148136 M-76.34703178754556 4.339158212148136 C-76.40527719227083 4.040080369054548, -76.46352259699609 3.7410025259609605, -76.58598227658177 3.112197953150904 M-76.34703178754556 4.339158212148136 C-76.41532092626893 3.988507917718168, -76.48361006499232 3.6378576232882, -76.58598227658177 3.112197953150904 M-76.58598227658177 3.112197953150904 C-76.64158076185835 2.680987080508567, -76.69717924713491 2.2497762078662302, -76.74583020250937 1.872449005199809 M-76.58598227658177 3.112197953150904 C-76.63750015896291 2.7126354307593843, -76.68901804134404 2.3130729083678645, -76.74583020250937 1.872449005199809 M-76.74583020250937 1.872449005199809 C-76.76704304623796 1.542041841427772, -76.78825588996655 1.2116346776557347, -76.82591871591342 0.6250057626472781 M-76.74583020250937 1.872449005199809 C-76.77484114234647 1.4205802000277221, -76.80385208218358 0.9687113948556354, -76.82591871591342 0.6250057626472781 M-76.82591871591342 0.6250057626472781 C-76.82591871591342 0.17512025247184593, -76.82591871591342 -0.2747652577035863, -76.82591871591342 -0.6250057626472687 M-76.82591871591342 0.6250057626472781 C-76.82591871591342 0.29633407343282187, -76.82591871591342 -0.03233761578163441, -76.82591871591342 -0.6250057626472687 M-76.82591871591342 -0.6250057626472687 C-76.79521215443131 -1.103285243621282, -76.76450559294922 -1.5815647245952955, -76.74583020250937 -1.8724490051997822 M-76.82591871591342 -0.6250057626472687 C-76.79969907062777 -1.0333979020879853, -76.77347942534212 -1.441790041528702, -76.74583020250937 -1.8724490051997822 M-76.74583020250937 -1.8724490051997822 C-76.71073532025811 -2.1446379816721963, -76.67564043800684 -2.4168269581446102, -76.58598227658177 -3.112197953150895 M-76.74583020250937 -1.8724490051997822 C-76.69905409170376 -2.2352352836202405, -76.65227798089815 -2.5980215620406986, -76.58598227658177 -3.112197953150895 M-76.58598227658177 -3.112197953150895 C-76.51754128007501 -3.463628005203395, -76.44910028356824 -3.815058057255895, -76.34703178754556 -4.339158212148126 M-76.58598227658177 -3.112197953150895 C-76.51420689559511 -3.480749364785273, -76.44243151460844 -3.8493007764196507, -76.34703178754556 -4.339158212148126 M-76.34703178754556 -4.339158212148126 C-76.23905438334175 -4.750922852080276, -76.13107697913793 -5.1626874920124255, -76.02996063421489 -5.548287939305123 M-76.34703178754556 -4.339158212148126 C-76.23879366462607 -4.751917085539368, -76.13055554170657 -5.16467595893061, -76.02996063421489 -5.548287939305123 M-76.02996063421489 -5.548287939305123 C-75.93164296623445 -5.844405090469129, -75.83332529825401 -6.1405222416331355, -75.63607172997033 -6.734618561215485 M-76.02996063421489 -5.548287939305123 C-75.9265301001389 -5.85980422852431, -75.82309956606292 -6.1713205177434975, -75.63607172997033 -6.734618561215485 M-75.63607172997033 -6.734618561215485 C-75.46723824629133 -7.151640530075938, -75.29840476261235 -7.568662498936391, -75.16698364880834 -7.893275190886676 M-75.63607172997033 -6.734618561215485 C-75.46292692063477 -7.16228958780145, -75.28978211129923 -7.589960614387414, -75.16698364880834 -7.893275190886676 M-75.16698364880834 -7.893275190886676 C-74.96063576771897 -8.321760981106138, -74.75428788662958 -8.750246771325598, -74.6246239742735 -9.019496659696282 M-75.16698364880834 -7.893275190886676 C-74.96568442079305 -8.311277344973917, -74.76438519277777 -8.729279499061155, -74.6246239742735 -9.019496659696282 M-74.6246239742735 -9.019496659696282 C-74.42950732573401 -9.365946026881275, -74.23439067719451 -9.71239539406627, -74.01122137860425 -10.108655082055243 M-74.6246239742735 -9.019496659696282 C-74.40248530317557 -9.413926364210273, -74.18034663207764 -9.808356068724263, -74.01122137860425 -10.108655082055243 M-74.01122137860425 -10.108655082055243 C-73.81322657883007 -10.41282826355649, -73.61523177905589 -10.717001445057736, -73.32929646464063 -11.156274872382308 M-74.01122137860425 -10.108655082055243 C-73.81020651695523 -10.417467889596388, -73.60919165530623 -10.726280697137534, -73.32929646464063 -11.156274872382308 M-73.32929646464063 -11.156274872382308 C-73.1102601283151 -11.449763608437783, -72.89122379198957 -11.743252344493257, -72.58165140812659 -12.158051136245302 M-73.32929646464063 -11.156274872382308 C-73.12421636135637 -11.431063527601472, -72.9191362580721 -11.705852182820635, -72.58165140812659 -12.158051136245302 M-72.58165140812659 -12.158051136245302 C-72.37645137359655 -12.399090773017017, -72.17125133906652 -12.640130409788732, -71.77135844296866 -13.10986736009567 M-72.58165140812659 -12.158051136245302 C-72.4088352874422 -12.36105078511702, -72.23601916675781 -12.56405043398874, -71.77135844296866 -13.10986736009567 M-71.77135844296866 -13.10986736009567 C-71.54855131362208 -13.339934013951524, -71.32574418427552 -13.570000667807376, -70.90174723676799 -14.007812326905677 M-71.77135844296866 -13.10986736009567 C-71.53123714480185 -13.357812314778117, -71.29111584663504 -13.605757269460565, -70.90174723676799 -14.007812326905677 M-70.90174723676799 -14.007812326905677 C-70.56103881981298 -14.317234696533502, -70.22033040285795 -14.626657066161327, -69.9763912085019 -14.848196188198107 M-70.90174723676799 -14.007812326905677 C-70.60103680961117 -14.280909580487588, -70.30032638245437 -14.554006834069497, -69.9763912085019 -14.848196188198107 M-69.9763912085019 -14.848196188198107 C-69.58709276156722 -15.158651339961759, -69.19779431463253 -15.46910649172541, -68.99909284457871 -15.627565626425149 M-69.9763912085019 -14.848196188198107 C-69.709614581933 -15.060943448662625, -69.44283795536408 -15.273690709127143, -68.99909284457871 -15.627565626425149 M-68.99909284457871 -15.627565626425149 C-68.6729709642315 -15.855054132566707, -68.34684908388428 -16.082542638708265, -67.97386807360571 -16.342718045390885 M-68.99909284457871 -15.627565626425149 C-68.68088850081658 -15.849531201789583, -68.36268415705446 -16.071496777154017, -67.97386807360571 -16.342718045390885 M-67.97386807360571 -16.342718045390885 C-67.62500070411946 -16.554203494945682, -67.2761333346332 -16.76568894450048, -66.90492976407678 -16.99071473040609 M-67.97386807360571 -16.342718045390885 C-67.59113019364098 -16.574735997442946, -67.20839231367626 -16.806753949495004, -66.90492976407678 -16.99071473040609 M-66.90492976407678 -16.99071473040609 C-66.48710113692928 -17.208695657556937, -66.06927250978178 -17.42667658470778, -65.7966704127924 -17.56889292409717 M-66.90492976407678 -16.99071473040609 C-66.67226507588585 -17.112095749206457, -66.43960038769492 -17.23347676800682, -65.7966704127924 -17.56889292409717 M-65.7966704127924 -17.56889292409717 C-65.42218621326039 -17.7346659705509, -65.04770201372838 -17.900439017004633, -64.65364409514781 -18.07487676824742 M-65.7966704127924 -17.56889292409717 C-65.51947099766693 -17.691600882344723, -65.24227158254146 -17.814308840592275, -64.65364409514781 -18.07487676824742 M-64.65364409514781 -18.07487676824742 C-64.25865284112045 -18.220237200988617, -63.863661587093084 -18.36559763372981, -63.48054775146062 -18.506587066708033 M-64.65364409514781 -18.07487676824742 C-64.20911455017249 -18.23846774998441, -63.764585005197155 -18.402058731721397, -63.48054775146062 -18.506587066708033 M-63.48054775146062 -18.506587066708033 C-63.12627077261863 -18.611734614390524, -62.771993793776645 -18.716882162073016, -62.28220188623541 -18.862249829261067 M-63.48054775146062 -18.506587066708033 C-63.10094477883437 -18.61925123640684, -62.72134180620812 -18.731915406105646, -62.28220188623541 -18.862249829261067 M-62.28220188623541 -18.862249829261067 C-61.82509205935278 -18.966582164326642, -61.36798223247013 -19.070914499392217, -61.063530759676766 -19.140403561325773 M-62.28220188623541 -18.862249829261067 C-61.91617889960793 -18.945792187435586, -61.550155912980436 -19.0293345456101, -61.063530759676766 -19.140403561325773 M-61.063530759676766 -19.140403561325773 C-60.60861330548987 -19.213951087381165, -60.15369585130297 -19.287498613436554, -59.82954215284788 -19.3399052695533 M-61.063530759676766 -19.140403561325773 C-60.6290652908812 -19.21064456899061, -60.19459982208564 -19.280885576655443, -59.82954215284788 -19.3399052695533 M-59.82954215284788 -19.3399052695533 C-59.45481708166432 -19.376054546497542, -59.080092010480776 -19.412203823441786, -58.5853067896239 -19.45993515863156 M-59.82954215284788 -19.3399052695533 C-59.38156960625936 -19.383120642356882, -58.93359705967085 -19.426336015160462, -58.5853067896239 -19.45993515863156 M-58.5853067896239 -19.45993515863156 C-58.133128586549766 -19.474435633492668, -57.68095038347563 -19.488936108353776, -57.33593750000001 -19.5 M-58.5853067896239 -19.45993515863156 C-58.20123784285521 -19.472251502209577, -57.81716889608652 -19.484567845787595, -57.33593750000001 -19.5 M-57.33593750000001 -19.5 C-57.33593750000001 -19.5, -57.3359375 -19.5, -57.3359375 -19.5 M-57.33593750000001 -19.5 C-57.33593750000001 -19.5, -57.3359375 -19.5, -57.3359375 -19.5\" stroke=\"#24315E\" stroke-width=\"1.3\" fill=\"none\" stroke-dasharray=\"0 0\" style=\"fill:#00A1E0 !important;stroke:#24315E !important\"></path></g><g class=\"label\" style=\"\" transform=\"translate(-64.4609375, -12)\"><rect></rect><foreignObject width=\"128.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>Custom Pay Form</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37-flowchart-pb-3\" data-look=\"classic\" transform=\"translate(201.6875, 461)\"><rect class=\"basic label-container\" style=\"fill:#8282FC !important;stroke:#24315E !important\" x=\"-69.140625\" y=\"-27\" width=\"138.28125\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-39.140625, -12)\"><rect></rect><foreignObject width=\"78.28125\" 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>Pay Button</p></span></div></foreignObject></g></g></g></g></g><defs><filter id=\"diagram-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37-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-c6e4eab05502b99f76e4df633de095cf4660662463bf19ba0561e62e82096f37-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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" class=\"flowchart\" style=\"max-width: 369.3094177246094px;\" viewBox=\"0 0 369.3094177246094 496\" role=\"graphics-document document\" aria-roledescription=\"flowchart-v2\"><style>\n    #diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b foreignObject {\n      overflow: visible;\n    }\n  </style><style>#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;font-size:16px;fill:#ccc;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .error-icon{fill:#a44141;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .error-text{fill:#ddd;stroke:#ddd;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .edge-thickness-normal{stroke-width:1px;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .edge-thickness-thick{stroke-width:3.5px;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .edge-pattern-solid{stroke-dasharray:0;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .edge-pattern-dashed{stroke-dasharray:3;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .edge-pattern-dotted{stroke-dasharray:2;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .marker{fill:lightgrey;stroke:lightgrey;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .marker.cross{stroke:lightgrey;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b svg{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;font-size:16px;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b p{margin:0;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .label{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;color:#ccc;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .cluster-label text{fill:#F9FFFE;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .cluster-label span{color:#F9FFFE;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .cluster-label span p{background-color:transparent;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .label text,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b span{fill:#ccc;color:#ccc;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .node rect,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .node circle,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .node ellipse,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .node polygon,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .node path{fill:#1f2020;stroke:#ccc;stroke-width:1px;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .rough-node .label text,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .node .label text,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .image-shape .label,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .icon-shape .label{text-anchor:middle;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .node .katex path{fill:#000;stroke:#000;stroke-width:1px;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .rough-node .label,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .node .label,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .image-shape .label,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .icon-shape .label{text-align:center;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .node.clickable{cursor:pointer;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .root .anchor path{fill:lightgrey!important;stroke-width:0;stroke:lightgrey;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .arrowheadPath{fill:lightgrey;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .edgePath .path{stroke:lightgrey;stroke-width:1px;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .flowchart-link{stroke:lightgrey;fill:none;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .edgeLabel{background-color:hsl(0, 0%, 34.4117647059%);text-align:center;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .edgeLabel p{background-color:hsl(0, 0%, 34.4117647059%);}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .edgeLabel rect{opacity:0.5;background-color:hsl(0, 0%, 34.4117647059%);fill:hsl(0, 0%, 34.4117647059%);}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .labelBkg{background-color:rgba(87.75, 87.75, 87.75, 0.5);}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .cluster rect{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:rgba(255, 255, 255, 0.25);stroke-width:1px;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .cluster text{fill:#F9FFFE;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .cluster span{color:#F9FFFE;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .flowchartTitleText{text-anchor:middle;font-size:18px;fill:#ccc;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b rect.text{fill:none;stroke-width:0;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .icon-shape,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .image-shape{background-color:hsl(0, 0%, 34.4117647059%);text-align:center;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .icon-shape p,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .image-shape p{background-color:hsl(0, 0%, 34.4117647059%);padding:2px;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .icon-shape .label rect,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .image-shape .label rect{opacity:0.5;background-color:hsl(0, 0%, 34.4117647059%);fill:hsl(0, 0%, 34.4117647059%);}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .label-icon{display:inline-block;height:1em;overflow:visible;vertical-align:-0.125em;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .node .label-icon path{fill:currentColor;stroke:revert;stroke-width:revert;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b .node .neo-node{stroke:#ccc;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b [data-look=\"neo\"].node rect,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b [data-look=\"neo\"].cluster rect,#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b [data-look=\"neo\"].node polygon{stroke:url(#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b [data-look=\"neo\"].swimlane.cluster rect{filter:none;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b [data-look=\"neo\"].node path{stroke:url(#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-gradient);stroke-width:1px;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b [data-look=\"neo\"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b [data-look=\"neo\"].node .neo-line path{stroke:#ccc;filter:none;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b [data-look=\"neo\"].node circle{stroke:url(#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b [data-look=\"neo\"].icon-shape .icon{fill:url(#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b [data-look=\"neo\"].icon-shape .icon-neo path{stroke:url(#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b :root{--mermaid-font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;}</style><g><marker id=\"diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_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=\"M202.188,47.5L202.104,53.583C202.021,59.667,201.854,71.833,201.771,83.417C201.688,95,201.688,106,201.688,111.5L201.688,117\" id=\"diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-L_paySelect_pms_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_paySelect_pms_0\" data-points=\"W3sieCI6MjAyLjE4NzUsInkiOjQ3LjUwMDAwMDAwMDAwMDAxfSx7IngiOjIwMS42ODc1LCJ5Ijo4NH0seyJ4IjoyMDEuNjg3NSwieSI6MTIxfV0=\" data-look=\"classic\" marker-end=\"url(#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_flowchart-v2-pointEnd)\"></path><path d=\"M201.688,175L201.688,183.167C201.688,191.333,201.688,207.667,201.764,223.417C201.841,239.167,201.994,254.333,202.07,261.917L202.147,269.5\" id=\"diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-L_pms_payform_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_pms_payform_0\" data-points=\"W3sieCI6MjAxLjY4NzUsInkiOjE3NX0seyJ4IjoyMDEuNjg3NSwieSI6MjI0fSx7IngiOjIwMi4xODc1LCJ5IjoyNzMuNTAwMDAwMDAwMDAwMDZ9XQ==\" data-look=\"classic\" marker-end=\"url(#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_flowchart-v2-pointEnd)\"></path><path d=\"M179.493,312.5L167.578,322.583C155.662,332.667,131.831,352.833,130.253,372.627C128.676,392.42,149.351,411.841,159.689,421.551L170.027,431.261\" id=\"diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-L_payform_pb_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_payform_pb_0\" data-points=\"W3sieCI6MTc5LjQ5MzAxMjQyMjM2MDI0LCJ5IjozMTIuNX0seyJ4IjoxMDgsInkiOjM3M30seyJ4IjoxNzIuOTQyNDcxNTkwOTA5MSwieSI6NDM0fV0=\" data-look=\"classic\" marker-end=\"url(#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_flowchart-v2-pointEnd)\"></path><path d=\"M230.433,434L241.256,423.833C252.08,413.667,273.728,393.333,273.308,373.518C272.889,353.702,250.403,334.403,239.16,324.754L227.917,315.105\" id=\"diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-L_pb_payform_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_pb_payform_0\" data-points=\"W3sieCI6MjMwLjQzMjUyODQwOTA5MDksInkiOjQzNH0seyJ4IjoyOTUuMzc1LCJ5IjozNzN9LHsieCI6MjI0Ljg4MTk4NzU3NzYzOTc2LCJ5IjozMTIuNX1d\" data-look=\"classic\" marker-end=\"url(#diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b_flowchart-v2-pointEnd)\"></path></g><g class=\"edgeLabels\"><g class=\"edgeLabel\" transform=\"translate(201.6875, 84)\"><g class=\"label\" data-id=\"L_paySelect_pms_0\" transform=\"translate(-35.578125, -12)\"><foreignObject width=\"71.15625\" 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>Config file</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(201.6875, 224)\"><g class=\"label\" data-id=\"L_pms_payform_0\" transform=\"translate(-58.2578125, -24)\"><foreignObject width=\"116.515625\" height=\"48\"><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>PaymentMethod<br>block</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(108, 373)\"><g class=\"label\" data-id=\"L_payform_pb_0\" transform=\"translate(-100, -36)\"><foreignObject width=\"200\" height=\"72\"><div xmlns=\"http://www.w3.org/1999/xhtml\" class=\"labelBkg\" style=\"display: table; white-space: break-spaces; line-height: 1.5; max-width: 200px; text-align: center; width: 200px;\"><span class=\"edgeLabel\"><p>PaymentIntent<br>(incl. PaymentMethod block)</p></span></div></foreignObject></g></g><g class=\"edgeLabel\" transform=\"translate(293.93442, 371.76363)\"><g class=\"label\" data-id=\"L_pb_payform_0\" transform=\"translate(-67.375, -24)\"><foreignObject width=\"134.75\" height=\"48\"><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>RedirectURL<br>+ PaymentIntent Id</p></span></div></foreignObject></g></g></g><g class=\"nodes\"><g class=\"node default\" id=\"diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-flowchart-paySelect-0\" data-look=\"classic\" transform=\"translate(201.6875, 27.5)\"><g class=\"basic label-container outer-path\"><path d=\"M-52.0078125 -19.5 C-17.80205121534196 -19.5, 16.403710069316077 -19.5, 52.0078125 -19.5 C52.0078125 -19.5, 52.0078125 -19.5, 52.0078125 -19.5 C52.38414725730394 -19.48793167682443, 52.760482014607874 -19.47586335364886, 53.2571817896239 -19.45993515863156 C53.700419537170234 -19.417176546197148, 54.14365728471657 -19.374417933762732, 54.501417152847864 -19.3399052695533 C54.897217511886396 -19.275915336981576, 55.29301787092493 -19.211925404409854, 55.73540575967676 -19.140403561325776 C56.15709498430813 -19.044155747583023, 56.5787842089395 -18.94790793384027, 56.95407688623539 -18.862249829261074 C57.29926071325269 -18.759801081309224, 57.644444540269994 -18.65735233335737, 58.152422751460605 -18.50658706670804 C58.47792003552054 -18.386801057310073, 58.803417319580475 -18.267015047912107, 59.3255190951478 -18.074876768247425 C59.70510160231679 -17.906846852238722, 60.084684109485785 -17.738816936230016, 60.46854541279238 -17.568892924097174 C60.91144120278974 -17.337834474143843, 61.354336992787104 -17.106776024190516, 61.57680476407678 -16.990714730406097 C61.838030994611245 -16.832357854320378, 62.099257225145706 -16.67400097823466, 62.6457430736057 -16.342718045390892 C62.96306390700569 -16.12136876860854, 63.28038474040568 -15.90001949182619, 63.67096784457871 -15.627565626425154 C64.04426039896225 -15.329874748036346, 64.41755295334578 -15.03218386964754, 64.64826620850187 -14.848196188198123 C64.88278756828525 -14.635210094338008, 65.11730892806864 -14.422224000477893, 65.57362223676799 -14.007812326905688 C65.87603003679104 -13.695551445239763, 66.1784378368141 -13.383290563573837, 66.44323344296865 -13.10986736009568 C66.61943228980708 -12.902894168600854, 66.7956311366455 -12.695920977106027, 67.25352640812658 -12.158051136245305 C67.43316796429191 -11.917347816666192, 67.61280952045726 -11.676644497087077, 68.00117146464063 -11.156274872382312 C68.2521879877726 -10.770646085477223, 68.50320451090458 -10.385017298572134, 68.68309637860425 -10.108655082055241 C68.8153277038194 -9.873864974262093, 68.94755902903458 -9.639074866468944, 69.2964989742735 -9.019496659696287 C69.4739668132127 -8.650980894935588, 69.6514346521519 -8.282465130174888, 69.83885864880834 -7.893275190886684 C69.95610379998439 -7.6036774007010575, 70.07334895116044 -7.3140796105154315, 70.30794672997033 -6.734618561215508 C70.46458584664688 -6.262846498839745, 70.62122496332343 -5.791074436463982, 70.70183563421489 -5.548287939305138 C70.80521717688984 -5.1540493112415255, 70.9085987195648 -4.759810683177913, 71.01890678754556 -4.339158212148133 C71.1066154766571 -3.888792630798425, 71.19432416576862 -3.4384270494487166, 71.25785727658177 -3.1121979531509023 C71.31389598842428 -2.6775727701957424, 71.36993470026678 -2.242947587240583, 71.41770520250937 -1.872449005199798 C71.44758922594086 -1.4069812183046975, 71.47747324937237 -0.9415134314095969, 71.49779371591342 -0.6250057626472757 C71.49779371591342 -0.34526067053805354, 71.49779371591342 -0.06551557842883138, 71.49779371591342 0.625005762647271 C71.47042185929847 1.0513445235900194, 71.44305000268352 1.4776832845327676, 71.41770520250937 1.8724490051997846 C71.36641729412341 2.2702278946982477, 71.31512938573744 2.668006784196711, 71.25785727658177 3.1121979531508885 C71.18467636223028 3.487966481554122, 71.11149544787878 3.863735009957356, 71.01890678754556 4.339158212148129 C70.95162293504166 4.595740702751647, 70.88433908253776 4.852323193355166, 70.70183563421489 5.548287939305125 C70.57114809910263 5.941897972832254, 70.44046056399036 6.335508006359383, 70.30794672997033 6.734618561215495 C70.13222728285731 7.1686489928890165, 69.95650783574432 7.602679424562537, 69.83885864880834 7.893275190886679 C69.64334807185854 8.299257087179143, 69.44783749490874 8.705238983471608, 69.2964989742735 9.019496659696284 C69.15255543720548 9.275082985624243, 69.00861190013745 9.530669311552202, 68.68309637860425 10.108655082055236 C68.51711967070723 10.363639876371646, 68.35114296281023 10.618624670688057, 68.00117146464065 11.156274872382301 C67.83038990396986 11.385106605160908, 67.65960834329907 11.613938337939517, 67.25352640812659 12.158051136245302 C66.98920501660209 12.468538083043226, 66.7248836250776 12.77902502984115, 66.44323344296866 13.10986736009567 C66.21627333321327 13.344222307189675, 65.98931322345786 13.57857725428368, 65.57362223676799 14.007812326905684 C65.34348630126591 14.216815694465485, 65.11335036576385 14.425819062025287, 64.6482662085019 14.848196188198111 C64.35760966934399 15.079987043481196, 64.06695313018608 15.311777898764282, 63.67096784457871 15.627565626425152 C63.31443648330394 15.876266470056553, 62.95790512202918 16.124967313687954, 62.64574307360571 16.34271804539089 C62.300043761500774 16.552282999943557, 61.95434444939583 16.761847954496226, 61.57680476407678 16.990714730406093 C61.298773584417646 17.135763418746798, 61.02074240475851 17.2808121070875, 60.46854541279239 17.56889292409717 C60.193426458137886 17.690679924208894, 59.91830750348338 17.812466924320617, 59.325519095147804 18.07487676824742 C58.906472154395345 18.229089916071782, 58.48742521364289 18.383303063896143, 58.15242275146062 18.506587066708033 C57.68586710758167 18.645058332810756, 57.21931146370273 18.78352959891348, 56.95407688623541 18.86224982926107 C56.51783995039482 18.961818063154638, 56.08160301455423 19.06138629704821, 55.735405759676766 19.140403561325773 C55.35382204127056 19.202095057691757, 54.97223832286436 19.263786554057738, 54.50141715284788 19.3399052695533 C54.055885456780054 19.382885176442702, 53.610353760712236 19.425865083332106, 53.2571817896239 19.45993515863156 C52.84220010005718 19.473242813703106, 52.427218410490454 19.486550468774652, 52.00781250000001 19.5 C52.00781250000001 19.5, 52.00781250000001 19.5, 52.0078125 19.5 C31.04024565206394 19.5, 10.072678804127882 19.5, -52.00781249999999 19.5 C-52.265080189109185 19.491749925951446, -52.522347878218376 19.483499851902895, -53.25718178962389 19.45993515863156 C-53.53694361584471 19.43294687171886, -53.81670544206554 19.405958584806157, -54.50141715284787 19.3399052695533 C-54.77388648838283 19.295854540415263, -55.046355823917786 19.251803811277224, -55.73540575967676 19.140403561325773 C-56.08796918671848 19.05993325979487, -56.44053261376021 18.97946295826397, -56.954076886235384 18.862249829261074 C-57.319263527702304 18.75386435097749, -57.684450169169224 18.645478872693907, -58.15242275146059 18.506587066708043 C-58.50557874041307 18.376622398235355, -58.85873472936555 18.246657729762667, -59.3255190951478 18.074876768247425 C-59.62734213467198 17.941268661912428, -59.92916517419615 17.80766055557743, -60.46854541279238 17.568892924097174 C-60.908387328466745 17.33942767842205, -61.348229244141116 17.109962432746926, -61.57680476407678 16.990714730406097 C-62.00375513465277 16.731894906724055, -62.430705505228765 16.473075083042012, -62.645743073605686 16.3427180453909 C-62.943793627773104 16.13481088120425, -63.24184418194053 15.926903717017597, -63.67096784457871 15.627565626425156 C-63.8802473769086 15.460670768554317, -64.08952690923849 15.293775910683477, -64.64826620850187 14.848196188198125 C-64.87545117061055 14.641872816595725, -65.10263613271923 14.435549444993327, -65.57362223676797 14.007812326905697 C-65.85004582067728 13.722382281721037, -66.12646940458657 13.43695223653638, -66.44323344296865 13.109867360095677 C-66.68953013673203 12.820553248922309, -66.93582683049543 12.531239137748939, -67.25352640812658 12.158051136245307 C-67.43856067564322 11.910122074741569, -67.62359494315984 11.66219301323783, -68.00117146464063 11.156274872382316 C-68.2418348163892 10.786551336937922, -68.48249816813777 10.416827801493527, -68.68309637860425 10.108655082055249 C-68.81811317633368 9.868919085753342, -68.9531299740631 9.629183089451436, -69.2964989742735 9.019496659696289 C-69.41827489448885 8.766626355781847, -69.54005081470419 8.513756051867404, -69.83885864880834 7.893275190886686 C-69.97283509536985 7.562350777621377, -70.10681154193136 7.231426364356069, -70.30794672997033 6.73461856121551 C-70.42342141559661 6.38682720650176, -70.53889610122289 6.039035851788011, -70.70183563421489 5.5482879393051325 C-70.79230201124341 5.203300435319571, -70.88276838827193 4.858312931334009, -71.01890678754556 4.339158212148136 C-71.10795670387292 3.8819057125136354, -71.19700662020027 3.424653212879135, -71.25785727658177 3.112197953150904 C-71.30699663604008 2.7310827848563437, -71.35613599549839 2.3499676165617833, -71.41770520250937 1.872449005199809 C-71.44285262660995 1.480757576197922, -71.46800005071053 1.0890661471960348, -71.49779371591342 0.6250057626472781 C-71.49779371591342 0.32017516311567507, -71.49779371591342 0.01534456358407199, -71.49779371591342 -0.6250057626472687 C-71.4755959204856 -0.9707543441733752, -71.4533981250578 -1.3165029256994818, -71.41770520250937 -1.8724490051997822 C-71.36207558895447 -2.3039013026218234, -71.30644597539958 -2.7353536000438643, -71.25785727658177 -3.112197953150895 C-71.17845231110803 -3.519925668613194, -71.09904734563428 -3.9276533840754926, -71.01890678754556 -4.339158212148126 C-70.91982939085935 -4.716983266128003, -70.82075199417314 -5.094808320107881, -70.70183563421489 -5.548287939305123 C-70.58118092599194 -5.911680696755493, -70.460526217769 -6.275073454205863, -70.30794672997033 -6.734618561215485 C-70.20931600083885 -6.978238369065656, -70.11068527170737 -7.221858176915827, -69.83885864880834 -7.893275190886676 C-69.71443491255471 -8.151643741458823, -69.59001117630108 -8.41001229203097, -69.2964989742735 -9.019496659696282 C-69.16349277289939 -9.255662638574371, -69.03048657152527 -9.491828617452462, -68.68309637860425 -10.108655082055243 C-68.47013955064749 -10.435813956712055, -68.25718272269073 -10.762972831368867, -68.00117146464063 -11.156274872382308 C-67.81692874692847 -11.403143329259729, -67.63268602921632 -11.65001178613715, -67.25352640812659 -12.158051136245302 C-66.93152732372701 -12.536289583047994, -66.60952823932743 -12.914528029850686, -66.44323344296866 -13.10986736009567 C-66.10081061417539 -13.463447044261803, -65.75838778538211 -13.817026728427937, -65.57362223676799 -14.007812326905677 C-65.24483425944983 -14.306408868652857, -64.91604628213167 -14.60500541040004, -64.6482662085019 -14.848196188198107 C-64.34241063298926 -15.09210787051075, -64.03655505747662 -15.336019552823394, -63.67096784457872 -15.627565626425149 C-63.40819946594925 -15.810861472297288, -63.145431087319785 -15.994157318169428, -62.645743073605715 -16.342718045390885 C-62.25307361257795 -16.580756580247808, -61.86040415155018 -16.81879511510473, -61.57680476407679 -16.99071473040609 C-61.21554683696888 -17.17918275958154, -60.85428890986098 -17.367650788756986, -60.46854541279239 -17.56889292409717 C-60.031490190770285 -17.762364306103834, -59.59443496874818 -17.955835688110497, -59.325519095147804 -18.07487676824742 C-59.015881888376995 -18.18882612259404, -58.70624468160619 -18.30277547694066, -58.15242275146062 -18.506587066708033 C-57.75779493133955 -18.62371053227627, -57.36316711121847 -18.740833997844504, -56.95407688623541 -18.862249829261067 C-56.49022820028874 -18.968120264932843, -56.026379514342075 -19.073990700604615, -55.735405759676766 -19.140403561325773 C-55.42505234589927 -19.19057909443865, -55.11469893212177 -19.240754627551524, -54.50141715284788 -19.3399052695533 C-54.15206851974579 -19.373606512035455, -53.8027198866437 -19.407307754517614, -53.2571817896239 -19.45993515863156 C-52.76508231460529 -19.475715830981883, -52.272982839586675 -19.49149650333221, -52.00781250000001 -19.5 C-52.00781250000001 -19.5, -52.0078125 -19.5, -52.0078125 -19.5\" stroke=\"none\" stroke-width=\"0\" fill=\"#00A1E0\" style=\"fill:#00A1E0 !important;stroke:#24315E !important\"></path><path d=\"M-52.0078125 -19.5 C-16.964398577311144 -19.5, 18.079015345377712 -19.5, 52.0078125 -19.5 M-52.0078125 -19.5 C-27.86382303948502 -19.5, -3.7198335789700394 -19.5, 52.0078125 -19.5 M52.0078125 -19.5 C52.0078125 -19.5, 52.0078125 -19.5, 52.0078125 -19.5 M52.0078125 -19.5 C52.0078125 -19.5, 52.0078125 -19.5, 52.0078125 -19.5 M52.0078125 -19.5 C52.29028201991263 -19.49094175228997, 52.57275153982526 -19.481883504579937, 53.2571817896239 -19.45993515863156 M52.0078125 -19.5 C52.47141859616672 -19.485133054850458, 52.93502469233344 -19.470266109700916, 53.2571817896239 -19.45993515863156 M53.2571817896239 -19.45993515863156 C53.739807719769665 -19.413376815593, 54.22243364991544 -19.36681847255444, 54.501417152847864 -19.3399052695533 M53.2571817896239 -19.45993515863156 C53.53271681149449 -19.43335462645105, 53.80825183336508 -19.40677409427054, 54.501417152847864 -19.3399052695533 M54.501417152847864 -19.3399052695533 C54.95679791707204 -19.266282839124106, 55.41217868129621 -19.192660408694913, 55.73540575967676 -19.140403561325776 M54.501417152847864 -19.3399052695533 C54.846608242851374 -19.284097451118416, 55.19179933285488 -19.228289632683534, 55.73540575967676 -19.140403561325776 M55.73540575967676 -19.140403561325776 C56.04554517846424 -19.06961626283638, 56.355684597251724 -18.998828964346984, 56.95407688623539 -18.862249829261074 M55.73540575967676 -19.140403561325776 C56.13416505556255 -19.049389354187433, 56.53292435144834 -18.95837514704909, 56.95407688623539 -18.862249829261074 M56.95407688623539 -18.862249829261074 C57.21622740220413 -18.78444493217769, 57.478377918172875 -18.706640035094306, 58.152422751460605 -18.50658706670804 M56.95407688623539 -18.862249829261074 C57.403490670159535 -18.72886617721348, 57.85290445408367 -18.595482525165888, 58.152422751460605 -18.50658706670804 M58.152422751460605 -18.50658706670804 C58.53354625641416 -18.36633009381807, 58.91466976136772 -18.226073120928103, 59.3255190951478 -18.074876768247425 M58.152422751460605 -18.50658706670804 C58.49647349963054 -18.37997321101125, 58.84052424780047 -18.253359355314466, 59.3255190951478 -18.074876768247425 M59.3255190951478 -18.074876768247425 C59.59121008215561 -17.957263249742166, 59.85690106916342 -17.83964973123691, 60.46854541279238 -17.568892924097174 M59.3255190951478 -18.074876768247425 C59.74215672821665 -17.89044364720411, 60.15879436128551 -17.70601052616079, 60.46854541279238 -17.568892924097174 M60.46854541279238 -17.568892924097174 C60.807508243014915 -17.392056232686134, 61.14647107323745 -17.215219541275093, 61.57680476407678 -16.990714730406097 M60.46854541279238 -17.568892924097174 C60.73453936232409 -17.430124051003737, 61.000533311855804 -17.2913551779103, 61.57680476407678 -16.990714730406097 M61.57680476407678 -16.990714730406097 C61.89230071557298 -16.799459230549093, 62.20779666706918 -16.60820373069209, 62.6457430736057 -16.342718045390892 M61.57680476407678 -16.990714730406097 C61.9216026758771 -16.781696210015305, 62.26640058767741 -16.572677689624516, 62.6457430736057 -16.342718045390892 M62.6457430736057 -16.342718045390892 C62.878082561385526 -16.18064807653001, 63.11042204916535 -16.018578107669125, 63.67096784457871 -15.627565626425154 M62.6457430736057 -16.342718045390892 C62.856424652275784 -16.19575569636919, 63.06710623094587 -16.04879334734749, 63.67096784457871 -15.627565626425154 M63.67096784457871 -15.627565626425154 C64.05932661855567 -15.317859838839533, 64.44768539253263 -15.00815405125391, 64.64826620850187 -14.848196188198123 M63.67096784457871 -15.627565626425154 C64.05350610303239 -15.322501545078927, 64.43604436148607 -15.017437463732698, 64.64826620850187 -14.848196188198123 M64.64826620850187 -14.848196188198123 C65.00049704033566 -14.528309466243796, 65.35272787216944 -14.208422744289468, 65.57362223676799 -14.007812326905688 M64.64826620850187 -14.848196188198123 C64.87908496655214 -14.638572699266538, 65.10990372460243 -14.428949210334952, 65.57362223676799 -14.007812326905688 M65.57362223676799 -14.007812326905688 C65.82390350418626 -13.749376369822112, 66.07418477160454 -13.490940412738537, 66.44323344296865 -13.10986736009568 M65.57362223676799 -14.007812326905688 C65.86818254809462 -13.703654621609617, 66.16274285942126 -13.399496916313547, 66.44323344296865 -13.10986736009568 M66.44323344296865 -13.10986736009568 C66.70264934484989 -12.805142680562998, 66.96206524673111 -12.500418001030315, 67.25352640812658 -12.158051136245305 M66.44323344296865 -13.10986736009568 C66.68472213822493 -12.82620099755162, 66.92621083348122 -12.54253463500756, 67.25352640812658 -12.158051136245305 M67.25352640812658 -12.158051136245305 C67.45147674260627 -11.89281572168897, 67.64942707708597 -11.627580307132636, 68.00117146464063 -11.156274872382312 M67.25352640812658 -12.158051136245305 C67.4215601271991 -11.932901260874857, 67.58959384627161 -11.707751385504407, 68.00117146464063 -11.156274872382312 M68.00117146464063 -11.156274872382312 C68.16994446249032 -10.896994225789602, 68.33871746034002 -10.637713579196891, 68.68309637860425 -10.108655082055241 M68.00117146464063 -11.156274872382312 C68.23980735647277 -10.789666059818765, 68.47844324830491 -10.423057247255219, 68.68309637860425 -10.108655082055241 M68.68309637860425 -10.108655082055241 C68.91299848433667 -9.700440613214724, 69.14290059006908 -9.292226144374204, 69.2964989742735 -9.019496659696287 M68.68309637860425 -10.108655082055241 C68.90499205229361 -9.714656844046337, 69.12688772598295 -9.320658606037432, 69.2964989742735 -9.019496659696287 M69.2964989742735 -9.019496659696287 C69.43676517669412 -8.72823088915391, 69.57703137911476 -8.436965118611534, 69.83885864880834 -7.893275190886684 M69.2964989742735 -9.019496659696287 C69.49815686734259 -8.600749729950644, 69.69981476041167 -8.182002800205002, 69.83885864880834 -7.893275190886684 M69.83885864880834 -7.893275190886684 C70.00881339413542 -7.473483684077344, 70.17876813946249 -7.053692177268003, 70.30794672997033 -6.734618561215508 M69.83885864880834 -7.893275190886684 C70.00591684728923 -7.480638210788347, 70.17297504577012 -7.068001230690008, 70.30794672997033 -6.734618561215508 M70.30794672997033 -6.734618561215508 C70.39541044269433 -6.471191793940965, 70.48287415541833 -6.20776502666642, 70.70183563421489 -5.548287939305138 M70.30794672997033 -6.734618561215508 C70.41502432115269 -6.412117917071524, 70.52210191233506 -6.089617272927539, 70.70183563421489 -5.548287939305138 M70.70183563421489 -5.548287939305138 C70.77007653019105 -5.288055827156643, 70.83831742616721 -5.027823715008147, 71.01890678754556 -4.339158212148133 M70.70183563421489 -5.548287939305138 C70.79678420397939 -5.186207891822633, 70.8917327737439 -4.824127844340129, 71.01890678754556 -4.339158212148133 M71.01890678754556 -4.339158212148133 C71.11237293452656 -3.8592293014778334, 71.20583908150756 -3.3793003908075336, 71.25785727658177 -3.1121979531509023 M71.01890678754556 -4.339158212148133 C71.10972450859006 -3.872828408916751, 71.20054222963456 -3.4064986056853686, 71.25785727658177 -3.1121979531509023 M71.25785727658177 -3.1121979531509023 C71.30458486401932 -2.749788012391096, 71.35131245145688 -2.3873780716312893, 71.41770520250937 -1.872449005199798 M71.25785727658177 -3.1121979531509023 C71.31756294961158 -2.649132543350396, 71.3772686226414 -2.18606713354989, 71.41770520250937 -1.872449005199798 M71.41770520250937 -1.872449005199798 C71.44035209487558 -1.5197053763535795, 71.46299898724179 -1.1669617475073608, 71.49779371591342 -0.6250057626472757 M71.41770520250937 -1.872449005199798 C71.43491775887004 -1.6043495461568358, 71.45213031523072 -1.3362500871138736, 71.49779371591342 -0.6250057626472757 M71.49779371591342 -0.6250057626472757 C71.49779371591342 -0.13953419201063033, 71.49779371591342 0.34593737862601504, 71.49779371591342 0.625005762647271 M71.49779371591342 -0.6250057626472757 C71.49779371591342 -0.36621847586008704, 71.49779371591342 -0.10743118907289839, 71.49779371591342 0.625005762647271 M71.49779371591342 0.625005762647271 C71.48086503079297 0.8886836979869261, 71.46393634567252 1.1523616333265814, 71.41770520250937 1.8724490051997846 M71.49779371591342 0.625005762647271 C71.47273711228756 1.0152825894463948, 71.4476805086617 1.4055594162455187, 71.41770520250937 1.8724490051997846 M71.41770520250937 1.8724490051997846 C71.38041886911783 2.1616344439651924, 71.3431325357263 2.4508198827306, 71.25785727658177 3.1121979531508885 M71.41770520250937 1.8724490051997846 C71.38019748346292 2.1633514673871135, 71.34268976441648 2.4542539295744428, 71.25785727658177 3.1121979531508885 M71.25785727658177 3.1121979531508885 C71.17012736268592 3.5626725192822395, 71.08239744879006 4.01314708541359, 71.01890678754556 4.339158212148129 M71.25785727658177 3.1121979531508885 C71.20956364248507 3.360175557374317, 71.16127000838836 3.608153161597745, 71.01890678754556 4.339158212148129 M71.01890678754556 4.339158212148129 C70.95392112983106 4.586976689975757, 70.88893547211654 4.834795167803386, 70.70183563421489 5.548287939305125 M71.01890678754556 4.339158212148129 C70.8999608570112 4.7927505967680695, 70.78101492647683 5.246342981388011, 70.70183563421489 5.548287939305125 M70.70183563421489 5.548287939305125 C70.58403753071202 5.903077058476774, 70.46623942720916 6.257866177648423, 70.30794672997033 6.734618561215495 M70.70183563421489 5.548287939305125 C70.55816786681024 5.98099236437778, 70.41450009940557 6.4136967894504355, 70.30794672997033 6.734618561215495 M70.30794672997033 6.734618561215495 C70.12950621671675 7.175370078864451, 69.95106570346317 7.616121596513407, 69.83885864880834 7.893275190886679 M70.30794672997033 6.734618561215495 C70.17025337544014 7.074723809024945, 70.03256002090997 7.414829056834396, 69.83885864880834 7.893275190886679 M69.83885864880834 7.893275190886679 C69.64441860943299 8.297034092999972, 69.44997857005764 8.700792995113265, 69.2964989742735 9.019496659696284 M69.83885864880834 7.893275190886679 C69.64933792634899 8.28681902616736, 69.45981720388966 8.680362861448039, 69.2964989742735 9.019496659696284 M69.2964989742735 9.019496659696284 C69.10007848294507 9.368261131781445, 68.90365799161663 9.717025603866606, 68.68309637860425 10.108655082055236 M69.2964989742735 9.019496659696284 C69.15031040987243 9.27906925898773, 69.00412184547136 9.538641858279178, 68.68309637860425 10.108655082055236 M68.68309637860425 10.108655082055236 C68.48678381099803 10.410243903203897, 68.29047124339183 10.711832724352558, 68.00117146464065 11.156274872382301 M68.68309637860425 10.108655082055236 C68.42372353568878 10.507121420133839, 68.1643506927733 10.905587758212441, 68.00117146464065 11.156274872382301 M68.00117146464065 11.156274872382301 C67.76311341078929 11.475250977008269, 67.52505535693793 11.794227081634236, 67.25352640812659 12.158051136245302 M68.00117146464065 11.156274872382301 C67.79931865875406 11.426739243101409, 67.59746585286749 11.697203613820514, 67.25352640812659 12.158051136245302 M67.25352640812659 12.158051136245302 C67.08664647477977 12.354077801691682, 66.91976654143295 12.550104467138063, 66.44323344296866 13.10986736009567 M67.25352640812659 12.158051136245302 C66.96033923701484 12.5024454702558, 66.6671520659031 12.846839804266299, 66.44323344296866 13.10986736009567 M66.44323344296866 13.10986736009567 C66.11342545094364 13.450421189601231, 65.78361745891861 13.79097501910679, 65.57362223676799 14.007812326905684 M66.44323344296866 13.10986736009567 C66.2360160735635 13.323836306868921, 66.02879870415835 13.537805253642173, 65.57362223676799 14.007812326905684 M65.57362223676799 14.007812326905684 C65.20883625221673 14.339101306366883, 64.84405026766548 14.670390285828082, 64.6482662085019 14.848196188198111 M65.57362223676799 14.007812326905684 C65.26629579148317 14.286918073101207, 64.95896934619834 14.566023819296731, 64.6482662085019 14.848196188198111 M64.6482662085019 14.848196188198111 C64.39855801881848 15.047331824456636, 64.14884982913506 15.246467460715161, 63.67096784457871 15.627565626425152 M64.6482662085019 14.848196188198111 C64.33017377363872 15.101866440206297, 64.01208133877554 15.355536692214484, 63.67096784457871 15.627565626425152 M63.67096784457871 15.627565626425152 C63.35865190550708 15.845423705582423, 63.04633596643545 16.063281784739694, 62.64574307360571 16.34271804539089 M63.67096784457871 15.627565626425152 C63.287904846684825 15.894773791226013, 62.90484184879094 16.161981956026874, 62.64574307360571 16.34271804539089 M62.64574307360571 16.34271804539089 C62.229602057957536 16.594985174592864, 61.81346104230936 16.847252303794843, 61.57680476407678 16.990714730406093 M62.64574307360571 16.34271804539089 C62.26126648720516 16.57579001150211, 61.876789900804624 16.808861977613333, 61.57680476407678 16.990714730406093 M61.57680476407678 16.990714730406093 C61.24420605123204 17.164231265857552, 60.9116073383873 17.337747801309014, 60.46854541279239 17.56889292409717 M61.57680476407678 16.990714730406093 C61.35397319228445 17.106965818679722, 61.13114162049211 17.22321690695335, 60.46854541279239 17.56889292409717 M60.46854541279239 17.56889292409717 C60.072699726590386 17.74412206703372, 59.67685404038838 17.919351209970277, 59.325519095147804 18.07487676824742 M60.46854541279239 17.56889292409717 C60.13495149127857 17.71656505743925, 59.80135756976475 17.86423719078133, 59.325519095147804 18.07487676824742 M59.325519095147804 18.07487676824742 C58.969440304704044 18.20591705468698, 58.61336151426029 18.33695734112654, 58.15242275146062 18.506587066708033 M59.325519095147804 18.07487676824742 C58.999615474501766 18.194812313265206, 58.67371185385572 18.314747858282995, 58.15242275146062 18.506587066708033 M58.15242275146062 18.506587066708033 C57.79877459293392 18.611547983821694, 57.44512643440722 18.716508900935352, 56.95407688623541 18.86224982926107 M58.15242275146062 18.506587066708033 C57.86443238896775 18.592061094603658, 57.57644202647487 18.677535122499282, 56.95407688623541 18.86224982926107 M56.95407688623541 18.86224982926107 C56.54041608460523 18.956665207844157, 56.126755282975054 19.051080586427243, 55.735405759676766 19.140403561325773 M56.95407688623541 18.86224982926107 C56.665475039157734 18.928121317553494, 56.37687319208005 18.99399280584592, 55.735405759676766 19.140403561325773 M55.735405759676766 19.140403561325773 C55.439028853367304 19.18831948110065, 55.14265194705785 19.23623540087553, 54.50141715284788 19.3399052695533 M55.735405759676766 19.140403561325773 C55.37236307374053 19.199097487349864, 55.0093203878043 19.25779141337396, 54.50141715284788 19.3399052695533 M54.50141715284788 19.3399052695533 C54.1869074357451 19.37024564370893, 53.87239771864232 19.40058601786456, 53.2571817896239 19.45993515863156 M54.50141715284788 19.3399052695533 C54.119032518249796 19.37679345536817, 53.73664788365171 19.41368164118304, 53.2571817896239 19.45993515863156 M53.2571817896239 19.45993515863156 C52.96104237441708 19.46943177327684, 52.664902959210266 19.478928387922117, 52.00781250000001 19.5 M53.2571817896239 19.45993515863156 C52.92599019279036 19.470555828516673, 52.594798595956824 19.48117649840179, 52.00781250000001 19.5 M52.00781250000001 19.5 C52.00781250000001 19.5, 52.00781250000001 19.5, 52.0078125 19.5 M52.00781250000001 19.5 C52.00781250000001 19.5, 52.0078125 19.5, 52.0078125 19.5 M52.0078125 19.5 C12.509244445309832 19.5, -26.989323609380335 19.5, -52.00781249999999 19.5 M52.0078125 19.5 C20.952141854213835 19.5, -10.10352879157233 19.5, -52.00781249999999 19.5 M-52.00781249999999 19.5 C-52.31241242399268 19.49023207330534, -52.61701234798537 19.48046414661068, -53.25718178962389 19.45993515863156 M-52.00781249999999 19.5 C-52.44241465135125 19.486063154907935, -52.87701680270251 19.47212630981587, -53.25718178962389 19.45993515863156 M-53.25718178962389 19.45993515863156 C-53.71183051670193 19.416075742725432, -54.16647924377996 19.37221632681931, -54.50141715284787 19.3399052695533 M-53.25718178962389 19.45993515863156 C-53.612838835926716 19.425625351114906, -53.96849588222953 19.39131554359825, -54.50141715284787 19.3399052695533 M-54.50141715284787 19.3399052695533 C-54.9026208109722 19.275041773488596, -55.303824469096526 19.21017827742389, -55.73540575967676 19.140403561325773 M-54.50141715284787 19.3399052695533 C-54.86533073563535 19.281070543680205, -55.22924431842282 19.222235817807107, -55.73540575967676 19.140403561325773 M-55.73540575967676 19.140403561325773 C-56.04769128812285 19.069126427311474, -56.35997681656894 18.997849293297175, -56.954076886235384 18.862249829261074 M-55.73540575967676 19.140403561325773 C-56.14287117500035 19.04740223923849, -56.55033659032395 18.954400917151208, -56.954076886235384 18.862249829261074 M-56.954076886235384 18.862249829261074 C-57.38015733950695 18.735791387272013, -57.80623779277851 18.609332945282954, -58.15242275146059 18.506587066708043 M-56.954076886235384 18.862249829261074 C-57.198211854127166 18.78979185228139, -57.442346822018955 18.717333875301705, -58.15242275146059 18.506587066708043 M-58.15242275146059 18.506587066708043 C-58.51944233034186 18.37152046898794, -58.88646190922314 18.236453871267837, -59.3255190951478 18.074876768247425 M-58.15242275146059 18.506587066708043 C-58.53829381232899 18.364582949355487, -58.924164873197384 18.222578832002934, -59.3255190951478 18.074876768247425 M-59.3255190951478 18.074876768247425 C-59.59057230529795 17.95754557463808, -59.85562551544809 17.84021438102873, -60.46854541279238 17.568892924097174 M-59.3255190951478 18.074876768247425 C-59.684521720346076 17.915956955506648, -60.043524345544355 17.75703714276587, -60.46854541279238 17.568892924097174 M-60.46854541279238 17.568892924097174 C-60.72323453592749 17.43602177169376, -60.97792365906259 17.303150619290342, -61.57680476407678 16.990714730406097 M-60.46854541279238 17.568892924097174 C-60.836653689014454 17.376851072176724, -61.20476196523653 17.184809220256273, -61.57680476407678 16.990714730406097 M-61.57680476407678 16.990714730406097 C-61.95212773869607 16.763191737549263, -62.32745071331535 16.535668744692433, -62.645743073605686 16.3427180453909 M-61.57680476407678 16.990714730406097 C-61.80513669910922 16.852298569562045, -62.033468634141656 16.71388240871799, -62.645743073605686 16.3427180453909 M-62.645743073605686 16.3427180453909 C-62.86121156146771 16.19241655573886, -63.07668004932973 16.04211506608682, -63.67096784457871 15.627565626425156 M-62.645743073605686 16.3427180453909 C-62.93976840158782 16.13761870474187, -63.23379372956995 15.932519364092842, -63.67096784457871 15.627565626425156 M-63.67096784457871 15.627565626425156 C-64.04860947416724 15.326406476294121, -64.42625110375576 15.025247326163088, -64.64826620850187 14.848196188198125 M-63.67096784457871 15.627565626425156 C-63.87458614461614 15.465185450655833, -64.07820444465357 15.302805274886511, -64.64826620850187 14.848196188198125 M-64.64826620850187 14.848196188198125 C-64.9758799201372 14.550666083474715, -65.30349363177255 14.253135978751306, -65.57362223676797 14.007812326905697 M-64.64826620850187 14.848196188198125 C-64.87652959842056 14.640893416992304, -65.10479298833927 14.43359064578648, -65.57362223676797 14.007812326905697 M-65.57362223676797 14.007812326905697 C-65.78464634103432 13.789912613849532, -65.99567044530065 13.57201290079337, -66.44323344296865 13.109867360095677 M-65.57362223676797 14.007812326905697 C-65.8885688326673 13.682604109043234, -66.20351542856662 13.357395891180774, -66.44323344296865 13.109867360095677 M-66.44323344296865 13.109867360095677 C-66.69523321163304 12.81385409262943, -66.94723298029744 12.517840825163184, -67.25352640812658 12.158051136245307 M-66.44323344296865 13.109867360095677 C-66.7196986086403 12.785115645184183, -66.99616377431195 12.460363930272688, -67.25352640812658 12.158051136245307 M-67.25352640812658 12.158051136245307 C-67.5501980448862 11.76053817032952, -67.84686968164583 11.363025204413734, -68.00117146464063 11.156274872382316 M-67.25352640812658 12.158051136245307 C-67.44896083072322 11.89618681440798, -67.64439525331986 11.634322492570652, -68.00117146464063 11.156274872382316 M-68.00117146464063 11.156274872382316 C-68.15122643221208 10.925750146791886, -68.30128139978353 10.695225421201457, -68.68309637860425 10.108655082055249 M-68.00117146464063 11.156274872382316 C-68.26731206359851 10.747411443625634, -68.53345266255639 10.338548014868952, -68.68309637860425 10.108655082055249 M-68.68309637860425 10.108655082055249 C-68.83117737990477 9.84572226941879, -68.97925838120531 9.582789456782331, -69.2964989742735 9.019496659696289 M-68.68309637860425 10.108655082055249 C-68.84777756146721 9.816246966104039, -69.01245874433016 9.52383885015283, -69.2964989742735 9.019496659696289 M-69.2964989742735 9.019496659696289 C-69.45768242777439 8.684795769728273, -69.61886588127528 8.350094879760256, -69.83885864880834 7.893275190886686 M-69.2964989742735 9.019496659696289 C-69.42197835646265 8.75893603775186, -69.54745773865179 8.49837541580743, -69.83885864880834 7.893275190886686 M-69.83885864880834 7.893275190886686 C-69.97112059342165 7.566585630581067, -70.10338253803496 7.239896070275449, -70.30794672997033 6.73461856121551 M-69.83885864880834 7.893275190886686 C-69.98673632574253 7.528014469838851, -70.13461400267673 7.162753748791016, -70.30794672997033 6.73461856121551 M-70.30794672997033 6.73461856121551 C-70.46196527220972 6.270739251512624, -70.61598381444912 5.806859941809739, -70.70183563421489 5.5482879393051325 M-70.30794672997033 6.73461856121551 C-70.3998073270324 6.457949078863066, -70.49166792409449 6.18127959651062, -70.70183563421489 5.5482879393051325 M-70.70183563421489 5.5482879393051325 C-70.77957218711406 5.251844771865439, -70.85730874001324 4.955401604425745, -71.01890678754556 4.339158212148136 M-70.70183563421489 5.5482879393051325 C-70.81917334131089 5.100828407664163, -70.93651104840687 4.653368876023193, -71.01890678754556 4.339158212148136 M-71.01890678754556 4.339158212148136 C-71.06835016593013 4.0852769140050915, -71.1177935443147 3.831395615862047, -71.25785727658177 3.112197953150904 M-71.01890678754556 4.339158212148136 C-71.08982931949227 3.974986000084262, -71.16075185143896 3.610813788020388, -71.25785727658177 3.112197953150904 M-71.25785727658177 3.112197953150904 C-71.31333602708864 2.6819157197381056, -71.3688147775955 2.251633486325307, -71.41770520250937 1.872449005199809 M-71.25785727658177 3.112197953150904 C-71.32151194278835 2.6185049320883076, -71.38516660899494 2.124811911025711, -71.41770520250937 1.872449005199809 M-71.41770520250937 1.872449005199809 C-71.43772579477641 1.5606121203093795, -71.45774638704346 1.2487752354189499, -71.49779371591342 0.6250057626472781 M-71.41770520250937 1.872449005199809 C-71.44197997566776 1.4943498190135638, -71.46625474882616 1.1162506328273187, -71.49779371591342 0.6250057626472781 M-71.49779371591342 0.6250057626472781 C-71.49779371591342 0.282436910023843, -71.49779371591342 -0.06013194259959209, -71.49779371591342 -0.6250057626472687 M-71.49779371591342 0.6250057626472781 C-71.49779371591342 0.2087646739110487, -71.49779371591342 -0.20747641482518075, -71.49779371591342 -0.6250057626472687 M-71.49779371591342 -0.6250057626472687 C-71.47117524616492 -1.0396099150222275, -71.44455677641642 -1.4542140673971864, -71.41770520250937 -1.8724490051997822 M-71.49779371591342 -0.6250057626472687 C-71.47756565509891 -0.9400741376298762, -71.45733759428443 -1.2551425126124838, -71.41770520250937 -1.8724490051997822 M-71.41770520250937 -1.8724490051997822 C-71.37255396294492 -2.2226331031409163, -71.32740272338047 -2.5728172010820503, -71.25785727658177 -3.112197953150895 M-71.41770520250937 -1.8724490051997822 C-71.36974765532405 -2.244398270880228, -71.32179010813874 -2.6163475365606734, -71.25785727658177 -3.112197953150895 M-71.25785727658177 -3.112197953150895 C-71.1850351982943 -3.4861239342053763, -71.11221312000683 -3.8600499152598573, -71.01890678754556 -4.339158212148126 M-71.25785727658177 -3.112197953150895 C-71.18398127695423 -3.49153559754027, -71.1101052773267 -3.8708732419296448, -71.01890678754556 -4.339158212148126 M-71.01890678754556 -4.339158212148126 C-70.94710070438818 -4.612985928180532, -70.8752946212308 -4.886813644212937, -70.70183563421489 -5.548287939305123 M-71.01890678754556 -4.339158212148126 C-70.92001681787382 -4.716268525690479, -70.82112684820206 -5.093378839232833, -70.70183563421489 -5.548287939305123 M-70.70183563421489 -5.548287939305123 C-70.61937123990567 -5.796657556047552, -70.53690684559645 -6.045027172789981, -70.30794672997033 -6.734618561215485 M-70.70183563421489 -5.548287939305123 C-70.54519985282293 -6.020049956335088, -70.38856407143098 -6.491811973365053, -70.30794672997033 -6.734618561215485 M-70.30794672997033 -6.734618561215485 C-70.16636353826462 -7.084331782053379, -70.02478034655891 -7.434045002891274, -69.83885864880834 -7.893275190886676 M-70.30794672997033 -6.734618561215485 C-70.20498279373983 -6.988941474377091, -70.10201885750934 -7.243264387538696, -69.83885864880834 -7.893275190886676 M-69.83885864880834 -7.893275190886676 C-69.65286399663165 -8.279497065779596, -69.46686934445498 -8.665718940672514, -69.2964989742735 -9.019496659696282 M-69.83885864880834 -7.893275190886676 C-69.69377809782557 -8.194538059228897, -69.5486975468428 -8.49580092757112, -69.2964989742735 -9.019496659696282 M-69.2964989742735 -9.019496659696282 C-69.05594617725214 -9.446622509419763, -68.81539338023079 -9.873748359143244, -68.68309637860425 -10.108655082055243 M-69.2964989742735 -9.019496659696282 C-69.07734984400844 -9.408618131737677, -68.85820071374339 -9.797739603779071, -68.68309637860425 -10.108655082055243 M-68.68309637860425 -10.108655082055243 C-68.54542477304469 -10.320155638197114, -68.40775316748511 -10.531656194338986, -68.00117146464063 -11.156274872382308 M-68.68309637860425 -10.108655082055243 C-68.42422726636674 -10.50634755454185, -68.16535815412924 -10.904040027028458, -68.00117146464063 -11.156274872382308 M-68.00117146464063 -11.156274872382308 C-67.79989832920015 -11.425962537512703, -67.59862519375967 -11.6956502026431, -67.25352640812659 -12.158051136245302 M-68.00117146464063 -11.156274872382308 C-67.70456771703563 -11.553696873015744, -67.40796396943061 -11.951118873649177, -67.25352640812659 -12.158051136245302 M-67.25352640812659 -12.158051136245302 C-67.05272062429854 -12.393929036102504, -66.85191484047051 -12.629806935959705, -66.44323344296866 -13.10986736009567 M-67.25352640812659 -12.158051136245302 C-66.99871833655413 -12.45736319610432, -66.74391026498168 -12.756675255963339, -66.44323344296866 -13.10986736009567 M-66.44323344296866 -13.10986736009567 C-66.12521238121445 -13.438250216371634, -65.80719131946024 -13.766633072647597, -65.57362223676799 -14.007812326905677 M-66.44323344296866 -13.10986736009567 C-66.20430257553932 -13.356583097305505, -65.96537170810997 -13.603298834515341, -65.57362223676799 -14.007812326905677 M-65.57362223676799 -14.007812326905677 C-65.35183230249336 -14.209236076973799, -65.13004236821875 -14.41065982704192, -64.6482662085019 -14.848196188198107 M-65.57362223676799 -14.007812326905677 C-65.31816860634517 -14.239808555123004, -65.06271497592235 -14.47180478334033, -64.6482662085019 -14.848196188198107 M-64.6482662085019 -14.848196188198107 C-64.37125892798895 -15.069102122933863, -64.094251647476 -15.29000805766962, -63.67096784457872 -15.627565626425149 M-64.6482662085019 -14.848196188198107 C-64.29287280428763 -15.13161297064332, -63.93747940007334 -15.41502975308853, -63.67096784457872 -15.627565626425149 M-63.67096784457872 -15.627565626425149 C-63.344086696249995 -15.855583765042422, -63.01720554792127 -16.083601903659694, -62.645743073605715 -16.342718045390885 M-63.67096784457872 -15.627565626425149 C-63.388138775239305 -15.824854941723242, -63.1053097058999 -16.022144257021335, -62.645743073605715 -16.342718045390885 M-62.645743073605715 -16.342718045390885 C-62.30038782856457 -16.55207442446752, -61.955032583523426 -16.761430803544158, -61.57680476407679 -16.99071473040609 M-62.645743073605715 -16.342718045390885 C-62.302009088553234 -16.55109160713481, -61.95827510350075 -16.759465168878737, -61.57680476407679 -16.99071473040609 M-61.57680476407679 -16.99071473040609 C-61.28200313321904 -17.14451255239512, -60.987201502361295 -17.29831037438415, -60.46854541279239 -17.56889292409717 M-61.57680476407679 -16.99071473040609 C-61.317537577882085 -17.12597425537531, -61.05827039168738 -17.26123378034453, -60.46854541279239 -17.56889292409717 M-60.46854541279239 -17.56889292409717 C-60.20202289640945 -17.686874535990352, -59.93550038002652 -17.804856147883534, -59.325519095147804 -18.07487676824742 M-60.46854541279239 -17.56889292409717 C-60.155052110561655 -17.707667109546314, -59.84155880833092 -17.846441294995458, -59.325519095147804 -18.07487676824742 M-59.325519095147804 -18.07487676824742 C-59.000243972151836 -18.194581020320214, -58.67496884915586 -18.314285272393008, -58.15242275146062 -18.506587066708033 M-59.325519095147804 -18.07487676824742 C-59.000359809567534 -18.194538391080446, -58.67520052398726 -18.314200013913474, -58.15242275146062 -18.506587066708033 M-58.15242275146062 -18.506587066708033 C-57.72563026582486 -18.633256836165252, -57.29883778018911 -18.75992660562247, -56.95407688623541 -18.862249829261067 M-58.15242275146062 -18.506587066708033 C-57.72067055728387 -18.63472885162618, -57.288918363107115 -18.762870636544324, -56.95407688623541 -18.862249829261067 M-56.95407688623541 -18.862249829261067 C-56.53107740262298 -18.95879670106601, -56.10807791901055 -19.05534357287095, -55.735405759676766 -19.140403561325773 M-56.95407688623541 -18.862249829261067 C-56.597873305666006 -18.94355097208044, -56.24166972509661 -19.02485211489981, -55.735405759676766 -19.140403561325773 M-55.735405759676766 -19.140403561325773 C-55.4325152924207 -19.189372543121078, -55.12962482516464 -19.238341524916382, -54.50141715284788 -19.3399052695533 M-55.735405759676766 -19.140403561325773 C-55.34706568993641 -19.203187372179176, -54.95872562019605 -19.265971183032576, -54.50141715284788 -19.3399052695533 M-54.50141715284788 -19.3399052695533 C-54.04896613088251 -19.383552675490332, -53.59651510891715 -19.427200081427365, -53.2571817896239 -19.45993515863156 M-54.50141715284788 -19.3399052695533 C-54.02557839414414 -19.385808862325614, -53.5497396354404 -19.43171245509793, -53.2571817896239 -19.45993515863156 M-53.2571817896239 -19.45993515863156 C-52.805064299072086 -19.474433686560246, -52.35294680852027 -19.488932214488933, -52.00781250000001 -19.5 M-53.2571817896239 -19.45993515863156 C-52.88688134517408 -19.471809973138974, -52.51658090072427 -19.48368478764639, -52.00781250000001 -19.5 M-52.00781250000001 -19.5 C-52.00781250000001 -19.5, -52.0078125 -19.5, -52.0078125 -19.5 M-52.00781250000001 -19.5 C-52.00781250000001 -19.5, -52.00781250000001 -19.5, -52.0078125 -19.5\" stroke=\"#24315E\" stroke-width=\"1.3\" fill=\"none\" stroke-dasharray=\"0 0\" style=\"fill:#00A1E0 !important;stroke:#24315E !important\"></path></g><g class=\"label\" style=\"\" transform=\"translate(-59.1328125, -12)\"><rect></rect><foreignObject width=\"118.265625\" 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>Custom Selector</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-flowchart-pms-1\" data-look=\"classic\" transform=\"translate(201.6875, 148)\"><rect class=\"basic label-container\" style=\"fill:#8282FC !important;stroke:#24315E !important\" x=\"-122.046875\" y=\"-27\" width=\"244.09375\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-92.046875, -12)\"><rect></rect><foreignObject width=\"184.09375\" 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>Payment Method Selector</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-flowchart-payform-2\" data-look=\"classic\" transform=\"translate(201.6875, 292.5)\"><g class=\"basic label-container outer-path\"><path d=\"M-57.3359375 -19.5 C-30.73555290780599 -19.5, -4.135168315611978 -19.5, 57.3359375 -19.5 C57.3359375 -19.5, 57.3359375 -19.5, 57.3359375 -19.5 C57.72659149787452 -19.48747248665004, 58.11724549574904 -19.474944973300087, 58.5853067896239 -19.45993515863156 C58.995029687883445 -19.42040968340034, 59.404752586143 -19.380884208169117, 59.829542152847864 -19.3399052695533 C60.24017070896794 -19.27351802907182, 60.650799265088004 -19.20713078859034, 61.06353075967676 -19.140403561325776 C61.52714659908297 -19.034586271357398, 61.99076243848918 -18.928768981389016, 62.28220188623539 -18.862249829261074 C62.55899277969292 -18.78009974498793, 62.83578367315045 -18.69794966071478, 63.480547751460605 -18.50658706670804 C63.89688189531182 -18.353372253220154, 64.31321603916304 -18.20015743973227, 64.6536440951478 -18.074876768247425 C64.90105646968227 -17.965354649268342, 65.14846884421674 -17.85583253028926, 65.79667041279238 -17.568892924097174 C66.20325904556098 -17.356775894814245, 66.60984767832959 -17.144658865531312, 66.90492976407678 -16.990714730406097 C67.17420899477949 -16.827476078293707, 67.4434882254822 -16.664237426181312, 67.9738680736057 -16.342718045390892 C68.3228464876439 -16.099285810789908, 68.67182490168209 -15.855853576188926, 68.99909284457871 -15.627565626425154 C69.28209050285012 -15.401882524837662, 69.56508816112154 -15.176199423250171, 69.97639120850187 -14.848196188198123 C70.19334230254611 -14.651166944798529, 70.41029339659038 -14.454137701398936, 70.90174723676799 -14.007812326905688 C71.1065311224046 -13.796356151916195, 71.3113150080412 -13.584899976926701, 71.77135844296865 -13.10986736009568 C71.9993867034586 -12.842012390148597, 72.22741496394855 -12.574157420201512, 72.58165140812658 -12.158051136245305 C72.85441749929312 -11.79256942358424, 73.12718359045967 -11.427087710923175, 73.32929646464063 -11.156274872382312 C73.50057426985231 -10.89314616904664, 73.67185207506398 -10.630017465710967, 74.01122137860425 -10.108655082055241 C74.20616070271181 -9.76252057235518, 74.40110002681939 -9.41638606265512, 74.6246239742735 -9.019496659696287 C74.74294552090633 -8.773799436437692, 74.86126706753916 -8.528102213179098, 75.16698364880834 -7.893275190886684 C75.30659407604178 -7.548434736436118, 75.44620450327521 -7.203594281985551, 75.63607172997033 -6.734618561215508 C75.72258307119435 -6.47406018515913, 75.80909441241836 -6.213501809102753, 76.02996063421489 -5.548287939305138 C76.12795539080538 -5.1745914612294275, 76.22595014739586 -4.800894983153717, 76.34703178754556 -4.339158212148133 C76.41944941644408 -3.9673089932255152, 76.4918670453426 -3.5954597743028978, 76.58598227658177 -3.1121979531509023 C76.64458471685627 -2.657688998742642, 76.70318715713077 -2.203180044334382, 76.74583020250937 -1.872449005199798 C76.7698980704249 -1.4975725351819882, 76.79396593834045 -1.1226960651641784, 76.82591871591342 -0.6250057626472757 C76.82591871591342 -0.21532029329001584, 76.82591871591342 0.19436517606724402, 76.82591871591342 0.625005762647271 C76.80007878773198 1.0274835016878558, 76.77423885955054 1.4299612407284408, 76.74583020250937 1.8724490051997846 C76.70489085707202 2.18996648402369, 76.66395151163466 2.507483962847595, 76.58598227658177 3.1121979531508885 C76.53195904105559 3.389595849762991, 76.4779358055294 3.6669937463750935, 76.34703178754556 4.339158212148129 C76.26395709829376 4.65595800706331, 76.18088240904197 4.972757801978491, 76.02996063421489 5.548287939305125 C75.89657922854586 5.950011481739234, 75.76319782287683 6.351735024173342, 75.63607172997033 6.734618561215495 C75.50362336468008 7.061768584197342, 75.37117499938984 7.388918607179189, 75.16698364880834 7.893275190886679 C74.98921283936208 8.26242008038782, 74.81144202991582 8.63156496988896, 74.6246239742735 9.019496659696284 C74.41537260633872 9.391043652463159, 74.20612123840392 9.762590645230034, 74.01122137860425 10.108655082055236 C73.7400346167479 10.525270772108447, 73.46884785489155 10.941886462161658, 73.32929646464065 11.156274872382301 C73.13026524373868 11.422958576273716, 72.93123402283669 11.689642280165131, 72.58165140812659 12.158051136245302 C72.27669008498931 12.516276059193217, 71.97172876185203 12.87450098214113, 71.77135844296866 13.10986736009567 C71.47436180941045 13.416540768121607, 71.17736517585226 13.723214176147543, 70.90174723676799 14.007812326905684 C70.53705099878285 14.339019800910107, 70.1723547607977 14.670227274914529, 69.9763912085019 14.848196188198111 C69.74432563351836 15.033262308723174, 69.51226005853482 15.218328429248237, 68.99909284457871 15.627565626425152 C68.67196454866375 15.855756164499738, 68.34483625274879 16.083946702574323, 67.9738680736057 16.34271804539089 C67.59508040191996 16.572341357970224, 67.21629273023423 16.80196467054956, 66.90492976407678 16.990714730406093 C66.58580824265975 17.157200223722263, 66.26668672124273 17.323685717038437, 65.79667041279238 17.56889292409717 C65.44685522058725 17.723745732787393, 65.09704002838214 17.878598541477615, 64.6536440951478 18.07487676824742 C64.31173679902994 18.200701813775193, 63.969829502912084 18.326526859302962, 63.48054775146062 18.506587066708033 C63.046291428080934 18.63547206402917, 62.61203510470124 18.764357061350307, 62.28220188623541 18.86224982926107 C62.02929405170273 18.9199743921153, 61.77638621717005 18.977698954969526, 61.063530759676766 19.140403561325773 C60.61357484138827 19.213148944734396, 60.16361892309978 19.285894328143016, 59.82954215284788 19.3399052695533 C59.58047432499756 19.363932543358132, 59.33140649714725 19.38795981716296, 58.5853067896239 19.45993515863156 C58.08582110307065 19.47595269240941, 57.5863354165174 19.491970226187266, 57.33593750000001 19.5 C57.33593750000001 19.5, 57.33593750000001 19.5, 57.3359375 19.5 C27.186466615211543 19.5, -2.9630042695769134 19.5, -57.33593749999999 19.5 C-57.738867462340075 19.487078820363347, -58.14179742468016 19.474157640726695, -58.58530678962389 19.45993515863156 C-58.87907069922778 19.43159610757486, -59.172834608831664 19.403257056518168, -59.82954215284787 19.3399052695533 C-60.08074777168965 19.29929229322763, -60.33195339053143 19.258679316901958, -61.06353075967676 19.140403561325773 C-61.38658674579212 19.066668140632267, -61.709642731907486 18.99293271993876, -62.282201886235384 18.862249829261074 C-62.5239827127454 18.790490549086357, -62.765763539255424 18.718731268911643, -63.48054775146059 18.506587066708043 C-63.86041350188125 18.36679295911274, -64.2402792523019 18.226998851517436, -64.6536440951478 18.074876768247425 C-64.99121396695962 17.925444599650792, -65.32878383877144 17.77601243105416, -65.79667041279238 17.568892924097174 C-66.09945305783222 17.41093141212143, -66.40223570287208 17.252969900145683, -66.90492976407678 16.990714730406097 C-67.20201738298063 16.810618469945947, -67.49910500188447 16.630522209485793, -67.97386807360569 16.3427180453909 C-68.23890047243526 16.157842917035023, -68.50393287126484 15.972967788679144, -68.99909284457871 15.627565626425156 C-69.35498210008495 15.343753415769754, -69.7108713555912 15.059941205114352, -69.97639120850187 14.848196188198125 C-70.3379047094088 14.519879191797532, -70.69941821031573 14.191562195396939, -70.90174723676797 14.007812326905697 C-71.22739663006213 13.671552592017065, -71.55304602335629 13.335292857128433, -71.77135844296865 13.109867360095677 C-71.96799921033269 12.878881925573241, -72.16463997769672 12.647896491050803, -72.58165140812658 12.158051136245307 C-72.7388721264738 11.947389696762132, -72.89609284482101 11.736728257278957, -73.32929646464063 11.156274872382316 C-73.59632745650808 10.746043561012568, -73.86335844837551 10.335812249642819, -74.01122137860425 10.108655082055249 C-74.19729690985443 9.778259134129838, -74.38337244110461 9.447863186204428, -74.6246239742735 9.019496659696289 C-74.73374967180433 8.792894813857638, -74.84287536933516 8.566292968018988, -75.16698364880834 7.893275190886686 C-75.31646813001896 7.5240456322106235, -75.46595261122958 7.154816073534562, -75.63607172997033 6.73461856121551 C-75.7541335267369 6.379035239947407, -75.87219532350346 6.023451918679304, -76.02996063421489 5.5482879393051325 C-76.14197049137734 5.121145808565545, -76.25398034853978 4.694003677825956, -76.34703178754556 4.339158212148136 C-76.43846453004039 3.8696704037541183, -76.52989727253524 3.400182595360101, -76.58598227658177 3.112197953150904 C-76.64696940481181 2.6391938298694377, -76.70795653304184 2.1661897065879714, -76.74583020250937 1.872449005199809 C-76.77056034266764 1.487257110424911, -76.7952904828259 1.102065215650013, -76.82591871591342 0.6250057626472781 C-76.82591871591342 0.3283083729426156, -76.82591871591342 0.03161098323795308, -76.82591871591342 -0.6250057626472687 C-76.8020053581279 -0.9974756126716946, -76.77809200034238 -1.3699454626961205, -76.74583020250937 -1.8724490051997822 C-76.70584369851267 -2.182576433969859, -76.66585719451597 -2.492703862739935, -76.58598227658177 -3.112197953150895 C-76.5345129528146 -3.3764820526499575, -76.4830436290474 -3.6407661521490198, -76.34703178754556 -4.339158212148126 C-76.22988770512886 -4.785879368969507, -76.11274362271214 -5.232600525790889, -76.02996063421489 -5.548287939305123 C-75.8880352845962 -5.9757444796230255, -75.7461099349775 -6.403201019940929, -75.63607172997033 -6.734618561215485 C-75.48408917355924 -7.110018413933684, -75.33210661714817 -7.485418266651882, -75.16698364880834 -7.893275190886676 C-74.99578197940141 -8.248779120539075, -74.82458030999447 -8.604283050191475, -74.6246239742735 -9.019496659696282 C-74.38777780220408 -9.440041021481104, -74.15093163013468 -9.860585383265926, -74.01122137860425 -10.108655082055243 C-73.84060035599728 -10.370774790939263, -73.6699793333903 -10.632894499823285, -73.32929646464063 -11.156274872382308 C-73.03563380693826 -11.549756080485015, -72.74197114923588 -11.94323728858772, -72.58165140812659 -12.158051136245302 C-72.35487709442013 -12.424433148948903, -72.12810278071368 -12.690815161652504, -71.77135844296866 -13.10986736009567 C-71.43727371215805 -13.454837273524134, -71.10318898134743 -13.7998071869526, -70.90174723676799 -14.007812326905677 C-70.6883580605636 -14.20160673076629, -70.47496888435921 -14.395401134626901, -69.9763912085019 -14.848196188198107 C-69.59265247275623 -15.154217618238649, -69.20891373701056 -15.46023904827919, -68.99909284457871 -15.627565626425149 C-68.75027148147066 -15.80113263802612, -68.50145011836261 -15.974699649627093, -67.97386807360571 -16.342718045390885 C-67.5855418288656 -16.57812369701066, -67.19721558412549 -16.813529348630432, -66.90492976407678 -16.99071473040609 C-66.48543436978144 -17.209565208910348, -66.0659389754861 -17.428415687414606, -65.7966704127924 -17.56889292409717 C-65.50208140380155 -17.69929873970495, -65.20749239481071 -17.82970455531273, -64.65364409514781 -18.07487676824742 C-64.29439107084973 -18.20708520208767, -63.935138046551636 -18.339293635927916, -63.48054775146062 -18.506587066708033 C-63.186826635738456 -18.593761952080772, -62.89310552001629 -18.680936837453512, -62.28220188623541 -18.862249829261067 C-61.89381196838013 -18.950897293530463, -61.50542205052484 -19.03954475779986, -61.063530759676766 -19.140403561325773 C-60.692846477543334 -19.200332921361564, -60.322162195409895 -19.260262281397356, -59.82954215284788 -19.3399052695533 C-59.516701389646656 -19.370084641733257, -59.203860626445426 -19.400264013913215, -58.5853067896239 -19.45993515863156 C-58.321474038713234 -19.468395761433968, -58.05764128780257 -19.476856364236376, -57.33593750000001 -19.5 C-57.33593750000001 -19.5, -57.3359375 -19.5, -57.3359375 -19.5\" stroke=\"none\" stroke-width=\"0\" fill=\"#00A1E0\" style=\"fill:#00A1E0 !important;stroke:#24315E !important\"></path><path d=\"M-57.3359375 -19.5 C-21.631997286290975 -19.5, 14.07194292741805 -19.5, 57.3359375 -19.5 M-57.3359375 -19.5 C-11.475090451363663 -19.5, 34.385756597272675 -19.5, 57.3359375 -19.5 M57.3359375 -19.5 C57.3359375 -19.5, 57.3359375 -19.5, 57.3359375 -19.5 M57.3359375 -19.5 C57.3359375 -19.5, 57.3359375 -19.5, 57.3359375 -19.5 M57.3359375 -19.5 C57.795707413344594 -19.485256073766887, 58.25547732668919 -19.47051214753377, 58.5853067896239 -19.45993515863156 M57.3359375 -19.5 C57.796013168001615 -19.48524626881015, 58.25608883600324 -19.470492537620302, 58.5853067896239 -19.45993515863156 M58.5853067896239 -19.45993515863156 C58.96617280993061 -19.423193471710977, 59.347038830237324 -19.386451784790392, 59.829542152847864 -19.3399052695533 M58.5853067896239 -19.45993515863156 C59.04012050386402 -19.416059826612333, 59.494934218104135 -19.37218449459311, 59.829542152847864 -19.3399052695533 M59.829542152847864 -19.3399052695533 C60.169389784404885 -19.284961340040905, 60.5092374159619 -19.230017410528514, 61.06353075967676 -19.140403561325776 M59.829542152847864 -19.3399052695533 C60.12847361881784 -19.291576348383416, 60.42740508478782 -19.243247427213532, 61.06353075967676 -19.140403561325776 M61.06353075967676 -19.140403561325776 C61.36713914659071 -19.071106928242546, 61.67074753350467 -19.001810295159316, 62.28220188623539 -18.862249829261074 M61.06353075967676 -19.140403561325776 C61.45926557278879 -19.05007967264395, 61.855000385900816 -18.959755783962123, 62.28220188623539 -18.862249829261074 M62.28220188623539 -18.862249829261074 C62.67578361276619 -18.745436838779376, 63.069365339296986 -18.628623848297675, 63.480547751460605 -18.50658706670804 M62.28220188623539 -18.862249829261074 C62.566579764392614 -18.777847967753953, 62.85095764254984 -18.693446106246835, 63.480547751460605 -18.50658706670804 M63.480547751460605 -18.50658706670804 C63.799183886463325 -18.389326023586896, 64.11782002146604 -18.272064980465753, 64.6536440951478 -18.074876768247425 M63.480547751460605 -18.50658706670804 C63.85610959697813 -18.368376835901948, 64.23167144249565 -18.230166605095853, 64.6536440951478 -18.074876768247425 M64.6536440951478 -18.074876768247425 C65.04578201896757 -17.901288941730623, 65.43791994278733 -17.727701115213826, 65.79667041279238 -17.568892924097174 M64.6536440951478 -18.074876768247425 C65.01377962173557 -17.91545545366785, 65.37391514832332 -17.756034139088275, 65.79667041279238 -17.568892924097174 M65.79667041279238 -17.568892924097174 C66.15225044519693 -17.383387048951604, 66.50783047760147 -17.197881173806035, 66.90492976407678 -16.990714730406097 M65.79667041279238 -17.568892924097174 C66.0480923590205 -17.437726255793407, 66.29951430524862 -17.306559587489637, 66.90492976407678 -16.990714730406097 M66.90492976407678 -16.990714730406097 C67.30889451561772 -16.74582892406159, 67.71285926715866 -16.500943117717085, 67.9738680736057 -16.342718045390892 M66.90492976407678 -16.990714730406097 C67.30663396733753 -16.7471992817135, 67.7083381705983 -16.5036838330209, 67.9738680736057 -16.342718045390892 M67.9738680736057 -16.342718045390892 C68.21360330642108 -16.175489124949852, 68.45333853923646 -16.00826020450881, 68.99909284457871 -15.627565626425154 M67.9738680736057 -16.342718045390892 C68.22407759454205 -16.16818271498129, 68.47428711547839 -15.99364738457168, 68.99909284457871 -15.627565626425154 M68.99909284457871 -15.627565626425154 C69.38858254210528 -15.316957957403856, 69.77807223963185 -15.006350288382558, 69.97639120850187 -14.848196188198123 M68.99909284457871 -15.627565626425154 C69.38067684112868 -15.323262543553158, 69.76226083767865 -15.018959460681161, 69.97639120850187 -14.848196188198123 M69.97639120850187 -14.848196188198123 C70.19364270649118 -14.650894125883879, 70.41089420448048 -14.453592063569635, 70.90174723676799 -14.007812326905688 M69.97639120850187 -14.848196188198123 C70.17826868613041 -14.664856404401247, 70.38014616375894 -14.48151662060437, 70.90174723676799 -14.007812326905688 M70.90174723676799 -14.007812326905688 C71.14013809010957 -13.761654198577444, 71.37852894345116 -13.515496070249199, 71.77135844296865 -13.10986736009568 M70.90174723676799 -14.007812326905688 C71.11366703959513 -13.788987731547278, 71.32558684242227 -13.570163136188869, 71.77135844296865 -13.10986736009568 M71.77135844296865 -13.10986736009568 C72.06299802160348 -12.767290916269072, 72.3546376002383 -12.424714472442465, 72.58165140812658 -12.158051136245305 M71.77135844296865 -13.10986736009568 C72.079174407944 -12.748289212411052, 72.38699037291933 -12.386711064726423, 72.58165140812658 -12.158051136245305 M72.58165140812658 -12.158051136245305 C72.86516408474168 -11.778169978117255, 73.14867676135678 -11.398288819989206, 73.32929646464063 -11.156274872382312 M72.58165140812658 -12.158051136245305 C72.78171847395213 -11.889979494523718, 72.98178553977768 -11.621907852802131, 73.32929646464063 -11.156274872382312 M73.32929646464063 -11.156274872382312 C73.52186545298724 -10.860437194268181, 73.71443444133386 -10.564599516154049, 74.01122137860425 -10.108655082055241 M73.32929646464063 -11.156274872382312 C73.48511819386775 -10.916890852296454, 73.64093992309486 -10.677506832210595, 74.01122137860425 -10.108655082055241 M74.01122137860425 -10.108655082055241 C74.23490811376081 -9.711476633046678, 74.45859484891736 -9.314298184038115, 74.6246239742735 -9.019496659696287 M74.01122137860425 -10.108655082055241 C74.1685695642185 -9.8292674452656, 74.32591774983275 -9.549879808475959, 74.6246239742735 -9.019496659696287 M74.6246239742735 -9.019496659696287 C74.83595846366879 -8.580656070633285, 75.04729295306407 -8.141815481570285, 75.16698364880834 -7.893275190886684 M74.6246239742735 -9.019496659696287 C74.75633495179528 -8.745995996708853, 74.88804592931706 -8.472495333721419, 75.16698364880834 -7.893275190886684 M75.16698364880834 -7.893275190886684 C75.26118738922649 -7.660590130748448, 75.35539112964463 -7.427905070610212, 75.63607172997033 -6.734618561215508 M75.16698364880834 -7.893275190886684 C75.2898073120039 -7.589898368159661, 75.41263097519946 -7.286521545432637, 75.63607172997033 -6.734618561215508 M75.63607172997033 -6.734618561215508 C75.73006707258779 -6.45151956537576, 75.82406241520525 -6.168420569536012, 76.02996063421489 -5.548287939305138 M75.63607172997033 -6.734618561215508 C75.7300884286473 -6.451455244327129, 75.82410512732429 -6.168291927438751, 76.02996063421489 -5.548287939305138 M76.02996063421489 -5.548287939305138 C76.14350158804702 -5.1153070733825565, 76.25704254187914 -4.682326207459974, 76.34703178754556 -4.339158212148133 M76.02996063421489 -5.548287939305138 C76.10202081243415 -5.273491248676285, 76.17408099065341 -4.998694558047433, 76.34703178754556 -4.339158212148133 M76.34703178754556 -4.339158212148133 C76.400540458991 -4.064402493337513, 76.45404913043645 -3.789646774526893, 76.58598227658177 -3.1121979531509023 M76.34703178754556 -4.339158212148133 C76.39929162592713 -4.070814987179483, 76.45155146430872 -3.8024717622108346, 76.58598227658177 -3.1121979531509023 M76.58598227658177 -3.1121979531509023 C76.61979725030925 -2.849935694442423, 76.65361222403673 -2.5876734357339437, 76.74583020250937 -1.872449005199798 M76.58598227658177 -3.1121979531509023 C76.64675868906127 -2.640828099620052, 76.70753510154077 -2.169458246089202, 76.74583020250937 -1.872449005199798 M76.74583020250937 -1.872449005199798 C76.7640008096207 -1.5894271323906963, 76.78217141673204 -1.3064052595815945, 76.82591871591342 -0.6250057626472757 M76.74583020250937 -1.872449005199798 C76.77050965912159 -1.4880465475657334, 76.79518911573379 -1.1036440899316686, 76.82591871591342 -0.6250057626472757 M76.82591871591342 -0.6250057626472757 C76.82591871591342 -0.31322571522727644, 76.82591871591342 -0.0014456678072771734, 76.82591871591342 0.625005762647271 M76.82591871591342 -0.6250057626472757 C76.82591871591342 -0.2758631880957415, 76.82591871591342 0.07327938645579268, 76.82591871591342 0.625005762647271 M76.82591871591342 0.625005762647271 C76.80856084356725 0.8953686354612497, 76.79120297122108 1.1657315082752282, 76.74583020250937 1.8724490051997846 M76.82591871591342 0.625005762647271 C76.79924310513533 1.040499932681481, 76.77256749435723 1.455994102715691, 76.74583020250937 1.8724490051997846 M76.74583020250937 1.8724490051997846 C76.68570184205852 2.3387926951687583, 76.62557348160767 2.8051363851377316, 76.58598227658177 3.1121979531508885 M76.74583020250937 1.8724490051997846 C76.7120067536388 2.134776995444418, 76.67818330476824 2.3971049856890514, 76.58598227658177 3.1121979531508885 M76.58598227658177 3.1121979531508885 C76.49705745818129 3.5688081013703647, 76.4081326397808 4.025418249589841, 76.34703178754556 4.339158212148129 M76.58598227658177 3.1121979531508885 C76.49792542235379 3.564351288788841, 76.40986856812582 4.016504624426793, 76.34703178754556 4.339158212148129 M76.34703178754556 4.339158212148129 C76.2709128750655 4.629432615579951, 76.19479396258544 4.919707019011774, 76.02996063421489 5.548287939305125 M76.34703178754556 4.339158212148129 C76.27959151457588 4.596337201780716, 76.21215124160621 4.853516191413303, 76.02996063421489 5.548287939305125 M76.02996063421489 5.548287939305125 C75.94743878637182 5.796830596937545, 75.86491693852874 6.045373254569964, 75.63607172997033 6.734618561215495 M76.02996063421489 5.548287939305125 C75.95099690016544 5.786114125099614, 75.87203316611598 6.023940310894102, 75.63607172997033 6.734618561215495 M75.63607172997033 6.734618561215495 C75.46789609623168 7.150015628004636, 75.29972046249303 7.5654126947937765, 75.16698364880834 7.893275190886679 M75.63607172997033 6.734618561215495 C75.46988058713863 7.145113897096956, 75.30368944430693 7.5556092329784175, 75.16698364880834 7.893275190886679 M75.16698364880834 7.893275190886679 C75.0207282065856 8.196977746027354, 74.87447276436286 8.50068030116803, 74.6246239742735 9.019496659696284 M75.16698364880834 7.893275190886679 C74.97473274523055 8.292488305676331, 74.78248184165275 8.691701420465982, 74.6246239742735 9.019496659696284 M74.6246239742735 9.019496659696284 C74.40635849845526 9.407049113787622, 74.18809302263703 9.79460156787896, 74.01122137860425 10.108655082055236 M74.6246239742735 9.019496659696284 C74.43276900292364 9.360154588750449, 74.24091403157378 9.700812517804614, 74.01122137860425 10.108655082055236 M74.01122137860425 10.108655082055236 C73.80086143134402 10.43182445060208, 73.59050148408379 10.754993819148925, 73.32929646464065 11.156274872382301 M74.01122137860425 10.108655082055236 C73.86735810179181 10.329667707938055, 73.72349482497937 10.550680333820875, 73.32929646464065 11.156274872382301 M73.32929646464065 11.156274872382301 C73.0706673350145 11.502814344482909, 72.81203820538838 11.849353816583518, 72.58165140812659 12.158051136245302 M73.32929646464065 11.156274872382301 C73.17594529059758 11.361751475020663, 73.0225941165545 11.567228077659026, 72.58165140812659 12.158051136245302 M72.58165140812659 12.158051136245302 C72.2680071988766 12.526475471291423, 71.95436298962662 12.894899806337545, 71.77135844296866 13.10986736009567 M72.58165140812659 12.158051136245302 C72.36140004062824 12.416770925166707, 72.14114867312989 12.675490714088115, 71.77135844296866 13.10986736009567 M71.77135844296866 13.10986736009567 C71.58823935272122 13.298952855133061, 71.40512026247379 13.488038350170452, 70.90174723676799 14.007812326905684 M71.77135844296866 13.10986736009567 C71.49336005852973 13.396923516120701, 71.2153616740908 13.68397967214573, 70.90174723676799 14.007812326905684 M70.90174723676799 14.007812326905684 C70.61099603235488 14.27186487789836, 70.32024482794178 14.535917428891034, 69.9763912085019 14.848196188198111 M70.90174723676799 14.007812326905684 C70.57884226751673 14.301066076382371, 70.25593729826547 14.594319825859058, 69.9763912085019 14.848196188198111 M69.9763912085019 14.848196188198111 C69.66314015275198 15.098005569197985, 69.34988909700206 15.34781495019786, 68.99909284457871 15.627565626425152 M69.9763912085019 14.848196188198111 C69.75357323798652 15.02588759024891, 69.53075526747114 15.20357899229971, 68.99909284457871 15.627565626425152 M68.99909284457871 15.627565626425152 C68.65094958149574 15.87041529587288, 68.30280631841275 16.113264965320607, 67.9738680736057 16.34271804539089 M68.99909284457871 15.627565626425152 C68.73935776424398 15.808745574716253, 68.47962268390924 15.989925523007352, 67.9738680736057 16.34271804539089 M67.9738680736057 16.34271804539089 C67.58460055350136 16.578694303668, 67.19533303339703 16.814670561945118, 66.90492976407678 16.990714730406093 M67.9738680736057 16.34271804539089 C67.72309585101625 16.49473764042577, 67.4723236284268 16.646757235460655, 66.90492976407678 16.990714730406093 M66.90492976407678 16.990714730406093 C66.64453679564413 17.126561575247752, 66.38414382721147 17.262408420089415, 65.79667041279238 17.56889292409717 M66.90492976407678 16.990714730406093 C66.47708921936827 17.21391886853558, 66.04924867465974 17.437123006665068, 65.79667041279238 17.56889292409717 M65.79667041279238 17.56889292409717 C65.52109809025666 17.69088061672123, 65.24552576772093 17.81286830934529, 64.6536440951478 18.07487676824742 M65.79667041279238 17.56889292409717 C65.49229252999041 17.703631983764513, 65.18791464718845 17.838371043431852, 64.6536440951478 18.07487676824742 M64.6536440951478 18.07487676824742 C64.2448571716744 18.22531413487053, 63.836070248201 18.37575150149364, 63.48054775146062 18.506587066708033 M64.6536440951478 18.07487676824742 C64.41514008427843 18.162648448954254, 64.17663607340907 18.25042012966109, 63.48054775146062 18.506587066708033 M63.48054775146062 18.506587066708033 C63.18970947699896 18.592906339926998, 62.8988712025373 18.679225613145963, 62.28220188623541 18.86224982926107 M63.48054775146062 18.506587066708033 C63.1041680124878 18.618294597577602, 62.72778827351497 18.730002128447172, 62.28220188623541 18.86224982926107 M62.28220188623541 18.86224982926107 C61.98619823327617 18.929810731444665, 61.69019458031692 18.99737163362826, 61.063530759676766 19.140403561325773 M62.28220188623541 18.86224982926107 C61.98620154872121 18.92980997471597, 61.69020121120701 18.997370120170867, 61.063530759676766 19.140403561325773 M61.063530759676766 19.140403561325773 C60.71119522982224 19.19736643738981, 60.3588596999677 19.254329313453848, 59.82954215284788 19.3399052695533 M61.063530759676766 19.140403561325773 C60.79134868239936 19.184407848776452, 60.519166605121946 19.228412136227128, 59.82954215284788 19.3399052695533 M59.82954215284788 19.3399052695533 C59.43576467518918 19.37789250923633, 59.04198719753049 19.41587974891936, 58.5853067896239 19.45993515863156 M59.82954215284788 19.3399052695533 C59.529394139066916 19.368860187461948, 59.22924612528596 19.397815105370597, 58.5853067896239 19.45993515863156 M58.5853067896239 19.45993515863156 C58.26477672028498 19.470213934081325, 57.94424665094605 19.480492709531095, 57.33593750000001 19.5 M58.5853067896239 19.45993515863156 C58.258669667764714 19.470409775368996, 57.932032545905535 19.48088439210643, 57.33593750000001 19.5 M57.33593750000001 19.5 C57.33593750000001 19.5, 57.3359375 19.5, 57.3359375 19.5 M57.33593750000001 19.5 C57.33593750000001 19.5, 57.3359375 19.5, 57.3359375 19.5 M57.3359375 19.5 C19.033918072723317 19.5, -19.268101354553366 19.5, -57.33593749999999 19.5 M57.3359375 19.5 C20.83376524481084 19.5, -15.668407010378317 19.5, -57.33593749999999 19.5 M-57.33593749999999 19.5 C-57.596833040129894 19.491633587830396, -57.85772858025979 19.483267175660792, -58.58530678962389 19.45993515863156 M-57.33593749999999 19.5 C-57.832185139015465 19.484086304104206, -58.32843277803093 19.468172608208413, -58.58530678962389 19.45993515863156 M-58.58530678962389 19.45993515863156 C-58.922571647395785 19.42739962342264, -59.25983650516767 19.394864088213723, -59.82954215284787 19.3399052695533 M-58.58530678962389 19.45993515863156 C-58.99955660445764 19.41997297720284, -59.41380641929138 19.380010795774123, -59.82954215284787 19.3399052695533 M-59.82954215284787 19.3399052695533 C-60.149161490913315 19.288231693659863, -60.46878082897875 19.236558117766428, -61.06353075967676 19.140403561325773 M-59.82954215284787 19.3399052695533 C-60.213305195383235 19.277861436963025, -60.5970682379186 19.21581760437275, -61.06353075967676 19.140403561325773 M-61.06353075967676 19.140403561325773 C-61.489061619255125 19.04327891947538, -61.914592478833484 18.946154277624988, -62.282201886235384 18.862249829261074 M-61.06353075967676 19.140403561325773 C-61.361115861665155 19.072481703721195, -61.65870096365356 19.004559846116614, -62.282201886235384 18.862249829261074 M-62.282201886235384 18.862249829261074 C-62.62508376054849 18.760484288788632, -62.9679656348616 18.658718748316186, -63.48054775146059 18.506587066708043 M-62.282201886235384 18.862249829261074 C-62.6175962673822 18.76270653745773, -62.95299064852902 18.663163245654392, -63.48054775146059 18.506587066708043 M-63.48054775146059 18.506587066708043 C-63.80705373483628 18.386429846637565, -64.13355971821197 18.266272626567087, -64.6536440951478 18.074876768247425 M-63.48054775146059 18.506587066708043 C-63.795104489643464 18.390827279326135, -64.10966122782634 18.275067491944224, -64.6536440951478 18.074876768247425 M-64.6536440951478 18.074876768247425 C-64.93026031288875 17.952426974182064, -65.20687653062969 17.829977180116703, -65.79667041279238 17.568892924097174 M-64.6536440951478 18.074876768247425 C-64.93289708725234 17.95125975238843, -65.21215007935689 17.827642736529434, -65.79667041279238 17.568892924097174 M-65.79667041279238 17.568892924097174 C-66.13640648827301 17.391652831130273, -66.47614256375364 17.21441273816337, -66.90492976407678 16.990714730406097 M-65.79667041279238 17.568892924097174 C-66.23717090268799 17.339084100672665, -66.6776713925836 17.109275277248155, -66.90492976407678 16.990714730406097 M-66.90492976407678 16.990714730406097 C-67.22804269688103 16.7948417717178, -67.55115562968528 16.5989688130295, -67.97386807360569 16.3427180453909 M-66.90492976407678 16.990714730406097 C-67.18127133781866 16.823194844440433, -67.45761291156052 16.655674958474766, -67.97386807360569 16.3427180453909 M-67.97386807360569 16.3427180453909 C-68.2106189413816 16.177570888810305, -68.44736980915752 16.012423732229713, -68.99909284457871 15.627565626425156 M-67.97386807360569 16.3427180453909 C-68.30320005974305 16.112990308413387, -68.6325320458804 15.883262571435873, -68.99909284457871 15.627565626425156 M-68.99909284457871 15.627565626425156 C-69.38975707760491 15.31602129659861, -69.7804213106311 15.004476966772064, -69.97639120850187 14.848196188198125 M-68.99909284457871 15.627565626425156 C-69.27051485779191 15.411113793730738, -69.54193687100512 15.194661961036319, -69.97639120850187 14.848196188198125 M-69.97639120850187 14.848196188198125 C-70.21918497266833 14.627697315553121, -70.4619787368348 14.407198442908117, -70.90174723676797 14.007812326905697 M-69.97639120850187 14.848196188198125 C-70.29725948922287 14.5567921053568, -70.61812776994387 14.265388022515477, -70.90174723676797 14.007812326905697 M-70.90174723676797 14.007812326905697 C-71.20593995698425 13.693708368595589, -71.51013267720055 13.37960441028548, -71.77135844296865 13.109867360095677 M-70.90174723676797 14.007812326905697 C-71.19517327566791 13.704825851015688, -71.48859931456785 13.401839375125679, -71.77135844296865 13.109867360095677 M-71.77135844296865 13.109867360095677 C-72.03280044732793 12.802762705303794, -72.2942424516872 12.495658050511912, -72.58165140812658 12.158051136245307 M-71.77135844296865 13.109867360095677 C-72.04207353856046 12.791870004688217, -72.31278863415227 12.473872649280757, -72.58165140812658 12.158051136245307 M-72.58165140812658 12.158051136245307 C-72.87789205420552 11.76111565857758, -73.17413270028446 11.364180180909853, -73.32929646464063 11.156274872382316 M-72.58165140812658 12.158051136245307 C-72.76908421936054 11.906908244672177, -72.9565170305945 11.65576535309905, -73.32929646464063 11.156274872382316 M-73.32929646464063 11.156274872382316 C-73.49547024526368 10.900987321437295, -73.66164402588672 10.645699770492275, -74.01122137860425 10.108655082055249 M-73.32929646464063 11.156274872382316 C-73.56688001816248 10.791282734055791, -73.80446357168431 10.426290595729268, -74.01122137860425 10.108655082055249 M-74.01122137860425 10.108655082055249 C-74.18972682110771 9.791700593254227, -74.36823226361119 9.474746104453207, -74.6246239742735 9.019496659696289 M-74.01122137860425 10.108655082055249 C-74.23463989497023 9.71195288266946, -74.4580584113362 9.31525068328367, -74.6246239742735 9.019496659696289 M-74.6246239742735 9.019496659696289 C-74.8157331200771 8.622654429354462, -75.00684226588069 8.225812199012635, -75.16698364880834 7.893275190886686 M-74.6246239742735 9.019496659696289 C-74.76559122484461 8.726775147669416, -74.90655847541571 8.434053635642544, -75.16698364880834 7.893275190886686 M-75.16698364880834 7.893275190886686 C-75.27026530748289 7.638167497145525, -75.37354696615743 7.383059803404365, -75.63607172997033 6.73461856121551 M-75.16698364880834 7.893275190886686 C-75.32943583032157 7.492015161749729, -75.49188801183482 7.090755132612772, -75.63607172997033 6.73461856121551 M-75.63607172997033 6.73461856121551 C-75.75700060723366 6.370400050298366, -75.877929484497 6.006181539381222, -76.02996063421489 5.5482879393051325 M-75.63607172997033 6.73461856121551 C-75.73405229632742 6.439516706431173, -75.83203286268451 6.144414851646836, -76.02996063421489 5.5482879393051325 M-76.02996063421489 5.5482879393051325 C-76.13682188601396 5.14077967223578, -76.24368313781302 4.733271405166428, -76.34703178754556 4.339158212148136 M-76.02996063421489 5.5482879393051325 C-76.14288907922398 5.117642834987815, -76.25581752423307 4.686997730670496, -76.34703178754556 4.339158212148136 M-76.34703178754556 4.339158212148136 C-76.44051722082517 3.85913027041065, -76.53400265410478 3.379102328673164, -76.58598227658177 3.112197953150904 M-76.34703178754556 4.339158212148136 C-76.41358707353145 3.9974108850752668, -76.48014235951734 3.6556635580023977, -76.58598227658177 3.112197953150904 M-76.58598227658177 3.112197953150904 C-76.64344384443308 2.6665373799661887, -76.70090541228438 2.2208768067814737, -76.74583020250937 1.872449005199809 M-76.58598227658177 3.112197953150904 C-76.64896001515754 2.6237550491183925, -76.71193775373331 2.135312145085881, -76.74583020250937 1.872449005199809 M-76.74583020250937 1.872449005199809 C-76.77294336262524 1.4501396510462239, -76.8000565227411 1.0278302968926387, -76.82591871591342 0.6250057626472781 M-76.74583020250937 1.872449005199809 C-76.7648525661879 1.5761603363311507, -76.78387492986643 1.2798716674624924, -76.82591871591342 0.6250057626472781 M-76.82591871591342 0.6250057626472781 C-76.82591871591342 0.34720805014079575, -76.82591871591342 0.06941033763431337, -76.82591871591342 -0.6250057626472687 M-76.82591871591342 0.6250057626472781 C-76.82591871591342 0.22571684834343486, -76.82591871591342 -0.17357206596040842, -76.82591871591342 -0.6250057626472687 M-76.82591871591342 -0.6250057626472687 C-76.80477586405222 -0.9543227465882789, -76.78363301219102 -1.283639730529289, -76.74583020250937 -1.8724490051997822 M-76.82591871591342 -0.6250057626472687 C-76.80664768881282 -0.9251675650321601, -76.78737666171223 -1.2253293674170516, -76.74583020250937 -1.8724490051997822 M-76.74583020250937 -1.8724490051997822 C-76.70365530249144 -2.1995492013628035, -76.66148040247352 -2.526649397525825, -76.58598227658177 -3.112197953150895 M-76.74583020250937 -1.8724490051997822 C-76.70722930390534 -2.1718299521630113, -76.6686284053013 -2.4712108991262403, -76.58598227658177 -3.112197953150895 M-76.58598227658177 -3.112197953150895 C-76.53582807147883 -3.369729196259482, -76.4856738663759 -3.6272604393680687, -76.34703178754556 -4.339158212148126 M-76.58598227658177 -3.112197953150895 C-76.49962151338735 -3.555642219800477, -76.41326075019293 -3.9990864864500595, -76.34703178754556 -4.339158212148126 M-76.34703178754556 -4.339158212148126 C-76.25631134210603 -4.685114589098824, -76.1655908966665 -5.031070966049524, -76.02996063421489 -5.548287939305123 M-76.34703178754556 -4.339158212148126 C-76.27217105192028 -4.62463464193535, -76.19731031629502 -4.910111071722574, -76.02996063421489 -5.548287939305123 M-76.02996063421489 -5.548287939305123 C-75.92837895469448 -5.854235773177878, -75.82679727517409 -6.160183607050634, -75.63607172997033 -6.734618561215485 M-76.02996063421489 -5.548287939305123 C-75.9339509578544 -5.837453787438321, -75.83794128149394 -6.12661963557152, -75.63607172997033 -6.734618561215485 M-75.63607172997033 -6.734618561215485 C-75.48351036150446 -7.111448090899589, -75.33094899303859 -7.488277620583694, -75.16698364880834 -7.893275190886676 M-75.63607172997033 -6.734618561215485 C-75.46609630233499 -7.154461153726117, -75.29612087469964 -7.574303746236748, -75.16698364880834 -7.893275190886676 M-75.16698364880834 -7.893275190886676 C-75.05824252584554 -8.119078459406245, -74.94950140288273 -8.344881727925813, -74.6246239742735 -9.019496659696282 M-75.16698364880834 -7.893275190886676 C-74.99289350849632 -8.254777092176873, -74.81880336818429 -8.61627899346707, -74.6246239742735 -9.019496659696282 M-74.6246239742735 -9.019496659696282 C-74.47363069163987 -9.287600522740142, -74.32263740900622 -9.555704385784, -74.01122137860425 -10.108655082055243 M-74.6246239742735 -9.019496659696282 C-74.47802873703537 -9.279791347790026, -74.33143349979724 -9.540086035883768, -74.01122137860425 -10.108655082055243 M-74.01122137860425 -10.108655082055243 C-73.74285965922435 -10.520930748234505, -73.47449793984444 -10.93320641441377, -73.32929646464063 -11.156274872382308 M-74.01122137860425 -10.108655082055243 C-73.78006194114575 -10.463778052991769, -73.54890250368726 -10.818901023928294, -73.32929646464063 -11.156274872382308 M-73.32929646464063 -11.156274872382308 C-73.1089523421092 -11.451515922811915, -72.88860821957778 -11.746756973241519, -72.58165140812659 -12.158051136245302 M-73.32929646464063 -11.156274872382308 C-73.05291284870042 -11.526603738676814, -72.7765292327602 -11.89693260497132, -72.58165140812659 -12.158051136245302 M-72.58165140812659 -12.158051136245302 C-72.31742470600746 -12.468426855479711, -72.05319800388831 -12.77880257471412, -71.77135844296866 -13.10986736009567 M-72.58165140812659 -12.158051136245302 C-72.40055593160662 -12.370776187590184, -72.21946045508666 -12.583501238935069, -71.77135844296866 -13.10986736009567 M-71.77135844296866 -13.10986736009567 C-71.55117101536032 -13.337228956825282, -71.33098358775199 -13.564590553554893, -70.90174723676799 -14.007812326905677 M-71.77135844296866 -13.10986736009567 C-71.58238671689921 -13.304996182129626, -71.39341499082975 -13.500125004163582, -70.90174723676799 -14.007812326905677 M-70.90174723676799 -14.007812326905677 C-70.58605032743097 -14.29451990708306, -70.27035341809396 -14.581227487260444, -69.9763912085019 -14.848196188198107 M-70.90174723676799 -14.007812326905677 C-70.55594257153379 -14.321862974381315, -70.2101379062996 -14.635913621856952, -69.9763912085019 -14.848196188198107 M-69.9763912085019 -14.848196188198107 C-69.69335515035371 -15.07390991266546, -69.41031909220551 -15.299623637132813, -68.99909284457871 -15.627565626425149 M-69.9763912085019 -14.848196188198107 C-69.70801194942113 -15.062221505442986, -69.43963269034037 -15.276246822687867, -68.99909284457871 -15.627565626425149 M-68.99909284457871 -15.627565626425149 C-68.75510751033586 -15.797759233638075, -68.51112217609301 -15.967952840851002, -67.97386807360571 -16.342718045390885 M-68.99909284457871 -15.627565626425149 C-68.77552645147722 -15.78351586421958, -68.55196005837571 -15.939466102014011, -67.97386807360571 -16.342718045390885 M-67.97386807360571 -16.342718045390885 C-67.74003711587194 -16.484467746112326, -67.50620615813818 -16.62621744683377, -66.90492976407678 -16.99071473040609 M-67.97386807360571 -16.342718045390885 C-67.6984739116851 -16.509663604742897, -67.42307974976447 -16.676609164094913, -66.90492976407678 -16.99071473040609 M-66.90492976407678 -16.99071473040609 C-66.66878235563028 -17.113912682132995, -66.4326349471838 -17.237110633859896, -65.7966704127924 -17.56889292409717 M-66.90492976407678 -16.99071473040609 C-66.64406565104642 -17.1268073710826, -66.38320153801604 -17.262900011759108, -65.7966704127924 -17.56889292409717 M-65.7966704127924 -17.56889292409717 C-65.50270380513113 -17.699023221099225, -65.20873719746987 -17.829153518101275, -64.65364409514781 -18.07487676824742 M-65.7966704127924 -17.56889292409717 C-65.4480773680916 -17.723204724340942, -65.09948432339081 -17.877516524584717, -64.65364409514781 -18.07487676824742 M-64.65364409514781 -18.07487676824742 C-64.33370786101922 -18.192616259864874, -64.01377162689062 -18.310355751482323, -63.48054775146062 -18.506587066708033 M-64.65364409514781 -18.07487676824742 C-64.33493703367638 -18.192163912964688, -64.01622997220495 -18.309451057681954, -63.48054775146062 -18.506587066708033 M-63.48054775146062 -18.506587066708033 C-63.106927600179525 -18.617475566436067, -62.73330744889843 -18.7283640661641, -62.28220188623541 -18.862249829261067 M-63.48054775146062 -18.506587066708033 C-63.18500827135144 -18.594301633086047, -62.88946879124227 -18.682016199464062, -62.28220188623541 -18.862249829261067 M-62.28220188623541 -18.862249829261067 C-61.897584453998995 -18.950036248305725, -61.51296702176257 -19.037822667350387, -61.063530759676766 -19.140403561325773 M-62.28220188623541 -18.862249829261067 C-62.00091216177756 -18.926452373281574, -61.719622437319714 -18.990654917302084, -61.063530759676766 -19.140403561325773 M-61.063530759676766 -19.140403561325773 C-60.81318481902978 -19.180877551547812, -60.56283887838279 -19.221351541769852, -59.82954215284788 -19.3399052695533 M-61.063530759676766 -19.140403561325773 C-60.75369015534908 -19.1904961873837, -60.44384955102139 -19.24058881344163, -59.82954215284788 -19.3399052695533 M-59.82954215284788 -19.3399052695533 C-59.404965807239776 -19.380863638986348, -58.980389461631674 -19.4218220084194, -58.5853067896239 -19.45993515863156 M-59.82954215284788 -19.3399052695533 C-59.54804724807714 -19.367060744469377, -59.26655234330641 -19.394216219385456, -58.5853067896239 -19.45993515863156 M-58.5853067896239 -19.45993515863156 C-58.33088310497333 -19.468094030992642, -58.07645942032276 -19.47625290335373, -57.33593750000001 -19.5 M-58.5853067896239 -19.45993515863156 C-58.14815332014679 -19.47395381953008, -57.71099985066969 -19.487972480428603, -57.33593750000001 -19.5 M-57.33593750000001 -19.5 C-57.33593750000001 -19.5, -57.3359375 -19.5, -57.3359375 -19.5 M-57.33593750000001 -19.5 C-57.33593750000001 -19.5, -57.3359375 -19.5, -57.3359375 -19.5\" stroke=\"#24315E\" stroke-width=\"1.3\" fill=\"none\" stroke-dasharray=\"0 0\" style=\"fill:#00A1E0 !important;stroke:#24315E !important\"></path></g><g class=\"label\" style=\"\" transform=\"translate(-64.4609375, -12)\"><rect></rect><foreignObject width=\"128.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>Custom Pay Form</p></span></div></foreignObject></g></g><g class=\"node default\" id=\"diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-flowchart-pb-3\" data-look=\"classic\" transform=\"translate(201.6875, 461)\"><rect class=\"basic label-container\" style=\"fill:#8282FC !important;stroke:#24315E !important\" x=\"-69.140625\" y=\"-27\" width=\"138.28125\" height=\"54\"></rect><g class=\"label\" style=\"\" transform=\"translate(-39.140625, -12)\"><rect></rect><foreignObject width=\"78.28125\" 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>Pay Button</p></span></div></foreignObject></g></g></g></g></g><defs><filter id=\"diagram-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-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-dd0f98f195c59b8127c3a60b8fd6a23b96df97f26c73fe3883dd6583d86faa1b-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 TB\n    paySelect([\"Custom Selector\"])\n    pms[\"Payment Method Selector\"]\n    payform([\"Custom Pay Form\"])\n    pb[\"Pay Button\"]\n\n  %% ================= Edges =================\n  paySelect -->|\"Config file\"| pms\n  pms -->|\"PaymentMethod<br/>block\"| payform\n  payform -->|\"PaymentIntent<br/>(incl. PaymentMethod block)\"| pb\n  pb -->|\"RedirectURL<br/>+ PaymentIntent Id\"| payform\n\n  %% ================= Styling =================\n  style payform fill:#00A1E0, stroke:#24315E\n  style paySelect fill:#00A1E0, stroke:#24315E\n  style pms fill:#8282FC, stroke:#24315E\n  style pb fill:#8282FC, stroke:#24315E\n"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Your payment method selection configuration dynamically builds the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PaymentMethod"]}," block of a payment intent request. If you use a custom LWC for your pay-action that may be used with payment selection step, remember that the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PaymentMethod"]}," block must be passed in the payment intent to the Pay Button component."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"error-handling","__idx":6},"children":["Error handling"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["If a managed FinDock component encounters an error, the event is broadcast to the following Salesforce event-handling channels:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Lightning Web Component dispatch events",{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]}," ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://developer.salesforce.com/docs/platform/lwc/guide/events-create-dispatch.html"},"children":["Dispatch events"]}," are best suited for advanced custom LWC development."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Lighting Message Service",{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]}," ","This ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://developer.salesforce.com/docs/platform/lwc/guide/use-message-channel.html"},"children":["org-wide event channel"]}," that can be used with custom font-end Salesforce development."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Flow Attribute Change Event"," ","This channel is a ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://developer.salesforce.com/docs/platform/lwc/guide/use-best-practices-reactivity.html"},"children":["good approach for reactive Screen Flows"]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Payment errors generate a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PAYMENT_ERROR"]}," message with the following content."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Message body"]}]},{"$$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":"Field"},"children":["Field"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"Meaning"},"children":["Meaning"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["statusCode"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["HTTP status of the PaymentIntent call. ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["200"]}," on success, ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["422"]}," when the request was well-formed but rejected (e.g. invalid data), other ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["4xx"]},"/",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["5xx"]}," on failure."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["errorCode"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["FinDock error code, e.g. ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["202"]}," (invalid IBAN). Used to route the error to a specific payment-method input. Null when the failure has no code."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["errorMessage"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Raw provider message (technical, locale-dependent). Prefer ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["errorLabel"]}," for what you show the payer."]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["errorLabel"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Payer-facing summary message, categorized server-side from the code (recoverable bank-detail issue, configuration problem, invalid data, or generic)."]}]}]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["See the full ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Error and response codes"]}," list in the ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/api/payment-api-v2/section/error-and-response-codes"},"children":["Payment API reference"]},"."]}]},"headings":[{"value":"Pro-code payment experiences","id":"pro-code-payment-experiences","depth":1},{"value":"Quick start with FinDock Labs","id":"quick-start-with-findock-labs","depth":2},{"value":"Using Pay Button in LWC","id":"using-pay-button-in-lwc","depth":2},{"value":"Using Payment Method Selector in LWC","id":"using-payment-method-selector-in-lwc","depth":2},{"value":"Building configuration files","id":"building-configuration-files","depth":3},{"value":"Handling the Payment Method block","id":"handling-the-payment-method-block","depth":3},{"value":"Error handling","id":"error-handling","depth":2}],"frontmatter":{"seo":{"title":"Pro-code payment experiences","description":"FinDock's managed components for Payment Experiences can embedded in custom Lighting Web Components (LWCs) for custom pro-code solutions with maximum control over the user experience.","keywords":"payment experiences, lightning web component, lwc"}},"lastModified":"2026-09-20T13:07:07.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/docs/payments/pro-code-payment-experiences","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}